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



Comments:

<0> i have a Flash 8
<1> why or why not?
<2> because thats what you asked?
<1> ahh, i use 7
<0> im most convert .fla to .gif in the flash 8
<0> i am bad in english:P
<2> i belive it is still in the publish settings
<0> tnx
<3> !find rules
<3> !learn -m Which are really guidelines: http://tinyurl.com/cy3pm | See also: http://www.slash7.com/pages/vampires
<3> arr
<3> !learn -m rules Which are really guidelines: http://tinyurl.com/cy3pm | See also: http://www.slash7.com/pages/vampires
<3> :?
<3> :/
<3> damn



<4> :o vampires
<5> bunch o lesbians..
<6> my friend wants to create a simple ani. We are both noobs, he moreso than I. The only think I can't help him with is this: He wants a 10 frame ocean animation to simply cycle over and over, while the rest of the ani, maybe 100+ frames. Is there a way to do this without just copy/pasting that 10 fram layer over and over?
<5> yea, put it in a movieclip
<5> a movieclip has its own lifecycle and will loop
<6> cool, we'll look that up, Thanx Mjau^2
<6> or... would you be 0... X-X = 0
<6> we, ty
<5> who gets the funds from yearly domain fees? where does all the money go?
<7> americans ofcourse
<7> not that i have a problem with that :)
<5> 100 million domains x 15$ x 10 years
<5> 1.5 billion dollars
<7> it's less than that
<7> there are alot of resellers
<5> reseller reschmellers
<5> there still a yearly fee
<7> ARIN get 4-5 dollars for each domain
<5> you saying the resellers dont pay anything?
<7> not 15 dollars
<5> ok
<5> curiousity killed the cat
<7> yes it is a lot of money
<7> it's not a private organization
<7> usa goverment is getting the money
<7> and then with that money bombing iraq
<7> :)
<5> and using it on missiles and nuclear weapons!
<5> revolt!
<7> heh
<7> so if you renew your domain you are supporting the war in iraq
<5> and killing innoscent people
<5> and supporting rape
<7> nah
<7> killing tyrants
<5> so for each dollar you put in, you are virtuall raping 1 innoscent virgin
<7> i would like to thing it more as 1 bomb
<8> mornin
<7> mornin
<5> they should make a new country thats not west or east, and is totally p***ified as to religion
<5> Republic of the North Pole
<5> and they import 200 humans of all colors, races, and parts of the world
<7> why?
<5> dunno
<5> cus it sounds cool, and they could live in tents and stuff
<7> tents lol
<9> hi mjau-mjau :)
<8> haha
<5> hola
<8> lo karl
<10> morning
<8> mg o/
<10> o/
<10> I was listening to Mark Ronson - I ****.mp3 on the way in.
<10> heh, great track
<8> nice
<11> hello is there any way to change the pitch of the sound thats going to be played ?
<11> with actionscript i mean
<10> don't think so
<12> Hi guys.. just after a little help with some variable expansion.. I am trying to use 'graph2.window.update.lineStyle(0, color[attr],100)', where 'color[attr]' is an array.. it doesnt seem to be expanding this variable entirely though? attr could equal 'a' 'b', etc.. it doesnt work though.. if i specify color[a] it works though...? any ideas?
<12> color is the array name, and 'a' is the instance in the array.. so like when i specify 'color[a]' it expands to the variable set in the array.. but if i put 'color[attr]', and attr = a, it doesnt work...?



<12> it looks like it's purely that attr part of the variable that's not expanding??
<13> u mean color['a'] ?
<13> a is a var or a string ?
<11> NiBby :D
<13> hi
<11> know any function or something with what i can change the pitch of a playing sound in flash ?
<13> nop
<12> a is a string
<12> attr is a var
<12> so i need to really go
<12> color['a']
<12> but with the var replacing a
<12> so i need the var to expand first, and then expand the color part
<12> ie.
<13> can u trace attr just before the lineStyle ?
<12> <expand this second>color['<expand this first>attr']
<12> yes
<12> it is set to 'a'
<13> and can u trace (color[attr])?
<8> mornin nib
<8> o/
<13> hi G :)
<12> sec ill try nib
<13> also joobie, using color as an array name is not the best idea
<13> it's a reserved word
<13> Color is a cl***
<12> NiB
<13> myColorArray would be better....
<12> ahhh
<12> ok thanks ill try that
<12> i think i found the problem though
<8> how are u nib ?
<12> it might be the variable type
<12> like attr is defined by for (attr in blah) { }
<12> if i trace attr right before that line it resolves to 'a'
<13> u are supposed to type your var (if u use f7>)
<12> but it doesnt expand color[attr]
<12> if i define 'attr = a' just before that line it works though
<12> so maybe the for loop ***ignment is not the correct variable type??
<13> attr="a"
<13> u have a serious problem with quotes :))
<12> i get strings and literals mixed
<12> i still dont know the use of both, the only difference being one does expansion
<13> why don't u use pastebin to paste it all
<13> url in topic
<12> NiB, it's big code
<12> let me cut it down..
<8> BIG CODE!
<10> lol
<13> javascript url variable
<12> http://pastebin.com/718417
<12> NiB, for all intents and purposes, a and b are both valid
<13> 'a' and 'b' i guess ...
<12> yes
<12> apologies
<12> I also tried for (var attr:String in ..) {}, which did not work either
<14> for in always takes strings as first param
<12> oh
<12> weird
<12> var attr:String = b;
<12> when i put that just befor ethe lineStyle
<14> cast it to a Number
<12> it works
<12> that's why i was thinking it was not a string
<12> cast a to a number?
<14> for your last loop
<12> but b is defined as a string above and it works?
<12> what do you mean F1, sorry i dont understand
<14> what's in your color array
<12> var color:Array = new Array();
<12> color[a] = "0xC92965";
<12> color[b] = "0x2956C9";
<14> what does attr output in your last for loop
<12> a


Name:

Comments:

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






Return to #flash
or
Go to some related logs:

#windowsxp
redhat php-mssql up2date
#nhl
release date for z71 tahoe
#politics
pyscopaths
#windows
how to tell if glined
mdadm create would set mdadm mode to create, but it is already set to manage.
netbsd 88E8036



Home  |  disclaimer  |  contact  |  submit quotes