"LIST||SEARCHFILES;folder.jpg"
or in flash
fscommand("LIST")
fscommand("SEARCHFILES;folder.jpg")
also not sure but maybe "ONSCREENCHANGE"
If i enter this in my audio_browser skin and press the button it works...
B,305,0,90,60,"SEARCHFILES;folder.jpg"
What I want is NOT to have to press a button but have the command autorun each time the skin file loads...
I tried just entering...
"SEARCHFILES;folder.jpg"
but this doesn't do anything...
Skin gurus, please enlighten me....
"LIST||SEARCHFILES;folder.jpg"
or in flash
fscommand("LIST")
fscommand("SEARCHFILES;folder.jpg")
also not sure but maybe "ONSCREENCHANGE"
Yep, could use the
"ONSCREENCHANGE","LIST||SEARCHFILES;folder.jpg",xx .skin (skinfile name on then end)
will only run after that screen is loaded, everytime.
RideRunner...The #1 FE, PERIOD.
Current Project: DFXVoice [Beta Released]
Next in line: RRMedia v2.0
DFX 5.1.1 Skin
Appstore Link
My RideRunner Plugins
RRMedia
RRExtended
DFXVoice
OK, got this to work by putting it in exectbl.ini..
"ONSCREENCHANGE","SEARCHFILES;folder.jpg",covers.s kin
Now I'm having another issue...The larger picture is I want to import a list of folder.jpg paths into flash. I've got it somewhat working using CUSTOMDL.
Originally I issued the searchfiles command from flash ,like this...
fscommand("SEARCHFILES;folder.jpg");
//fscommand("WAITEXEC");
fscommand("GETDL","");
This gets me what I want into flash....but I'm having a timing issue though, flash continues executing commands while the search is going on, as you can see I tried the "WAITEXEC" command, but that hangs the screen skin.
Thats why I was hoping to run the search in RR, do a WAIT;5 then load the swf.
The 5 second delay doesn't happen, the swf loads up right away...is this broken?
I know the search is working and CUSTOMDL does get the populated with the paths...I have a button in my swf that also issues fscommand("GETDL","").
On another note , why is GETDL needed? all my other lables auto update.
Thx for any help or suggestions..
You can create a check loop in flash with a variable that RR sets to acheive what you are looking for
change RR's command to
fscommand("SEARCHFILES;folder.jpg");
//fscommand("WAITEXEC");
fscommand("GETDL","");
fscommand("SETFLASHVAR;COMMANDCOMPLETE;TRUE")
then check for _root.COMMANDCOMPLETE. If true then perform your flash stuff... then set _root.COMMANDCOMPLETE to false.
NOVA, MD, DC Monthly Meets Here
Ride Runner and Centrafuse 3 plugin creator
mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
Find my plugins on the MP3Car App Store!
Follow Me on Twitter or Facebook
Live mp3Car Facebook Chat
Thx Sonic, will give this a shot and report back....
Bookmarks