@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6 7 8 9 10 11



Comments:

<0> k
<1> !find rules
<1> hello, i would like to read out a directory using flash (i do not want to use a server)
<1> does anyone know what would be the best way to do it?
<1> maybe i should have asked in flashhelp >.< sorry for that
<2> Flash alone can't read a dir structure
<1> ok
<1> not with actionscript either (for as far as a i could find)
<1> i thought of calling a dos 'dir > file.txt' command but that would annoy the user since i need to do that very often
<1> plus i dont know if actionscript/flash can read out a textfile
<3> Yep, and flash wouldnt like calling cmd unless it was in a special subdir
<1> oh ouch..
<3> It can read a txt file
<3> !find -c fscommand
<4> fscommand == http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary372.html



<3> look at exec
<1> ok
<3> "The exec command can contain only the characters A-Z, a-z, 0-9, period ()., and underscore (_). The exec command runs in the subdirectory fscommand only. In other words, if you use the fscommand exec command to call an application, the application must reside in a subdirectory named fscommand."
<1> fixes part of the problem at least
<1> brb (contact lenses)
<1> what is you guys/girls opinion of the best solution on this?
<3> Why are you trying to do it, there might be other ways, what are you trying to fuilly achieve?
<1> i want to create my own 'file browser' on the windows dektop
<3> And why are you chosing flash?
<1> i set a html with flash page as desktop background
<3> !google active desktop file browser
<4> http://www.pcworld.com/howto/article/0,aid,39962,00.asp
<1> i cant find a file browser there though
<3> That was just a guess search
<3> I'm sure one has already been made
<1> well even if someone has, it wont be the way i would like it
<3> Although a cool idea I don't think flash would be the best option for it
<1> i used flash cause its graphically light
<1> i could easily program what i want in java/applets but that would really slow down my system
<1> the only thing i cant do really, is list a directory, all the rest i can do in flash
<5> how to change the language of flash 8?
<5> my flash is in german
<0> guess you shouldnt have ordered german version of flash 8 :)
<5> im not im my pc
<5> :P
<5> i just need change the language
<6> If I want a movieclip called "C", that is on the root, to go and stop in a frame between 0 and 3, should i use ---> _root.C.gotoAndStop(random(3)); ?
<7> hi all!! can anyone tell me how can i load variables to a .swf fro a php link like http://www.example.com?swfvariable=variable
<8> anyone around?
<1> i just LOVE those undocumented features ... :|
<9> !help
<9> !find -h
<9> !findkey
<9> !find rules
<10> hi
<10> how i can create a triangle?
<11> edit a rectangule
<10> how i can make a rectangule a symetric triangle?
<12> use lineto
<9> open the grids
<12> find -c lineto
<9> and do it precicley
<13> hey guys
<13> anyone awake?
<13> wtf can't i add two num vars together from a text file"?
<13> http://pastebin.sekati.com/?id=Anonymous@897f5-7d941206-t
<14> hi
<14> _level0.nav2Target.gotoAndPlay(2) im trying to get this to call a movieclip outside of the movieclip its in. i have tryed with _root too. Any suggestions :)?
<14> !find rules
<13> hey merz
<13> whats happenin
<15> work
<13> yea same here
<13> im going crazy trying to add vars from a text file
<13> http://pastebin.sekati.com/?id=Anonymous@897f5-7d941206-t
<15> what's the problem?
<13> this.votes1;
<13> and
<13> this.votes3; are 7 and 3 respectively
<15> wrong wrong wrong
<13> and trace gives me 7 and 3 instead of 10



<13> :(
<15> change "this" to "loadText"
<13> oh ok
<15> and put your load below your onload
<15> the reason for putting load after onload is just incase the load loads faster than your onload gets "declared"
<15> seen that be a problem too much to overlook it
<13> http://pastebin.sekati.com/?id=Anonymous@897f5-7d941206-t
<15> no dude, put it below it
<15> not inside
<13> lol ok
<13> outside the function?
<15> no
<13> oh ok i get it
<13> http://pastebin.sekati.com/?id=Anonymous@897f5-7d941206-t
<13> i still a NaN trace
<13> *get
<15> paste your php below your function
<13> reload
<13> now i dont get a trace result
<15> ...
<14> could i awoid to type the path name to the movie if i just used a framelabel/name? if so how would i call that before the gotoandplay ?
<15> i'm going to stab you
<13> lol
<15> i said paste your php not your load line
<13> please do
<13> the php is fine dude
<13> it spits back the right vars
<15> i don't care if it's "fine" paste it
<15> i want to see what you're doing with it
<13> ok ok
<16> anyone know who my dropdowns dont work if im nloading the movie that contain them from ext preloader swf?
<13> reload
<15> Sp8sMunkE: no
<16> :E
<13> merz, reload again, the entire code is there
<15> do this, all of your variables you're going to "print" put them in a single php variable
<13> so i should do the addition before i load into flash?
<15> then at the end of your file have header('Content-Length: '.strlen($vars)); and echo $vars
<15> i don't think that will exactly fix your problem but it can't hurt
<15> that way your function won't execute the onload until it actually finishes loading
<13> well this is way beyond my problem dude
<15> the thing about php is that it doesn't send a content length header unless you make it do so
<13> i get the vars from php
<13> thats fine
<15> flash needs the content length to know if it has loaded the last bit of info
<13> its just that i cant mathematically add them together
<15> that's fine because i'm not asking you to
<15> i'm asking you to string all your vars into a container
<15> so you'll have something like $vars='&bla=blah&blah=blah&blah=blah';
<13> ok
<15> all that takes is everywhere you're using print you just change it to $vars.=
<13> ok i get that
<13> so then wtf cant i add the vars together
<15> what are you talking about?
<15> you mean in your flash?
<13> var totalVotes:Number = Number(radio1votes) + Number (radio3votes);
<13> yea
<13> thats all i wanna do
<15> forget that for now
<13> hahahah why!
<15> do what i said about the header
<13> thats what i wanna do
<15> we're working toward that
<15> bear with me
<13> ok
<15> i had trouble like this myself until i started doing things the way i just told you
<15> the onload doesn't have a content length header to work with unless you give it one so as soon as it gets the first byte it says "ok it's loaded"
<13> so i put header('Content-Length: '.strlen($vars)); after my break; ?
<15> i'd put it down at the bottom of your php
<15> then below that echo out $vars
<13> http://pastebin.sekati.com/?id=Anonymous@897f5-7d941206-t
<15> ...
<15> you didn't change print to $vars.=


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #flash
or
Go to some related logs:

soderin sights
#gentoo
#stocks
#politics
#linux-noob
#beginner
#unixhelp
zeritex asthma
#gentoo
#politics



Home  |  disclaimer  |  contact  |  submit quotes