@# 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 14 15 16 17



Comments:

<0> i'm here
<1> cool :)
<0> reading priv msg now
<2> do you guys feel any change now www.aidesigndrive.com/hp.swf
<2> IS flash 8 better than flash MX ver 6 ?
<3> can anyone help me wtih html?
<4> perl - only if you like graphics and manipulation of them on the fly via actionscript or the plethura of new features for visual developement in general to speed things up
<4> there are video's in macromedia.com exploring new features you could investigate more with
<4> www.macromedia.com/flash/
<5> sonic`: http://www.w3schools.com/html/ is a great place to get answers
<4> http://www.macromedia.com/software/flash/flashpro/productinfo/features/
<4> watch video
<6> w3schools is crap
<7> its awesome for someone coming into #flash to ask for html help
<8> anti alias for animation or anti alias for readibility
<8> which do you guys usually use for text?



<6> readability, duh
<8> i'm dumb :)
<1> the one that works in flash 6
<8> thx
<1> hehe
<8> readability doesn't work for f6
<8> just f8
<1> if your customers have player 8 installed, go for it
<1> but i doubt that
<8> so then use animation
<8> correct?
<8> i get it
<8> sorry
<9> !help
<10> anyone pretty handy with p***in vars from flash to say coldfusion? I need to figure a way to group variables without using a form, basically p***ing all kinds of vars from flash, anyone know how to tie them together?
<9> Anyone here that can help me with a mail form? i have made the form and buttons. but ihave to get the send button and clear button to work. I cant figure it out. anyone?
<1> Viplash its all over requests
<1> you use the loadVars object
<1> in flash
<1> myvars = new LoadVars();
<1> myvars.load("yourfile.cf");
<1> the coldfusion file outputs like: &var1=plaaaa&var2=xxxxx
<1> and you get the vars like this in flash:#
<9> hmm. Thank you. I can see if i figure it out now.. I have my doubts.. i am pretty new to the flash thing :)
<1> myvars.onLoad = function() { trace(this.var1); }
<1> study the loadVars
<1> !find -c LoadVars
<11> LoadVars == http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary427.html
<1> take that
<9> thanks ..will look into it
<12> movAX13h if i make in php if(_root.$ksiegaok=="true") { it will work ?
<12> aksing about the _root. thing
<10> Mova, I mean putting files to coldfusion db not from, how do I take a bunch of flash vars and stick them in a group to p*** to cf,
<13> i hva have made a mouse follow, but how do i make it so it wount slide out of the swf area?
<1> DJLy5y no :)
<1> _root is flash only
<12> :(
<12> how to make the php to catch from root ?
<1> Wildburn you use the loadVars and the method sendAndLoad or send
<1> !find -c LoadVars.send
<11> LoadVars.send == http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary434.html
<1> !find -c LoadVars.sendAndLoad
<1> take that
<11> LoadVars.sendAndLoad == http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary435.html
<1> and that
<1> DJLy5y catch from root?
<1> there is no root in php
<10> Mova, so does that have a {} section to them? IE do I put all the vars I want to p*** in the brackets
<12> i am taling about flash root :]
<1> DJLy5y you can not access flash variables from php
<1> Wildburn:
<12> :(
<12> ok thx
<1> myvars = new LoadVars();
<1> myvars.somevariable = "xxxx";
<1> myvars.send("filename.cf");
<1> thats it
<1> Wildburn
<10> okay and just replicate the middle line for the variables, and then process them in cf as standard vars
<1> yes
<1> you get them as GET variables unless you define other at the send function



<10> thanks Mova, that was exactly what I needed
<1> study the loadvars.send
<12> movAX13h i have something like that in php if($allok=="true") { how send from flash to php that allok=="true" ?
<1> i dont understand what you want to do DJLy5y
<1> please explain
<1> you have a variable in php and wont to send it to flash?
<12> no i have a checker of vars in php that check id var is true in flash
<12> or something like that
<3> can someone help me with an html problem?
<12> shoot
<1> sonic` ask
<1> DJLy5y so if someone checks the checkbox on the html site its also checked in flash?
<1> should the site reload?
<1> or instantly
<1> ?
<12> no
<1> i still dont understand your question sorry :)
<12> is protecting php from being used by some user
<12> i have a guest book in flash and when someone enter http://www.site.com/myphp.php
<12> the guest book making it selph empty so i done in php
<12> if($allok=="true") {
<12> code to do here
<12> }else{
<12> ****off wanker
<12> }
<1> heh
<12> and now i have to send to php from flash somehow
<12> allok=true
<12> so php check allok == true ok so we do the code
<12> if false **** of f :]
<1> heh
<1> ok
<1> still not clear
<1> let me ask
<1> or rephrase
<1> you have a guestbook in flash
<12> yes
<1> hehe i'm stuck
<12> hehe
<14> DJLy5y
<12> yes Sync{3DS} ?
<14> does myphp.php contains the swf?
<12> no
<14> so u just call it to fill the guestbook
<1> so you want to send a request to the php file?
<12> yes
<14> eh
<14> use loadVars
<14> sendAndLoad function
<12> how will the code looks like ?
<1> myvars = new LoadVars();
<14> datas = new LoadVars();
<14> datas.onLoad = function(){
<14> --your code here--
<14> }
<1> myvars.sendAndLoad("file.php");
<12> ok lets try
<1> datas*
<14> datas.sendAndLoad("myphp.php",datas,"POST");
<14> or GET
<14> as u want
<12> w8 i paste guest book code
<12> i think there is send and load there
<1> thanks Sync{3DS} ... i didnt understand what he wanted to do till now...
<14> ;)
<12> wanker :P
<12> http://pastebin.sekati.com/?id=book@3368f-92f0a87d-t
<1> you're sweet.
<12> the book
<12> u2 movAX13h
<14> damn mate...too much code for me now :\
<12> i can use 2 x times sendAndLoad
<12> ?
<14> i'm not in good psychic condition :D


Name:

Comments:

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






Return to #flash
or
Go to some related logs:

#computers
digitalblashemy
TORY 1 SUCK
#hardware
911truth.com
sexboy
#beginner
#windows
veronicasimon
#c



Home  |  disclaimer  |  contact  |  submit quotes