@# 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> you didn't change print to $vars.=
<0> that's essencial >_<
<1> oh i didnt see that part
<1> reload
<2> i need help working without the old telltarget command, anybody know were i can read about the new way/command instead? :)
<1> did i miss any
<0> doesn't look like it
<0> try your flash file and see what happens
<1> okee
<1> trace doesnt even come back at all :(
<1> lemme try load back inside the function
<0> ...
<1> damn
<1> NaN
<0> i told you to do that 10 minutes go



<0> try tracing the vars
<0> and are you certain the php file is outputing those vars?
<1> http://pastebin.sekati.com/?id=Anonymous@897f5-7d941206-t
<1> yea dude
<1> i traced them
<0> and it's coming back as you set them?
<1> i do trace(loadText.votes1);
<1> i get 4
<1> if i try
<1> trace(Number(radio1votes) + Number (radio3votes));
<1> that **** is borked
<1> or even trace(Number(loadText.votes1));
<1> is NaN
<1> wtf
<0> then trace(Number(loadText.votes1) + Number (loadText.votes3));
<0> see what that does
<1> no output
<1> do i need to convert(num) or something
<3> can you change how the mediaplayback component box looks in flashmx. Cause at default its just an white box. for example thats how it looks http://www.communitymx.com/content/article.cfm?page=4&cid=A93B648DECD7574E
<0> no
<3> that ****s
<0> GooseNPA: wasn't talkin to you
<3> oh
<1> :)
<1> im fawkin stumped man
<0> thesis: something is definitely ****ed up, i mean if your php file is outputing the right data and your load is executing properly there should be no reason for it
<0> if it were me, thoug, i'd remove all vars from the front of the variables and every :Number after your variable names
<1> trace(loadText.votes1); is 4
<0> that **** always ****ed things up for me
<1> wtf cant i just plug that **** into a var blah:Number = Number(loadText.votes1) + Number(loadText.votes3);
<0> just use blah instead of var blah:Number
<0> see if that makes a difference
<1> ok
<1> totalVotes = Number(loadText.votes1) + Number(loadText.votes3);
<1> trace(totalVotes);
<1> NaN
<0> lol
<1> totalVotes = loadText.votes1 + loadText.votes3;
<0> hell if i know
<1> trace(totalVotes);
<1> $
<1> 4
<1> 7
<0> i'm thinking it's something ****ed up with your php
<0> flash can only work with what you give it
<0> and php is what's giving it your crap
<1> can i convert the string to a num?
<0> in flash you use Number() like you have been
<0> but when you load information in flash it all comes in as a string
<1> im gunna flippin kill this ****
<1> http://pastebin.sekati.com/?id=Anonymous@897f5-7d941206-t
<4> we're having a transition workshop (how to get from one page to another).
<4> Anyone got some nice examples/links?
<1> **** merz now i broke my vars
<0> lol
<1> radio1percent.htmlText = this.votes1 + "votes";
<1> is that correct syntax?
<1> im not gunna add them together
<0> for what?
<1> add text to a var in a dynamic field
<0> why are you using 'this' again?



<1> lol
<1> cause i forgot
<0> evidently
<0> and yes
<0> var + ' blah';
<1> wtf isnt it working then
<1> why isnt anything working today!
<0> not sure
<1> theres something about these vars im loading
<1> flash doesnt like them
<1> it doesnt wanna do anything with them
<5> 1. Install Flash 8
<5> 2. *********e
<1> 3. stfu
<6> Alol
<7> adobe flash player 9
<7> brrr
<7> gotta get used to that
<7> ;X
<6> heh
<8> Hi!
<8> Does anyone have experience with generating SWF files from PHP?
<9> Sounds hairy.
<9> I think Flex Data Services or whatever they call it now is supposed to do that.
<4> flasher; long time ago.. I think I used ming
<4> flasher; http://www.libming.net/
<8> c0rgan; do you know if it is possible to use an existing SWF as a template?
<4> never did that
<4> no idea
<8> that is do something like $myMovie->load()
<8> me neither -- if you should find out something I would appreciate it if you dropped me a note at haraldogsonja@hotmail.com
<8> thx
<4> try to ask on their mailinglist
<4> see http://ming.sourceforge.net/
<8> I just did
<10>
<11> is there a way to make the background transparent in my flash project?
<12> is it possible to use the motiontween, "ease" function in actionscript?
<12> im trying to search for ease in the manual, but I get so much back with "release"
<13> what ya want to know about ease?
<12> how I can use it with actionscript, instead of doing it "manually"
<13> ah
<13> !google site:macromedia.com tween cl***
<14> http://livedocs.macromedia.com/flash/8/main/00004142.html
<13> mm
<13> !google site:macromedia.com using the tween cl***
<14> http://www.macromedia.com/devnet/flash/articles/tweening_05.html
<12> thanks
<13> yup - start on http://www.adobe.com/devnet/flash/articles/tweening.html
<13> :)
<13> that'll walk ya through tweening and transitions actually :)
<0> shiz
<0> you work with mysql much?
<13> mmm was yesterday, finishing today...
<15> new security web site =- recognize-security -= everything about computer security / programming http://www.rec-sec.cjb.co.il
<13> wusup?
<0> well i'm tryin to make my code better
<13> arent we all?
<13> :)
<0> so i'm using a lot of mysql_free_result($result); where before i wasn't
<0> wondering if you had any thoughts on that function
<13> uh - if your done - free ... always
<13> heh
<0> what if you reuse $result a lot?
<0> what happens?
<0> does it free it automaticly if i redeclare it with a new query?
<0> i also have a habit of using $field=mysql_fetch_***oc(mysql_query("..."));
<0> and since there is no $result identifier for the query i'm wondering if i need to set one then clear it afterward
<13> hmm - never really had to think about it - once done with results - i free'm outa habit ...
<0> yeah well i was taught php by a bad coder so i'm a bad coder
<0> now that i have the time to do so i'm working on changing my bad habits
<0> i'm also wondering of the usefulness of mysql_ping()
<13> well i would ***ume if not free'd - its in mem


Name:

Comments:

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






Return to #flash
or
Go to some related logs:

#gamedev
#debian
#politics
#beginner
#bsd
#politics
#debian
#beginner
#eggtcl
HI-CO nose



Home  |  disclaimer  |  contact  |  submit quotes