Re: [Flashcoders] @#$% New iPhone Developer Agreeme nt Bans the Use of Adobe’s Flash-to-iPhone Compiler

2010-04-12 Thread p...@ipauland.com
Nobody can build a business on the basis of software that contravenes the licence agreement. It would be folly to do so. I expect (but don't know) that Adobe will pull the iPhone cross-compilation system from CS5.   On 12 April 2010 at 11:43 Karl DeSaulniers k...@designdrumm.com wrote: For

RE: [Flashcoders] @#$% New iPhone Developer Agreeme nt Bans the Use of Adobe’s Flash-to-iPhone Co mpiler

2010-04-12 Thread p...@ipauland.com
employees only) -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of p...@ipauland.com Sent: Monday, April 12, 2010 6:05 AM To: Flash Coders List Subject: Re: [Flashcoders] @#$% New iPhone Developer Agreement

[Flashcoders] AS2 what am I missing?

2010-04-06 Thread p...@ipauland.com
I am working back down memory lane in AS2.   I have a layer with a MovieClip A and some others below (actually it's pixelwits flipping book).   I make A visible and it obscures everything below. Perfect..  except that some movieclips with release handlers on the layers below are operating and I

Re: [Flashcoders] AS2 what am I missing?

2010-04-06 Thread p...@ipauland.com
OK, I've been avoiding doing too much with AS2 recently.   It seems that if one MC (ClipA) is over another (ClipB, completely obscuring it), with AS2 the hidden MC (ClipB) will respond to onRelease, but in AS3 (as expected) it does not.   Is this right?   Paul

RE: [Flashcoders] AS2 what am I missing?

2010-04-06 Thread p...@ipauland.com
- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of p...@ipauland.com Sent: Tuesday, April 06, 2010 8:15 AM To: Flash Coders List Subject: [Flashcoders] AS2 what am I missing? I am working back down memory lane in AS2.   I have

RE: [Flashcoders] Recursive and e:Event

2010-03-29 Thread p...@ipauland.com
Far better to separate the event handling from the recursion altogether.   In the event handler get the XML, then pass it to the recursive routine. Don't pass an event to the recursive routine, pass the data/XML.   Generally with recursive code, when you run out of arguments to pass, you stop

Re: [Flashcoders] Process issue

2010-03-29 Thread p...@ipauland.com
Generally..     var myXML:XML = XML(something);   buildXML(myXML); // now all XML is processed  callotherfunction();       function buildXML(xml:XML) { .. if (something){       buidlXML(someXML); }       On 29 March 2010 at 14:13 Lehr, Theodore ted_l...@federal.dell.com wrote: I have a

[Flashcoders] Bezier curve arrows

2010-03-16 Thread p...@ipauland.com
I was recently asked if I could add some arrowheads to some actionscript generated curves. I initially thought Triangle pointing to end point, and that would be a great solution. I can place a MC at the end of the curve, but how can I get the right angle to point it to?   Paul