@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6



Comments:

<0> http://www.tomdownload.com/multimedia_design/animation/swf_media_browser.htm
<1> help
<2> anyone know where i can get small flash characters?
<3> q:i loaded a movie using loadmovie...how can i unload it now? unloadMovie doesn't seems to make it go away...
<4> night-, pixel fonts you mean? Look at dafont.com
<2> i mean small people characters for flash games
<4> oh
<4> lol
<5> I need to be able to "hit" a circle with a square and make the circle move accordingly... would hitTest be a good way to go? or should I just stick to geometry?
<5> I'm making a foosball game :)
<2> if you will use hitTest the ball won't really touch the square
<2> and it also depends on the speed of the ball
<2> if the ball can byp*** the square in one frame, then hitTest may always return true
<2> return false i meant
<5> ah yes... I see your point



<6> is there a way I can ***ign a keyboard key to perform the same actionscript as a BUTTON?
<6> like in the buttons' properties or actionscript or something.
<7> you can use the on (keyPress) event on the button, flash 4 style
<7> or use a Key listener
<6> hmm
<6> lets take button A for example. in the actionscript for button A, I have on (press) { foo; }
<7> you can alter that to on (press, keyPress "whatever") { foo; }
<6> ok
<6> thank you :)
<6> I'm having trouble with it...
<6> what would be an example of on (keyPress "a") - for when the user hits A on the keyboard
<6> I tried on (keyPress "a") and on (keyPress "<a>") - neither work
<6> on (keyPress "<LEFT>") works ... so what is A?
<8> @kevin: http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flash_MX_2004&file=00001113.html#71302
<8> you need to use Key.getCode()
<6> well ... I'm lost.
<6> lets just pretend that my flash project is a keyboard .. and I want the user to either click letters on the screen, or type letters on the keyboard to cause an animation or sound to play.
<6> I have this for the button presses on the screen: Button.prototype.onPress = button_function;
<6> and then in the function the code is pretty simple.
<6> but I would like something similar for keyboard events
<6> do I put this code in frame1?
<6> ok ok.. nevermind all that :)
<6> new question
<6> Button.prototype.onPress = button_function(this._name);
<6> button_function = function(key) { trace(key); }
<6> whats wrong with this?
<6> how do I p*** values to a function?
<6> why is flash like half a programming language? :)
<6> this is killing me
<5> best question Ive heard in here yet
<6> the actionscript dictionary shows how to p*** parameters ... it looks like I'm doing it correctly - but it isn't working
<6> I'm developing in flash8.. people on other computers can see my flash project.. but parts of it are 'missing'
<6> the only solution I have found to tihs problem is compiling for a lower version of flash
<6> but when I do that, I get a bunch of warnings :|
<6> "Enhanced stroke is not supported in this player" - thats the only warning for flash7. ..
<6> but I get it like 100 times
<9> hello
<10> hello
<9> how do I interpret a website hit count of 1.7 million but only a visit count of 1600??? Are those 1600 really watching that much or are more peole perhaps logging in from those same locations?? the stats page for what I am referring to is http://www.videovaulttv.com/stats
<10> I'm importing a SWF (flash paper) inside my main movie and it wont get at 100% view.
<10> anyone can help?
<9> same here
<10> hhhmmm i see
<10> you know any other room?!
<9> flashhelp
<9> flashmx
<9> actionscript
<6> I have two arrays (the content is just for example): ar1 = new Array("a","b","c","d","e","f" ...) ar2 = new Array("x","w","a","b","e","m" ...)
<6> this is complicated...
<6> so user enters "abc" - I want output to be "xwa"
<6> or if user enters: "cef" I want output to be "aem"
<6> so what I think I need is a way to scan an array for a string ... and when found, return the position of that string in the array.. and then return the string at that same position in ar2
<6> aside from using for loops - are there any ideas that would make shorter work of this?
<11> Kevin1981, you need to use a for loop to go through ar1 and determine the position of those letters, and store that in another array.. then do a for loop for that new array and use the numbers inside as the position for ar2 (ie newArray[i])
<12> FearX you around?
<13> I am wondering if you could slice objects b4 you use flash. If so would it make it easier??
<13> Does anyone know how to make a nav banner do this in flash? http://nixonlive.com/
<14> !find
<14> !help
<13> Look at this so far
<13> http://www.freewebs.com/jarrettsweeney/navbar24.html



<12> still like it :)
<12> why are you designing that page?
<13> i made it betteer
<12> you in a klan?
<13> lol for a portfoio
<13> :D
<12> oh
<13> nope
<12> why does your away message say don't message you about sponsorships?
<13> oh
<6> so user hits a number between 1 and 10 .. and that means "var1", "var2", "var3" ... "var10" is returned depending what number they press ... do I have to use a switch and go through each of the ten possibilities?
<15> hi DJLy5y
<16> hey K0m4
<6> can arrays have levels?
<17> ?
<5> night- u there?
<8> as in storing an array inside another array?
<18> i dont see why not
<6> sort of like that
<11> multidimensional array
<8> yes
<8> multidimnesional arrays
<6> yes. thats what they are called
<6> whats the syntax?
<8> http://www.communitymx.com/content/article.cfm?cid=AD782
<8> big tute on everything array
<18> i use things like... &this=1,2,3/4,3,1-3,2,1/4,1,2 <--- u can cut that up into a bunch of vars
<11> array = [[1,2,3][4,5,6]];
<8> basicallye blah_arr["key"] = {arrKey1: "arrvalue2, arrKey2: "arrvalue2"};
<5> what would be the best way to make a multiplayer foosball game with a minimum of lag? flash media server? or coding a socket server?
<11> value 6 would be, array[1][2]
<6> ok
<6> now I just have to think how to rewrite all my dumb code :)
<19> hi guys
<19> !find
<19> !find rules
<19> i need help
<19> could i do smth in flash what is equivalent to <form> and <input> in html?
<19> anyone alive?
<20> you could, but why not just use HTML?
<19> because i need it to look nice
<20> that's what CSS is for
<19> and the only way i could do it with html was image map
<19> couldnt use tables
<20> who said anything about tables?
<13> Got my self a honeymaple turkey wnd pastrami with mustard and mayonaise on wonderbread
<13> and a Dr Pepper
<19> fbr is it hard to do that thing with flash?
<20> I don't know, I'm against the abuse of flash, and making a form in flash is abuse
<19> fbr so how would u do the thing in flash?
<19> oops
<19> in css i meant
<19> because its not much of a form, its kind of navigation panel for a game
<19> with 4 buttons for directions
<21> http://creativestudios.com/?p=5 "Cockfighting, condoms, etc." heh
<22> Jeff` are you here?
<23> hey. any idea where do i get Freehand help?
<19> www.google.com
<23> na. tried that already
<24> #freehand ?
<23> i was alone there
<24> did you have @?
<20> bacon?
<23> yes, i was just about to tell you guys- i also got to be a channel oparator, but i decided not to give in to the power, and leave the channel. and so i did.
<24> lol
<23> and i'm not having any regrets- no sir. i think i made a very wise decision back there.
<19> wow
<19> how smart
<23> thank you.
<4> Actually Im now an OP on a certain channel. I feel very lucky.
<19> decline - wow its an ultimate goal of life for one to be an op
<4> I know!
<4> Now I think I wanna shoot myself.
<4> bbl


Name:

Comments:

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






Return to #flash
or
Go to some related logs:

#3dsmax
#cisco
#computers
Calm_girl
#winxp
#nhl
WANTCP
#politics
#computers
#linuxhelp



Home  |  disclaimer  |  contact  |  submit quotes