Take a look at this site. The site is built in Actionscript and needs to be converted to jQuery/Javascript can this be done?
http://www.nonsek.com/machine.php
Let know your opinions
Take a look at this site. The site is built in Actionscript and needs to be converted to jQuery/Javascript can this be done?
http://www.nonsek.com/machine.php
Let know your opinions
The big animations will be slow on most browsers. IE9 is doing very good since they implemented GPU rendering for that purpose. Browsers that are based on WebKit will take big animations badly, at least for now.
It is totally fine to replace actionscript with javascript on little animations, but on big ones like yours I don't think it will be a good idea. There is a reason why pretty sites with huge amount of animation are made with actionscript instead of javascript.
Nope. (unless you count rewriting the whole thing as conversion)
One way to do such thing (Actionscript to Javascript conversion) could be to use Haxe. You could use an Actionscript to Haxe converter (there are many), and then target JS from Haxe.
The conversion process would still require supervision and manual labor, it would just help you get started. Then you would have to modify that code so that it's suitable to target the JS platform.
That would be a lazy way, that in my opinion could end up giving you more work. Also, it would require that you to learn Haxe in some depth (which is a Good thing, but requires some time which would be a nuance if you are in a tight schedule )
But still, I think the arguments presented by Qmal and TheDarkIn1978 are valid ones that you should consider.