SV: [Flashcoders] Rollover states for sub-items

2006-10-09 Thread Johan Karlsson
When a movieclip has a buttonevent placed on it anything inside it will not be able to get any buttonevents. What you need to do is use a mouseMove event and a hitTest to simulate a rollover/rollout event either for the nav or the subitems. E.g: Nav.onMouseMove = function() {

Re: [Flashcoders] book suggestions?

2006-10-09 Thread Mindshare Media
You might also check out : Flash Math Creativity http://www.amazon.com/Flash-Math-Creativity-Keith-Peters/dp/1590594290/ref=pd_sxp_f_pt/002-5141500-1949663?ie=UTF8 -- Damian Taggart Mindshare Media, Inc. http://mindsharemedia.net On 10/8/06, Josh Santangelo [EMAIL PROTECTED] wrote: My focus

RE: [Flashcoders] book suggestions?

2006-10-09 Thread Danny Kodicek
My focus in Flash development is more about apps than games, so I've managed to work around the fact that don't really have the background in math and science (yay art school) to produce realistic effects that lend physicality to objects, such as realistic physics, simulated 3d, etc. However

Re: [Flashcoders] book suggestions?

2006-10-09 Thread Ian Thomas
Josh, Danny's book is, indeed, exactly what you're looking for. :-) http://www.amazon.com/Mathematics-Physics-Programmers-Game-Development/dp/1584503300 Ian On 10/9/06, Danny Kodicek [EMAIL PROTECTED] wrote: If I may self-publicise, you might try my book Mathematics and Physics for

Re: [Flashcoders] book suggestions?

2006-10-09 Thread Marcelo de Moraes Serpa
Does anyone know if Flash Math Creativity have a ebook version for sale? I prefer the ebook over the paper as it's cheaper for me and ships instantly :) I've bought FAA as ebook.. it's amazing indeed... too bad I didn't have time to finish reading it yet... Marcelo. On 10/9/06, Ian Thomas

RE: [Flashcoders] Rollover states for sub-items

2006-10-09 Thread Perdue, Blake
Is there any other work around? I'd prefer to avoid wasting cycles checking the location of the mouse every time it's moved. I was hoping there was some sort of submenu flag or workaround that allowed this. Anyone know of it? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [Flashcoders] Rollover states for sub-items

2006-10-09 Thread Hans Wichman
One other option, is NOT nesting the clips. At least not code wise. On 10/9/06, Perdue, Blake [EMAIL PROTECTED] wrote: Is there any other work around? I'd prefer to avoid wasting cycles checking the location of the mouse every time it's moved. I was hoping there was some sort of submenu flag

[Flashcoders] PSP XML tests

