Create a slideshopro component and give instance name “slideshoComInsta”; _global.myxml=”dynamic.xml”; slideshoComInsta.xmlFilePath = _global.myxml;
Category Archives: Flash
Flash Text with Links
asfunction Usage asfunction:function,”parameter” Parameters function An identifier for a function. parameter A string that is passed to the function named in the function parameter. Returns Nothing.
ZigoEngine – Fuse Kit on complete call function
this.my_movie.alphaTo(100, .5, ‘easeOutCubic’, .5, “playMovie”) function playMovie():Void{ gotoAndPlay(2) } pop_prod.tween(“_x”,194, 0.8, “easeOutCirc”, 0); pop_prod.alphaTo(0,0.8,”easeOutCirc”,1, { startscope:this, startfunc:”closenik()”, scope:this, func:”closenik()” } );
CrossDomain Flash
Your crossdomain file must be in: https//another_server:4443/crossdomain.xml and must have: <?xml version=”1.0″?> <cross-domain-policy> <allow-access-from domain=”baddy” /> </cross-domain-policy> I have a flash swf in one http server : http://server1/…… And I want to use LoadVars.sendAndLoad to one script in one https server: https://server2/script.php I have created a cross domain file accesible in: https://server2/crossdomain.xml with the following: …
Introduction to Functions
At first glance, functions can be mind-boggling. At the same time, however, they are extremely useful. They help programmers around the world to make their code simpler, faster, and more readable and understandable. That is why it’s important for you to come to grips with the multitude of abilities that functions give you. With that …