| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Comments:
<0> and that's not recognized <1> tons of examples in the help system <0> but no a single one on that <0> *not <2> what do u need exactly ?Learning ActionScript 2.0 in Flash <2> Creating Interaction with ActionScript > Creating interactivity and visual effects > Capturing keypresses <3> interaction <2> hehe MM examples are a bit dirty, u'd better look at the key object and listeners <3> I feel sorry for multimedia. They really killed that word with overhype in the 90's <0> my intention is not to learn anything right now, I just want to pull of the feature of pressing a button and executing the command on release <2> multimediocre <0> *pull off <3> multimedia on CD-ROM! Interactive video and audio right on your computer! <3> man that stuff was crap <0> Notified when a key is released. To use onKeyUp, you must create a listener object. <3> listen = new Object();
<3> listen.onKeyDown = function() <3> not that hard <2> what about <2> on (keyPress "<Left>") {...} <3> I liked mine <2> it should work and u won't need listeners <3> listeners are powerful <1> babys dont need power. <1> they just need to function. <3> if (Key.getCode() == Key.LEFT) { <3> that's how you do it <1> babies* <2> on (keyPress "<Left>") {...}, u can't be more simple <2> if (Key.getCode() == Key.LEFT) { suppose u use a listener etc... <2> u can intercept the global on() handler <2> it's dirty, but can't be more simple <3> you have to use as many lines as possible so your code looks advanced and impressive <1> hehe <3> :D <1> poser <3> I made button with 50 lines. it takes me to another frame <2> that's SBIIA by opossition to RIA (Slow But Impressive Internet app) <3> I like to nest everything into onEnterFrames so that I make sure I take advantage of all the cpu available <3> don't like seeing cpu go to waste <3> wanna hire me? <1> its not going waste <2> ya with a bunch of for loop here and there to ensure a maximum of lag <1> its just pulling less power <3> it was a joke <1> i know <1> but the joke was wrong <2> lol <3> oh <3> sorry <1> hehe <1> :) <3> I made my slideshow <4> hey i am saving from imput text field to txt using php when i enter the <font color="#0875C9" size="11" font="Arial">2005-04-21<br> the php add the \ to the text so it looks like this <font color=\"#0875C9\" size=\"11\" font=\"Arial\">2005-04-21<br> any idea how to fix it ? <3> it's very beautiful <3> http://mordecai.lizweb.no/eik/ <3> check the Arkitektur page <1> morde-wrk its working :) <2> try toescape the string DJLy5y <3> ****ing pisses me off. When I use curved edges on vector squares they get all ugly <4> nb how ? <3> slideshow looks ok designwise? <2> escape(input.text) <1> morde-wrk why not set texts to "use device font" <1> so they get aliased <1> and not antialiased <4> i try w8 :] <3> is that better? <1> antialiasing for small fonts looks ****ty <1> and you use verdana anyway <1> or arial <3> let me fix <3> fixed <4> nb where exacly i have to put escape ? i am using this code to save input to txt <4> http://pastebin.sekati.com/?id=Sendingtotxtfile@f687c-ae5bf3c3-t <3> I'm very impressed with my sliding block menu
<3> is it a menu? is a picture? wait, it's a both. and a puzzle! <4> NiB ? <3> just let me believe my thing there is cool :/ <1> it is morde-wrk <1> very cool <3> you hate it cause it isn't 3d <3> hehe <1> hah <1> no <1> in fact i hate 3D <1> but everone wants me do it <1> i love 4D <3> I still don't understand how you make 3d in flash <3> NiB gets mad at me when I say you can make 3d in flash <3> he kicked me once for saying it I think :D <1> you calculate the 3D positions and then project it to a 2D area wich is the screen <3> sounds like hard math right there <1> some vector calc and a rotation matrix if you want to rotate <5> Hiya. <4> hey i am saving from imput text field to txt using php when i enter the <font color="#0875C9" size="11" font="Arial">2005-04-21<br> the php add the \ to the text so it looks like this <font color=\"#0875C9\" size=\"11\" font=\"Arial\">2005-04-21<br> any idea how to fix it ? i am using code http://pastebin.sekati.com/?id=Sendingtotxtfile@f687c-ae5bf3c3-t&start=25 <5> Is there a channel specifically for FlexBuilder 2, or is this it? <4> it's as3 ? <4> anyone ? <6> that is more a question for the php channel... <5> It's escaping the quotes. You'll need to unescape them. <5> As for how to do that in as3, I don't know. <5> If it has regex support it would be pretty easy... <6> DJLy5y: my friend helped me solve exactly that problem, I dont know PHP, but I know that's where the problem was... <5> Maybe if you used single quotes it wouldn't do that. <4> i use " and ' <4> no diffrance he save it with \ <6> DJLy5y: Use "stripslashes" in php... $text = stripslashes($_POST['inputText']); <6> paste that to the begining of your php file <4> only rhe $text = stripslashes($_POST['inputText']); ? <6> yes I think so... I don't know php to well, but as I can remember it, yes <5> or maybe $text =~ s/\\\"/\"/g; <5> Would be the regex version. <4> not working longman <5> I'm thinking in perl, but I ***ume it's valid for php. <4> necros i will try yours too :] <6> ok.. sorry then... I know its something like that.. I have solved it, but as I said, I don't know php too well <4> Necr0s- with the $text =~ s/\\\"/\"/g; in php he not even save the file <4> i am newb in php so i am asking <1> =~ doesnt work in php <1> its perl only. <4> oh <5> Hmm, doh. <4> but perl don;t save me i need php <1> stripslashes should do the job <1> strip for me baby <5> Maybe it's being escaped as it leaves php, or beyond. <1> yes it can also be excaped by the server <1> check php settings <1> and apache settings <4> movAX13h where to add that stripslashes can you change pastebin please ? <5> I would look in php.ini. <5> But I don't know php too well, so don't listen to me first. <4> asking a friend maybe he will know how <7> !find rules <4> he suggest somethign like this <4> $string = ereg_replace('\', '', $msg); <4> $fp=fopen('archiwumnewsow.txt','w'); <4> fputs ($fp,"$string"); <4> fclose($fp); <4> but not working <5> How about $string = ereg_replace('\\', '', $msg); <5> Use two backslashes. Escape the escape. <4> nope <4> still <4> <font color=\"#0875C9\" size=\"11\" font=\"Arial\">2005-04-21<br></font><font color=\"#5D5B53\" size=\"11\" font=\"Arial\">Zapraszam gorco do odwiedzenia nowej galerii.</font><br> <4> i think this will help <4> http://pl.php.net/manual/en/function.preg-replace.php
Return to
#flash or Go to some related
logs:
#computers #beginner #goal #linux-noob #gentoo #sql efnet isr funny clintonisms #3dsmax #nintendo
|
|