I am looking for a good project proposal for my undergraduate thesis subject. Our teacher assigned us two proposals to choose. Language Emulator and Interactive Image Retrieval. Both are found on http://www.1000projects.org. The bad thing here is that I have almost no knowledge in Java. I am confident in developing my project using Actionscript so I have these problems:
1.) A good project proposal using Actionscript (not a game). My teacher want us to develop something that uses algorithm and data manipulation.
2.) If I choose Interactive Image Retrieval ( I cant find a good actionscript-drived example), will it be possible using Actionscript as a tool for development?
Actionscript itself is a fully capable programming language. You can do data manipulation, language emulation and interactive image retrieval with it like you would with any other language.
I personally find actionscript much more rapid than java anyway.
I’m not saying you should choose actionscript but I can guarentee that you can .
EDIT:
Also, since in actionscript functions are first class objects giving it some functional abilities , building a language emulator is actually probably easier than in java since you can pretty much directly translate the language rules into code.
(I’m assuming you mean something that parses a programming language)