Re: [Flashcoders] wheel on curve game engine

2006-05-28 Thread Byron Canfield
Review the archives for the thread entitled: Are you a help vampire? -- Byron Barn Canfield Hello, got anyone idea or even script modellign wheel (bike, car..) on curve, collision but mainly bounces, gravity, etc like in this game: http://www.freeonlinegames.com/play/3286.html

Re: [Flashcoders] wheel on curve game engine

2006-05-28 Thread Byron Canfield
More so is the adolescent attitude, Mick. -- Byron Barn Canfield Help vampire messages are more of a waste of *everything* than the original posters - Yawn ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

Re: [Flashcoders] yet another screwing from micrsoft

2006-04-01 Thread Byron Canfield
Additionally, the proposed solutions, whether embedded JavaScript or external JavaScript files are entirely ineffectual for those who have changed the browser settings to disallow JavaScript execution -- not all that uncommon in this, the age of the pop-ups. -- Byron Barn Canfield I couldnt

Re: [Flashcoders] array of movieCLip

2006-03-24 Thread Byron Canfield
The initial coordinates of a dynamically created movieclip are always 0. Unless you have explicitly assigned a new value to the _x property of a dynamically created movieclip, it will be zero. -- Byron Barn Canfield If i create n movieclip with the createEmptyMovieClip giving to anyone a

RE: [Flashcoders] movieclip actions not working

2006-03-20 Thread Byron Canfield
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Byron Canfield Sent: maandag 20 maart 2006 1:18 To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] movieclip actions not working Actually try this, instead. m1.onRollOver = function(){ delete this.onRollOver

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Byron Canfield
Your first button event handler has already intercepted the mouse event. The button event handler nested inside is therefore ignored entirely. For your first button event: m1.onRollOver = function() { gotoAndStop(20); //or play(); this.enabled = false; } -- Byron Barn

RE: [Flashcoders] movieclip actions not working

2006-03-19 Thread Byron Canfield
... http://www.citogrid.com/v3/images/fla/whynot.fla thx, Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Byron Canfield Sent: maandag 20 maart 2006 0:33 To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] movieclip actions

[Flashcoders] Contaminated list?

2006-03-10 Thread Byron Canfield
Message Subject: Attn: Byron Canfield Please Respond, From:Barrister Brian Braithwaite [EMAIL PROTECTED] Date:Fri, March 10, 2006 5:11 am To: [EMAIL PROTECTED] -- BARRISTER BRIAN OLUFEMI

Re: [Flashcoders] preloader issue?

2006-03-07 Thread Byron Canfield
Part of the problem is that your onEnterFrame is getting stomped on by the reinstantiation of the target movieclip when the SWF actually begins to load. That effectively (quite) deletes the onEnterFrame. Either attach the onEnterFrame to some other timeline, or load the movie into some other

Re: [Flashcoders] random concatenated txt question

2006-03-06 Thread Byron Canfield
I don't see anything there in that code that limits the string length to 19, nor anything to reset the string to a null value upon reaching the 19. It just keeps on concatenating onto the end of the string, but you can't see it because of the limited size of the textfield. Try putting a trace in

Re: [Flashcoders] random concatenated txt question

2006-03-06 Thread Byron Canfield
I think I would take the simpler route: ascii = new Array(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z); function fncShuffle() { return Math.floor(Math.random()*3)-1; } _root.onEnterFrame = function() { myTxt_txt.text =

Re: [Flashcoders] Help with timeline Script

2006-03-03 Thread Byron Canfield
requirement. He wants to open the outlook as soon as some click on his email id. And you know about the clients, if they need it ,they need it. - Original Message - From: Byron Canfield [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, March 01, 2006 11:24 AM

Re: [Flashcoders] RIA patent granted

2006-03-02 Thread Byron Canfield
Except that's not the kind of patent action this case addresses. This one is specifically someone developing or copying an idea that already existed, and then, upon finding it not yet patented, patenting it and thereby attempting to extort money out of others, some of whom did all the originally

Re: [Flashcoders] Z sorting multiple overlapping movie clips

2006-02-28 Thread Byron Canfield
You can make it a lot easier by doing some of the prep work for that architecture in the for loop that you use to first create and assign depths to those movieclips. This isn't exactly OOP, but it demonstrates the architecture: var qtyClips:Number = 4; var nbrDepthOffset:Number = 7; var

RE: [Flashcoders] mailto is not working

2006-02-28 Thread Byron Canfield
I'm in this camp -- I prefer using the email client of MY choice, not someone else's. Plus I like being able to review what I sent. Personally, I find corporate sites that hide the principals' email addresses to be annoying -- I just want the email address; I'll do the rest. -- Byron Barn

Re: [Flashcoders] Help with timeline Script

2006-02-28 Thread Byron Canfield
The first thing you should do is repair your naming -- object (and all other) names in Flash should always begin with at least one non-numeric character. -- Byron Barn Canfield Help! I cant get this code quite right. I'm probably attempting somthing that is way above my head but maybe i'll

Re: [Flashcoders] Navigating between labels? Scripting help:

2006-02-26 Thread Byron Canfield
How about just a single function (ala LOTR -- one ring to rule them all) and just pass it a 1 or -1 to indicate the direction? /* Initialize index: */ var index:Number = 0; /* Declare var frames as an array and populatec with frame labels: */ var frames:Array = [scene1, scene2, scene3]; /* Get

Re: [Flashcoders] setInterval inside created Clip

2006-02-24 Thread Byron Canfield
newClip.intervalid = setInterval(newClip.doSomething, 200); -- Byron Barn Canfield Hey All, I'm looping through a structure adding movieclips along the way for each element. I need to setup a separate interval inside each new clip. If I call the function directly, I need this to be

Re: [Flashcoders] I.E. won't play MP3 (sometimes)

2006-02-23 Thread Byron Canfield
Worked fine for me: XP/sp2, IE 6.0.2900.2180.xpsp_sp2_gdr_050301-1519 -- Byron Barn Canfield If you have 10 seconds, please test this so if this problem is only on my laptop. This movie streams short MP3's when the user clicks a button. Works fine in I.E. on 3 of my machines, but on my

Re: [Flashcoders] preloading multiple swfs with moviecliploader

2006-02-21 Thread Byron Canfield
Well, presuming you're speaking of on-line delivery, you're kind of at the mercy of the browser on that one, as most browsers have a physicial limit of 4 simultaneous connections (download streams), though I think some versions on the Mac allow up to 7, such that any quantity of files greater than