@# 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> :)
<0> he allowed me :)
<1> hey
<0> hey
<2> Yep :) Smart!
<0> movAX13h
<2> Hey movAX13h
<0> what does that do again?
<3> ow
<0> see
<0> flawed
<0> :)
<3> not anylonger ;)
<1> hey pigs
<4> how can i find out how many characters are in a dynamic text field?"



<2> :)
<0> haha
<1> pyra: tefieldname.length
<3> ;D
<0> isn't it something newer now?
<3> neg
<3> mIRC 6.17 has been released! (February 17th 2006)
<3> http://www.mirc.com/
<0> ah
<0> yay for utf then!
<0> please tell me you have utf enabled
<4> tx movAX
<0> lol
<3> haven't changed a single thang
<0> ok
<0> let em try something then
<0> me*
<0> :::::
<0> what can you see?
<3> nothin
<3> in font options I have UTF set to default
<5> same here
<5> that's why i can say:$B!!$-$($m(B
<3> ?
<3> bah
<5> heh
<3> still can't do it
<6> !find rules
<3> can't fuggin paste anything here, doesn't like it
<3> I have it set to display and encode now
<5> $BFI$a$k$+(B
<5> ^^
<3> I can see though
<5> lol
<3> always pastes in ?'s from charmap :{
<0> ominous
<0> which font are you using?
<0> lol
<3> default
<3> fixedsys
<0> thats why
<0> switch to a unicode font
<5> yeah, fixedsys ****s
<3> I'm completely used to it
<0> like lucida sans unicode
<5> try ms ui gothic :D
<0> (<3 lucida sans)
<5> would a heart surgeon have a bumper sticker that says "I <3 <3's"?
<0> lol
<2> <3 tahoma
<0> MerZikain best japanese enabled font = mikachan
<3> possibly but that surgeon might spend too much time online using 1337 5p34k and I don't want that sort of person operating on me ><
<0> its also unicode
<5> oh and i saw a sign saturday that said "Rober Canada: Attorney" and i thought "would his family be the Canada's or the Canadians?"
<1> smily, did you get your url back?
<2> ominous: hehe, having a heart transplant by a doctor just finishing his all-night counter-strike game ;)
<5> SmilyOrg: i think i have it somewhere
<3> ziper: That he lost and is pissed about cause you interrupted him with your petty surgery needs *shudder*
<2> :)



<3> I make it a point to ask them if they know what OMFG means
<0> movAX13h smily.org? nope
<4> i created a function to concatenate random letters together and display them over and over in a _txt field ... everything worked, until i tried to concatenate the random letters, reuasing the function: http://pastebin.sekati.com/?id=Anonymous@f1745-805c334b-t&start=0
<4> error: **Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 14: ';' expected
<4> for (x = 0, x < yy, x++) {
<1> pyra needs ; instead of ,
<1> both
<1> for(x=0; x<y; x++)
<4> ahh
<4> ok, now it is back to producing one character as the txt, not a complete string, while trace(myTxt_txt.length); shows me that the txt field has 19 characters ...
<1> what kind of textfield is it?
<1> html?
<4> dynamic
<4> the field works .. it all displays.
<4> but instead of calling the random1 function 19 times to produce a random character, it just calls it once
<4> it should iterate 19 times and concatenate 19 random characters together and display them over and over, new each time in the txt field
<4> movAX13h, did you see the code on sekati?
<1> no
<3> why don't you try making SURE it's not performing math as I suspect AS would eventually screw up and do
<3> initialText += '' + j;
<1> pyra, you have to typecast
<8> whats the best way to check if a word is in a word list? Right now I have 26 arrays, each full of words that start with that letter. When a word is typed it checks that array for the word, and this can get very slow with big word lists. Is there a better way to do this?
<1> its getting a char
<1> a integer i ment
<4> ..
<1> its just adding the value
<4> ahhh
<4> a char value like C i see ok -
<1> you can use: initialText -= -j;
<3> using a type cast would be most ideal, toString()
<1> += is for both, numbers and strings
<9> What is the easiest way to shrink down the dimensions of a flash peice as well as all the elements inside it?
<1> -= is for numers only
<1> so you can not use -= :)
<9> MX Pro 04
<1> MarkP in code or in the ui?
<3> flash needs to grow up and support a true concatenation-only operator, + is just bloody confusing
<9> I want to make a new version of the peice, just smaller
<3> MarkP: Unfortunately there is no way to do that. You manually do it or you force the flash app to be a smaller height/width and accept flash interpolating the smaller scale itself (usually horrifying results on bitmaps)
<1> MarkP select all, copy and paste
<4> x = ascii[random(ascii.length)];
<4> x = toString(x);
<4> return x;
<4> now the txt just says [object object]
<4> or am i incorrectly using "toString();"
<3> pyra: the += is the operation that you need toString on
<3> initialText = initialText.toString() + j.toString();
<4> initialTxt += '' + toString(j);
<4> ahh...
<4> now i have: initialTxt = initialTxt.toString() + j.toString();
<4> trace(initialTxt);
<4> the trace just shows each individual character coming up again now :/
<3> trace initialTxt before you operate on it
<3> probably aren't even using the right scope
<4> nothing
<3> it contains nothing when you trace it before you perform the concatenate?
<4> how do i scope a variable with flash as global?
<3> just create the variable where you know it'll be accessible between the functions. You don't want to make it global.
<3> if you understand the document object hierachy then knowing where to place the variable is easy. Otherwise you might want to read up on movies inside movies and how to path between them properly.
<4> kk
<4> well i know how to do that, ie: _level0.mymovie_mc.myvar
<3> you can point to something like that as long as you're absolutely sure nothing will change. That isn't recommended though. I'd use something with a relative scope if possible.
<4> relative meaning?
<4> _root?
<3> meaning if you change things later and move some movies, it might break
<4> ok
<3> if you decide another container movie is needed to enhance the interface and now it's _level0.effectslayer_mc.mymovie_mc.myvar, now you're screwed
<4> ahh
<10> Hi everyone.
<3> Allo
<4> well i have it concatenating now, however now it fills up the box, item by item, then stops.
<10> I am using XML to load some pictures into my Flash movie, but the XML goes to the browser's cache.
<10> How do I do to don't store the XML in the browser's cache?
<3> ]Anjo[: It's a common problem. google.com it and you'll find resources.


Name:

Comments:

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






Return to #flash
or
Go to some related logs:

#beginner
#solaris
ghost.exe not registered
#politics
#red
#microsoft
#computers
#delphi
#heroin
Textpad for Fedora



Home  |  disclaimer  |  contact  |  submit quotes