[Flashcoders] Actionscript 3.0 Coding Niggles

2009-03-08 Thread Ali Hitch
Hey guys, Having problems on the coding side of what I thought would be a very simple task. The task is: I am creating a navigation bar for a website. On the navigation bar, when the user does a mouse over on a certain area of the bar (invisible button), a specified movie will play once and

Re: [Flashcoders] Actionscript 3.0 Coding Niggles

2009-03-08 Thread Joel Stransky
is there a stop() on frame 1 of text_mc? On Sun, Mar 8, 2009 at 3:29 PM, Ali Hitch hitchy@gmail.com wrote: Hey guys, Having problems on the coding side of what I thought would be a very simple task. The task is: I am creating a navigation bar for a website. On the navigation bar,

Re: [Flashcoders] Lint for ActionScript?

2009-03-08 Thread Meinte van't Kruis
flex develop has a bit more of the 'you did something wrong' warnings before compiling. But frankly, I find it just plain annoying. I love hitting ctrl-s every few seconds, and after each hit flexdev will check and find new errors of unfinished code lines. On Fri, Mar 6, 2009 at 7:13 PM, Todd

Re: [Flashcoders] Actionscript 3.0 Coding Niggles

2009-03-08 Thread Ashim D'Silva
just put a stop() on the last frame (when the text is big) 2009/3/9 Joel Stransky stranskydes...@gmail.com is there a stop() on frame 1 of text_mc? On Sun, Mar 8, 2009 at 3:29 PM, Ali Hitch hitchy@gmail.com wrote: Hey guys, Having problems on the coding side of what I thought would

Re: [Flashcoders] find and delete XML nodes

2009-03-08 Thread Muzak
One way to do it is to look for the child elements which id is *not* b. Then replace the original child elements with the new ones, or in other words, set the remaining elements as the children of the parent: var s:String = 'parentchild id=a /child id=b /child id=a /child id=b //parent'; var

RE: [Flashcoders] find and delete XML nodes

2009-03-08 Thread liutoday
Date: Sun, 8 Mar 2009 23:38:17 -0400 From: j...@stranskydesign.com To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] find and delete XML nodes I have some xml nodes where I need to evaluate their attributes and delete them if they meet certain criteria. It's probably simple