-
Whie preloadNetThing, it seems netDone returns 1 as soon as the download process begins. Use getStreamStatus.state to check was it completed !
-
doesn't work with firefox, IE mac, and versions of netscape without LiveConnect.
you must name the .dcr in both the embed and object tags. liveconnect=true must be on if you're targeting netscape that supports it.
alternatives? possibly gotonetpage/geturl
-
isn't there a way to put the local variables in a string instead
-
Obtaining a reference to text only works on #text members. It fails on fields with Object Expected.
-
using "the key" can determine the key related to a keycode only when the key has just been pressed. How do i pick an arbitrary number and determine the key to which it corresponds?
-
You can affect this property as though it were a linear list. So:
sprite(7).scriptInstanceList = []
clears all behaviors attached to a given sprite.
Also: for those using javascript, this syntax works:
sprite(7).scriptInstanceList.add(script("myBehavior"));
It seems to hang if you use the above code to initialize the list, but this worked for me:
sprite(7).scriptInstanceList.deleteOne(script("myBehavior"));
-
windowRef.modal is obsolete and not supported in MX 2004 as mentioned.
Use windowRef.type=#dialog instead
-
I couldn't get this to work with the sytax sample style listed here. I had to use a simple string which was the name of the bitmap member.
Example: sprite(1).member.textureMember = "mybitmap"
-
The return value of importFileInto is a boolean that shows whether the command did work or not.
-
You can get the total number of visual lines in a text member (lines created by word wrap and carriage returns) rather than the lines calculated by carriage returns when you use member().line.count.
Anyways, to calculate the visual lines you can do this:
vLineCount = member("myText").locVToLinePos(member("myText").height)