2006-10-09 Thread Zárate
Hi all, I'm starting testing Flash content on the PSP and I'm not getting quite far :( I'm trying to read a really simple XML file, but it seems it doesn't work properly. Just the quickdirty code bellow. I've tried both the old method and with the Delegate class, but that the onLoad method

RE: [Flashcoders] book suggestions?

2006-10-09 Thread Perdue, Blake
There's the industry-standard Robert Penner book: http://www.robertpenner.com/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marcelo de Moraes Serpa Sent: Monday, October 09, 2006 7:37 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] book

Re: [Flashcoders] PSP XML tests

2006-10-09 Thread eric dolecki
I think you have to use full paths on the PSP for the XML load. check the archives On 10/9/06, Zárate [EMAIL PROTECTED] wrote: Hi all, I'm starting testing Flash content on the PSP and I'm not getting quite far :( I'm trying to read a really simple XML file, but it seems it doesn't work

Re: [Flashcoders] PSP XML tests

2006-10-09 Thread Zárate
Hi, Thanks it seems to work now. However, I was expecting the onLoad method to fire with false for the success parameter. I've searched the archives for PSP and haven't found to much information about it after April (release of the 2.7 firmware). But thanks again :) Cheers, Juan On 10/9/06,

[Flashcoders] Accessibility: TextField Reading Twice

2006-10-09 Thread JerBrand
Desperate for help, have been fighting this issue for a week: I've been playing with a set of components for non-technical users: Basic idea is to provide some simple full page components that are accessible without any real effort on the user building the fla. So, they're finished and have

RE: [Flashcoders] Error check for parseXML()

2006-10-09 Thread Mike Keesey
Good point. One optional tweak: var xml:XML = new XML(); xml.ignoreWhite = true; xml.parseXML(someTextVar); xml.onLoad = function(success:Boolean):Void { if (this.status == 0) { trace(Success!); } else { trace(Error in XML! Code: + this.status);

[Flashcoders] dynamic string color switching

2006-10-09 Thread Doug Tangren
I was wondering if if is possible to dynamically change the color of parts of a string within a single text field. I know how to set the color of the whole text by applying a new Text format object to a text field but I was wondering how I might apply a different color to a substring of

RE: [Flashcoders] dynamic string color switching

2006-10-09 Thread Steven Sacks | BLITZ
I was wondering if if is possible to dynamically change the color of parts of a string within a single text field. You can do it with an HTML textfield. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] pattern fever: composing dynamic object and knowing them remotely

2006-10-09 Thread Matt Garland
I have a design problem: A site I'm working up has a shell/module structure. Each module composes an instance of a Navigation class. This instance mixes and matches various navigation functionality. Some modules might have last/next methods, some might have last/next and direct goto

Re: [Flashcoders] dynamic string color switching

2006-10-09 Thread Michael Bedar
If you want to use TextFormat, you can apply a textformat to a text selection. A quick way to do this without creating a bunch of new textformat objects is to copy the current format into a temp var using tf.getTextFormat(), change the color, and the apply it to the selection with

[Flashcoders] Newbie help with dynamic variable assignment

2006-10-09 Thread Deanna Schneider
Hi All, I'm working off of something that someone else coded, and trying to make it read some xml data (it was just reading a static include). Anyway, it loops through 72 county nodes. I've got this part working: //loop through and set all the county vars var countyNodeLength =

Re: [Flashcoders] dynamic string color switching

2006-10-09 Thread Doug Tangren
Thank you. This exactly what I was looking for. I didn't know you could pass indexes as arguments to the setTextFormat method. Doug Tangren [EMAIL PROTECTED] On Oct 9, 2006, at 2:33 PM, Michael Bedar wrote: If you want to use TextFormat, you can apply a textformat to a text selection.

Re: [Flashcoders] PSP XML tests

2006-10-09 Thread John Giotta
Juan, Yes you will notice alot has been laxed on the PSP Flash Player. I spent a few weeks testing, but I'm slowly discovering Mobile Flash is just not robust enough (again). ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

Re: [Flashcoders] OT: sold laptop, need to release Studio 8?

2006-10-09 Thread John Dowdell
Count Schemula wrote: I just sold my laptop. I can't really find how to release my serial number for Studio 8 before I reformat the drive. Does this still have to be done? I'm buying another laptop, so, I want intall on that with no hassles. Sorry for my delay; thanks to Ramses for the link.

[Flashcoders] Screenweaver 3 and FlashDevelop

2006-10-09 Thread Jorge Antonio Diaz Gutierrez
Hi there. I'm working with Screenweaver and Flash Develop, making some tests and I would like to know hot to call relative paths from my .exe Projector, when I'm using swFile.saveString() method, for example. Thanks ___

Re: [Flashcoders] OT: sold laptop, need to release Studio 8?

2006-10-09 Thread Count Schemula
I rekon. I just don't see Transfer this License under the help menu. I sold the laptop. I just wiped the hard drive and re-installed Windows. So it's moot now. Seems like I had to call Macromedia once before though, back when I had MX2004 stuff. I do reformat my computers every once in a

Re: [Flashcoders] PSP XML tests

2006-10-09 Thread Zárate
Well, that really amazes me. I mean, I work with mobile devices (mostly PDAs with Windows Mobile 5) almost everyday and I have to say that I haven't found these kind of things... I'm trying to find information about who made that Flash player for the PSP. Is it and Adobe official product? If so,

Re: [Flashcoders] PSP XML tests

2006-10-09 Thread Zárate
Sorry, I was trying to say that if it is an official Flash player where's the compile once, run everywhere? It seems we're not talking about a bug, but about someone decided to not implement the whole API, isn't it? Maybe it's not an Adobe product, but then they should take care about a piece of

Re: [Flashcoders] pattern fever: composing dynamic object and knowing them remotely

2006-10-09 Thread Reuben Stanton
Why not use a initialization NavigationSettings class for your Navigation that has its own methods that can be interrogated by your controller? ie - new Navigation(new NavigationSettings(params)); The controller bar could access the NavigationSettings instance to find out its necessary

[Flashcoders] Flash transparent on top of Windows Media Player

2006-10-09 Thread Mick G
Does anyone know if there is a way to embed flash transparent (wmode=transparent) on a layer above an embedded Windows Media Player active-x control? So it's like this... --Flash (wmode transparency) ---Windows Media play playing video -HTML page I've made a demo to achieve this and the

RE: [Flashcoders] Accessibility: TextField Reading Twice

2006-10-09 Thread Andrew Kirkpatrick
Interesting. What version of JAWS are you testing with? What version of the Flash player? Can you post a link? The FLA? Thanks, AWK -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of JerBrand Sent: Monday, October 09, 2006 12:09 PM To:

[Flashcoders] Flash transparent on top of Windows Media Player

2006-10-09 Thread Bjorn Schultheiss
Is it possible to ditch the windows media player inplace of flash video?, Would make life easier. An answer to your question... I cant provide one :) Regards, Bjorn Schultheiss -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mick G Sent: Tuesday,

RE: [Flashcoders] Flash transparent on top of Windows Media Player

2006-10-09 Thread Steven Sacks | BLITZ
It's easy to get the impression that the video is playing inside the the browser window but it isn't. The ActiveX control in the browser talks to Windows and tells it where to draw the video, which actually plays above the browser window. When you move the browser window around, it's telling the

[Flashcoders] Iterate over all movieclips in a timeline

2006-10-09 Thread Haikal Saadh
Hello. I feel a bit boneheaded asking this... is there any way of iterating over all movie clips in a timeline? At the moment, I just have a hard coded array that contains references to the clips I need. This isn't a big problem, but that just means one more thing to edit each time I add or

RE: [Flashcoders] Iterate over all movieclips in a timeline

2006-10-09 Thread Steven Sacks | BLITZ
I feel a bit boneheaded asking this... is there any way of iterating over all movie clips in a timeline? for (var a in this) { if (this[a] instanceof MovieClip) { trace(this[a]._name); } } BLITZ | Steven Sacks - 310-551-0200 x209

Re: [Flashcoders] Iterate over all movieclips in a timeline

2006-10-09 Thread Johannes Nel
this will only do the current frame, you cannot do the entire timeline (well you can in jsfl :) ) On 10/9/06, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote: I feel a bit boneheaded asking this... is there any way of iterating over all movie clips in a timeline? for (var a in this) {

Re: [Flashcoders] Iterate over all movieclips in a timeline

2006-10-09 Thread Haikal Saadh
Ah, thanks, that's exactly what I needed. Current frame only is fine, as it's only going to do some initialisation at frame 1 anyway. Steven Sacks | BLITZ wrote: I feel a bit boneheaded asking this... is there any way of iterating over all movie clips in a timeline? for (var a in

[Flashcoders] Iterate over all movieclips in a timeline

2006-10-09 Thread Bjorn Schultheiss
Pillage through and get nested mc's function pillage(mc) { for (var a in mc) { if (mc[a] instanceof MovieClip) { trace(mc[a]._name); pillage(mc[a]); } } } pillage(_root) Regards, Bjorn

[Flashcoders] re: pattern fever

2006-10-09 Thread Matt Garland
Thanks Reuben. Yes, I think I'll do what you suggest: just parameterize a full-dress Navigation with a custom object, then have the controller retrieve it. It will be make it the Navigation difficult to extend and write, but I see no alternative for now...except maybe using a dynamic

Re: [Flashcoders] Newbie help with dynamic variable assignment

2006-10-09 Thread Radley Marx
I couldn't follow your logic exactly, but I figure I could show you some basic looping tricks. Hope this helps... : var linkArray:Array = new Array(); for (var i = 0; i countyNodes.length; i++) { linkArray[i] = new Array(); // nested array linkArray[i].thisCounty =