doing some flash skinning i found a little issue, not sure if is a bug or is me not using the command correctly, heres whats happening.
i need to poll a variable data, using this.
Code:
Label Polling from Flash: fscommand("GETLABEL","<LABEL CODE>");
You may receive empty labels if they don't exist or are not used by RR at the current time.
You may also poll RR VARIABLES using the syntax: fscommand("GETLABEL","=$MYVAR$")
so if i ask for a label i.e.
Code:
fscommand("GETLABEL", "Time")
i get _root.TIME this works perfectly
BUT if i ask for a variable like this
Code:
fscommand("GETLABEL", "=$RRDroid_PATH$")
_root.RRDROID_PATH is not created, i tried _root.$RRDROID_PATH$ nothing as well. so im asking for any help or guide on how to achieve what im after. thanks in advance.
as of now, im using upon loading the screen,
Code:
SetFlashVar;RRDroid_PATH;$RRDroid_PATH$
NOTE: i tried with known variables like "RRPATH" and "SKINPATH" just to make sure my custom var isnt the issue, and is the same.
Bookmarks