@# 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 12 13



Comments:

<0> look at line 30
<0> give that a try
<0> so your body mc will refer to its _parent timeline, which should be the 'target_mc'
<0> set var at target_mc, read it from body for value
<0> see if that takes
<1> is there a way to get the 2 last numbers in a integer like with right for a string?
<0> var num = "000123"; var nstr = String(num); var last2 = nstr.substring(nstr.length-2,nstr.length); trace(last2);
<2> I tried the code you put in there on line 30 and it comes back still saying undefined
<1> thanks
<2> SHiZNiT: http://pastebin.sekati.com/?id=PoontersProblem@d08a5-4b4b337c-t
<2> I still can't figure it out
<0> wits my_mcl?
<0> it only appears once yet its used
<0> :/
<0> someone forget tochange a naming scheme?
<0> :/



<0> sounds like a reference to moviecliploader but...
<0> =)
<2> I grabbed this code out of another project so it probably does not have a place here
<0> well
<0> yours is called myLoader
<0> and you're referencing my_mcl
<0> :/
<2> I see that now. Thanks for pointing it out
<0> dumb***
<0> lol - jks :)
<0> <redforemen>dumb***</redforeman>
<0> i guess would be more suiting
<0> ever seen 70's show?
<0> :)
<2> yeah
<0> simple error when mixing things ....
<2> LoL
<0> =)
<2> That didn't make any difference either
<0> heh
<3> k
<4> what is it that sometimes i create a emptyMovieClip (.... {x:0, y:100); will work and if it doesn then i have to add the properties below: mc._x = 0 ; mc._y = 100. why only sometimes does it work?
<5> did you close the object?
<5> i mean ({...})
<4> yah
<4> well i mean when i plug in numbers it works
<5> dunno,sorry
<4> but if i were too {x:antotherMC._width, y:0}
<4> then it does work
<4> is it thinking that the anotherMC is within the emptyMovieClip
<6> Can you change the color of a button with actionscript?
<5> NocensAng,try: var somthink = {x:2,b:3,bah:function() {return heh}}
<5> i mean var somthink = {x:2,b:3,bah:function() {return anotherMC._width}}
<4> ok thanks
<5> i use loadMovie("fileName.swf") to load a movie, i want to conroll it from the stage, (i want to do: tellTarget to the fileName.swf) how this is possible?
<5> Ic3x^, use setRGB if you wanna change color
<5> more information: http://www.developingwebs.net/flash/color.php
<0> but how do you change it back to normal? :(((((
<0> heh
<0> might wanna save original state .... mc.origcolor = mc.colorObj.getTransform(); so you can reapply it after
<0> if needed
<7> Can someone help me with a formmail flash video?
<7> Hey guys how do i set a textfield in flash to a variable in a php page?
<8> textfield.text = asdfasdf;
<8> <param name="FlashVars" value="asdfasdf=hello">
<7> so if i set varFrom in the php i can do textfield.text = varFrom; and it will do it?
<7> oh wait i see what you mean
<7> and just echo that as normal html and it will work?
<9> hi
<9> anybody knows why flash media server 2 writes: Asynchronous I/O operation failed (Failed to attach to completion port) when I try to connect to it ?
<0> cuz it failed to byp*** your strict security standards? :D
<9> I have no strict security standards
<8> welp, my dad says he's kicking me out of the house
<8> hehe
<8> what's better, buying an apartment, or getting a mortgage or something on a condo?
<0> reider ... can you getIOStats() ?
<7> well prometh, the truth of the matter is you don't buy an apartment
<0> or getServerStatus() ?
<7> the bottomline when it comes to livingspace, the longer you live in something you dont own, and cant sell, the longer you're wasting your money
<0> netstream info's reporting anything usefull?



<9> I think I know what the problem is, some of my ports might be blocked by apps so I will try it out on a virtual maschine
<8> DocSaintl: you can buy apartments
<10> prometh: I'll give you lodging in exchange for 18 hours of tedious flash development each day :)
<8> heh
<8> bitch :P
<10> but you'll have to sleep in a closet
<10> its a big closet though!
<7> An appartment that you buy is a condo
<10> prometh: where you looking, TO?
<7> Hey prometh, you think you could help me out a bit more with this form mail stuff?
<11> how easy/hard is it to find a job where all you do is refractor code?
<12> you want to refactor asp+html?
<9> jee that was the prob, now it'S good
<8> memmo: yeah
<13> em
<13> i got this problem between flash and php, im p***ing a var from flash to php and trying to get it back again,
<13> but i think flash will only support p***ing or sending, once, depending
<0> does your page have nocache header info?
<0> or you just hoping ppl dont have cache enabled?
<13> dont know what i need that fore
<0> i'm not sure whats goin down either :D
<13> i need a steam effectively from flash to php and back again
<13> at different points in the flash movie
<13> but the movie can never be refreshed
<13> like
<13> 1 php file, 1 flash movie, need to p*** vars in both direction to each other
<14> hey, how do I make it so I can call a function the first time the user clicks on a button?
<0> lv = new LoadVars(); lv.someValue = "blah"; lv.someOtherValue = "moreblah"; lv.onLoad = function(s) { if(s) { for(var index in this) { trace(index+" = "+this[index]); } else { trace("file not found"); } }; lv.sendAndLoad("filename.ext",lv,"POST"); /// pickup your $_POST vars in php, echo back your data to be loaded back into the lv obj
<0> somevalue and someothervalue will be sent out as post vars
<0> other url formatted vars will come back to lv and be handled by the onLoad method
<0> (s) is a boolean given from script to acknowledge file was found and loaded
<0> call it what you wil
<0> s
<0> or success or thebool ... whatever
<0> doesnt really matter
<0> name it after one of your pets
<0> and dont capitalize post like i did
<0> heh
<0> should always use lowercase :/
<0> lbg for president!
<0> doh
<0> lgb even
<0> sup mang
<13> shiznit, do you know?
<0> no, no clue
<0> sorry
<0> oh wait, i told ya above! :O
<0> omg omg omg
<6> hey guys
<6> I have a loadMovie for a photo I'm loading into a movie clip
<6> and I'd like to add a preloader to it
<6> Can I get bytes loaded on _root.mainPic.loadMovie(myPhoto);
<0> sure
<6> so do I just do it after I call that loadMovie
<6> ?
<6> is it async
<6> or is the script going to wait till it's loaded there
<0> well, you can write your own loader
<0> or you can use moviecliploader cl***
<0> but no
<0> erm ... ignore that last line
<0> lol
<6> so I can call _root.mainPic.getBytesLoaded
<0> you can check it
<0> based on OEF (onenterframe) or an interval you've set
<0> but there's a cl*** specifically to manage loading content to movieclips
<0> which makes it easier for others to work with your loader
<6> ok
<6> lemme see if I can find the cl*** here
<0> but all ya really need is an event to keep checking (an OEF or INTERVAL) bytes total vs bytes total ... and respond accordingly
<0> press F1
<0> change your book to "actionscript v2 language reference"
<0> (the books are on left, selectable by listbox)


Name:

Comments:

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






Return to #flash
or
Go to some related logs:

bill gates got lucky
#networking
difference in vlk msdn
virus transfer emoticon
#beginner
WRT54G linksys dhcp-log
#politics
window installer service cannot
sexy sleazy sound of electronica
#winxp



Home  |  disclaimer  |  contact  |  submit quotes