Security error: securitySandboxError with Flash
You have a flash uploader and you get this error:
security error: securitySandboxError
This means that the flash is not trusted by the domain and you …
Read Article →31 articles about actionscript development, tools, and best practices
You have a flash uploader and you get this error:
security error: securitySandboxError
This means that the flash is not trusted by the domain and you …
Read Article →You have a string and you want to capitalize the first character but have the rest of the word in lowercase.
DO THIS!
myStringVar = …
Read Article →
If you want to position the flash top/left and not have it scale when you resize it’s bounding box window, you can set the following code. …
Read Article →After creating a onRelease handler in Actionscript 2 as follows:
myMovieClip.onRelease = function() { doWhatever(); }
..you then want to remove the …
Read Article →Anyone up for an online Flash IDE?
Take a look at this:
http://antimatter15.com/ajaxanimator/build/
Nice work!
Read Article →The problem:
While working on a Papervision3D Flash Project I had a problem where a back button that sits above the 3d canvas and acts as a main …!-->!-->
I often have issues where ‘dumb browsers’ cache my published swf files and when they dynamically populate they don’t always update.
This …
Read Article →I personally really like this way of clearing an array’s elements:
Declare your array to use:
var myArray:Array=new Array();
Add elements:
for …
Read Article →
Ever needed to change the font size of a standard flash combobox component?
You will need to give it an instance name e.g. “myCombobox” …
Read Article →So you have now placed a swf file into your html page and you want to be able to see through it.
Lucky for you, this is a very easy thing to do!
The …
Read Article →Error: “1046: Type was not found or was not a compile-time constant: InteractiveScene3DEvent.”
I got this this morning when I opened up a …
Read Article →Ever wondered how to get variables from an html page to a flash element?
Well, it’s quite easy using the following actionscript 2 example:
I use …
Read Article →