RE: [Flashcoders] Integrating help with mac adobe air app

2011-10-16 Thread Sumeet kumar
Hi Karl Thanks a lot for the help. But I am looking for the guidance in some other direction. I want to integrate help with mac. The link given below points me towards integrating menus with mac. Regards Sumeet Kumar -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [ma

Re: [Flashcoders] E4X XML manipulation

2011-10-16 Thread Paul Andrews
On 16/10/2011 14:16, Kenneth Kawamoto wrote: It's getting rather interesting :D var xml:XML = ; for each (var row:XML in xml.row){ if(row.@id != row.@parent){ xml..row.(@id == row.@parent).appendChild(row.copy()); delete xml.row.(@id == row.@id)[0]; } } trac

Re: [Flashcoders] Integrating help with mac adobe air app

2011-10-16 Thread Karl DeSaulniers
Hi Kumar, This isn't flash, but you may be able to roll your own with the idea. Has a step-by-step. http://webdesignerwall.com/tutorials/css3-dropdown-menu http://www.webappers.com/2010/03/02/mac-like-multi-level-dropdown-menu-with-css3/ and then I found this.. http://flash-menu-templates.c

Re: [Flashcoders] E4X XML manipulation

2011-10-16 Thread Kenneth Kawamoto
It's getting rather interesting :D var xml:XML = ; for each (var row:XML in xml.row){ if(row

[Flashcoders] Integrating help with mac adobe air app

2011-10-16 Thread Sumeet kumar
Hi All, I want to create help for mac for my adobe air app(I want it to look like the mac help). But I am not able to find able anything related to this. Most of the apps have given links to the web. Have anyone done this. Any guidance in this regard would be great. Thanks in advance Su

Re: [Flashcoders] E4X XML manipulation

2011-10-16 Thread Paul Andrews
On 16/10/2011 13:01, Paul Andrews wrote: On 16/10/2011 10:06, Kenneth Kawamoto wrote: Here's one way: var xml:XML = ; var ids:Array = ["a", "d"]; for each (var s:String in ids){ xml.row.(@id == s).children = xml.row.(@parent == s && @id != s); while(xml.row.(@parent == s && @id

Re: [Flashcoders] E4X XML manipulation

2011-10-16 Thread Paul Andrews
On 16/10/2011 10:06, Kenneth Kawamoto wrote: Here's one way: var xml:XML = ; var ids:Array = ["a", "d"]; for each (var s:String in ids){ xml.row.(@id == s).children = xml.row.(@parent == s && @id != s); while(xml.row.(@parent == s && @id != s).length()) delete xml.row.(@parent

Re: [Flashcoders] E4X XML manipulation

2011-10-16 Thread Kenneth Kawamoto
Here's one way: var xml:XML = ; var ids:Array = ["a", "d"]; for each (var s:St