@# 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 18 19 20 21 22 23 24 25 26 27 28 29 30



Comments:

<0> and thanks again!
<1> i'll too...i'm sure
<2> dumnedzaw: good developer *pat* *pat*
<3> ominous thanx :))
<2> wtf would anyone do without it
<5> someone entertain me
<1> yes that's just like thermodynamic :)
<0> how do you stop 5 black guys from raping a white chick?
<0> through 'em a basketball
<6> Lollerole: life, get one
<0> he asked for entertainment :(
<0> i was joking
<5> has anyone worked with any kind of side scroller similar to teh way Mario works..



<7> life
<6> ominous: do you know much about regex?
<7> life?
<5> and have that movement code available ?
<2> MerZikain: Not really much to know
<7> what is this...strange...gibberishical word...?
<5> i want to reference my work to someone elses
<8> if we die
<8> the next generation will fight them too
<6> ...
<2> MerZikain: what's the problem?
<1> perhaps u should try to avoid racial jokes... i see u are from israel...
<6> tryin to make a better emoticon replacement script for my forum
<2> give me an example of something you're having a problem with
<0> well no one told stanley kubrik to get a life when he told it on full metal jacket :(
<6> well i'm tryin to use preg_replace
<1> hehehe
<6> which of course uses regex
<2> *nod*
<0> gn now
<6> and i need to use it to find and replace ^_^ with an image
<1> true but u are not kubrick :)
<2> so what's the prollem
<7> I use bowflex.
<8> and if they they next will fight them
<6> but it needs to find "blah blah ^_^ blah" and not "blah^_^ blah"
<0> yup... fortunately (I still got my life)
<0> gn and thanks again!
<1> good night
<6> and it also needs to match if the ^_^ is on a line by itself or at least the first string in a line
<2> $string = preg_replace('/\^\_\^/',$string);
<3> SHiZNiT _root.g.f.f.loadMovie("gallery/"+string(_root.g.k)+".jpg");
<9> can the stage be dynamically resized?
<10> lra_ ya
<2> ^ means "first charactor in a string" if you don't \^ escape it
<6> ****
<6> that's the problem
<6> i've been using preg_replace without ***inging it >_<
<6> duh
<6> brb
<11> resizeObject = function(id,w,h) { document.getElementById(id).style.width = w+"px"; document.getElementById(id).style.height = h+"px"; }
<12> that song owns :p
<2> you might wanna qualify it with some '1 or more whitespace' char type restrictions incase I don't want ^_^ translated
<9> suv - simply Stage.width=newval?
<10> anyone heard thatone: Korn - Kupper's Electro-tek? Comes free with Winamp.
<9> shiz 0 is dom the only way?
<2> $string = preg_replace('/\s+\^\_\^\s+/',' <img src="images/SMILEYFOO.gif"> ',$string);
<10> lra_, no, by HTML/JS
<9> good idea
<10> lra_, but flash will notice and you can handle the new size
<11> getURL("javascript:resizeObject(_level0.swfName, w,h);"); ..
<6> ominous: i'm using "/\s*\^_\^;\s*/" for ^_^;
<9> ahh
<10> lra_, first type this: Stage.align="TL"; Stage.scaleMode="noScale";
<11> erm _level0.swfObject ... p*** its id as flashvar to _level0
<11> ya, gunna need that too
<10> lra_, then listen to Stage.onResize
<2> escape everything just for clarity, \; also



<5> so no one has created any kind of Side SCroller Mario game ?
<2> MerZikain: realize you need to replace the \s* with a space also tho
<1> millions...why ?
<5> nib
<6> ?
<5> one that functions and moves like Mario ?
<10> nickfury, me, but it's not side scroller mario game but rather side scrolling space ship-shouldnt-hit-obstacles-and-collect-stars kinda game
<5> half screen limit, etc etc
<5> suv4x4 not the same
<2> MerZikain: If you want to format padding consistency around the image if you're not already doing it with CSS
<10> I know :(
<10> but I've done platform games
<10> basic ones
<1> i'm not a mario specialist.. but yes some side scrrloling jump ****
<9> shiz - so it's a combo of js and as
<5> nib
<5> give me your most advanced movement side scroller code
<5> will ya?
<6> i only want spaces around it if there were to begin with
<5> i wanna compare my methods
<9> hahaha
<2> then I wouldn't even use \s*
<10> nickfury, with flash 8 it's all obsolete
<6> if it's the first thing in a line of text then it would only need a space on the right side, or if it was by itself on a line it wouldn't need any at all
<5> suv4x4 what's obsolete
<6> however, the problem i'm having at this point is that it's not dropping down a line
<1> somethin tiles based ?
<5> NiB.. well it's more just the movement i'm looking at ..
<3> http://pastebin.com/534366
<9> tilebased is obsolete with flash 8?
<10> nickfury, the way I'd do tilebased side scoller in flash 5/6/7 and now in 8 differ radically
<5> speciflcally.. sliding ... half screen movement, paralax.
<3> help pls
<5> stuff like that
<2> MerZikain: dropping down a line?
<10> brb
<11> _lra ya - you cant resize document without it ... your .onResize can respond to browser window width/height changes ... but it wont 'set the browser' to new content heights/depths allowing scrollbar/stage area to reflect such changes ... without js interaction to resize the actual plugin
<6> yes, i have a line of text ending with an emoticon, then a new line with an emoticon
<6> i'm using it to test with
<6> and it's not dropping the other emoticon down a line
<6> it's putting them on the same line
<2> you have to specify you want multi-line on the //, lemme get the char (forgot it), I think it's like //m or something
<2> use //m
<2> treats multiline as a single line
<2> /\^\_\^/m
<9> shiz - can i pm you about it?
<2> get rid of the \s* or you're gonna destroy the space if it exists though
<3> help pls - http://pastebin.com/534366
<2> http://us2.php.net/manual/en/reference.pcre.pattern.modifiers.php
<6> yeah i've been looking over those for a long time
<9> ocre rocks
<9> pcre
<6> doesn't make any sense to me
<9> just start with teh basics, you'll soon pick it up
<6> /m does nothing
<13> Where's a good site to get someone started on the absolute basics of flash?
<13> Like the tutorials did in flash 4.
<6> inside of flash
<13> They have it in flash? :O
<6> indeed
<6> look under the help menu
<2> you want preg_match_all() then
<2> you must be matching previously and it's stopping
<3> heeelp - here pls http://pastebin.com/534366
<13> MerZikain : Ah, not as in depth as flash 4 was though.. :<
<3> anyone?
<6> ominous: http://www.email***ault.com/forum/index.php?page=posts&fpk=1&tpk=1527&sl=9
<6> the second emote should be on the next line
<6> those are the only two in the text
<14> why would a mask only show up in play mode and not the actual movie
<14> I tweened it and all I get is the broken line tween - - - - - not the -------->
<15> hello does anyone have experience with using semaphores in flash?
<6> wtf
<10> az2, uhuhu :) semaphores?


Name:

Comments:

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






Return to #flash
or
Go to some related logs:

#computers
#winvista
#hardware
glasses monc
scatterp
bartpe fixboot fixmbr
#politics
#politics
#beginner
bekham in MLS



Home  |  disclaimer  |  contact  |  submit quotes