Flash isn't a scripting language (to my knowledge).
Also, you must be talking about C# for Visual Studios...again, C and C++ are NOT scripting languages.
So, I would say (and I'm not familiar with any of these really because I HATE scripting languages so I avoid them like the plague):
Python, C#, Perl, Ruby, javascript, MATLAB...and like the other guy said, the list goes on and on (there are 100s of languages out there).
Edit:
Like I said, I'm not familiar with it. For some reason I thought C# was a scripting language, but it's strongly typed, so I stand corrected...it appears to not be a scripting language. Most scripting languages (all that I know of, but I'm sure there are exceptions) are weakly typed and this is actually why I don't like them.
I disagree that scripting languages are faster to code than compiled languages (or strongly typed ones). It's definitely true that they can usually be written with fewer lines of code, but fewer lines of code does not correlate to faster coding (particularly when using an IDE like eclipse). I think scripting languages are generally easier to learn because they usually don't require knowledge of data structures (i.e. associative arrays in Perl and AWK just "work"). Having said that, my experience has been that scripting languages are usually almost impossible to decipher (especially for people that aren't familiar with the language).