[Flashcoders] Re: AS3 XML Namespaces Hell

2008-03-15 Thread Jason Van Cleave
Ok, I have it at least working with the below code through a roundabout way and would love to hear a better one... private function onXMLLoaded(e:Event):void { trace(this, onXMLLoaded); xml = new XML(e.target.data); var

Re: [Flashcoders] to mac or not to mac

2008-03-15 Thread Paul Andrews
I disagree - many people are considering using a Mac for flash development, so it's far from useless. Useless to you doesn't mean useless to others. Paul - Original Message - From: Keith [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Saturday, March

Re: [Flashcoders] AS3 XML Namespaces Hell

2008-03-15 Thread Muzak
Set the namespace of the loaded xml as default: function loaderCompleteHandler(evt:Event):void { var data:XML = new XML(evt.currentTarget.data); trace(data.toXMLString()); trace(data.namespace()); default xml namespace = data.namespace(); trace(data.photos.item); } - Original Message

Re: [Flashcoders] to mac or not to mac

2008-03-15 Thread AJ Canepa
I develop with FlexBuilder and Flash CS3 on the Mac and love it. I tried subclipse though and wasn't a fan. I prefer managing my source control separately with SmartSVN which gives more control and options. AJ Canepa Runtime Logic www.runtimelogic.com On Mar 14, 2008, at 4:10 PM, Muzak

[Flashcoders] Source Control [WAS] to mac or not to mac

2008-03-15 Thread Muzak
Changed the subject.. to not completly hijack the thread ;-) There's a new(er) plugin, called subversive that might be worth looking into. I haven't tried it yet, but heard good things about it: http://www.polarion.org/index.php?page=overviewproject=subversive

[Flashcoders] need:: Flex 3 AS3 // tutorials, links, book recs.

2008-03-15 Thread artur
oh wise list, i have some off-shore flex developers that are looking to upgrade their capabilities from Flex 2+AS2 -- Flex 3+AS3. any bookmarks, blogs, tutorials, and books recs you can give my would be incredibly appreciated. * if its in spanish..even better ;-) thanks! -- *artur :.*

Re: [Flashcoders] need:: Flex 3 AS3 // tutorials, links, book recs.

2008-03-15 Thread ekameleon
Hello :) you can try my opensource Framework with this AS2/AS3/SSAS version (full compatible) http://code.google.com/p/vegas/ My framework contains extensions libraries to develop application with Flex or Flash CS3 with AS3 or AS2 and MTASC and Flash Media Server. You can find in the google

Re: [Flashcoders] need:: Flex 3 AS3 // tutorials, links, book recs.

2008-03-15 Thread Paul Andrews
- Original Message - From: artur [EMAIL PROTECTED] To: flashcoders flashcoders@chattyfig.figleaf.com Sent: Saturday, March 15, 2008 1:36 PM Subject: [Flashcoders] need:: Flex 3 AS3 // tutorials, links, book recs. oh wise list, i have some off-shore flex developers that are looking

[Flashcoders] AttachMovieClip VS addChild

2008-03-15 Thread Omar Fouad
In an AS3 Project I have a MovieClip in the Library which class (identifier) is DataCard. My project fetches data from a database through a PHP File, and retruns data in an Array. Now in this project i wanted to do exactly what I used to do in AS2: for(i = 0; idataLength; i++) { var MC =

Re: [Flashcoders] AttachMovieClip VS addChild

2008-03-15 Thread Rich Shupe
Your code does what you're asking but I suspect you're having trouble with the positioning, or something similar. Since DC has no initial y, all instances will end up at 30, using the code below. Here's an adaptation that shows two visual results: position and trace, using the instance name

Re: [Flashcoders] AttachMovieClip VS addChild

2008-03-15 Thread Omar Fouad
Thanks DUDE!!! The issue was in DC.name = dataCard + i; Didn't know the name property. Thanks On Sat, Mar 15, 2008 at 7:46 PM, Rich Shupe [EMAIL PROTECTED] wrote: Your code does what you're asking but I suspect you're having trouble with the positioning, or something similar. Since DC has

[Flashcoders] ScrollBar Class issues

2008-03-15 Thread Allandt Bik-Elliott (Receptacle)
hi all i'm trying to implement a scrollbar using the built-in fl.controls.ScrollBar class but i'm not having much luck i can get the scrollbar to react to a sprite but there's no built in method that will let the sprite react to the scrollbar (i've tried scrollTarget and scrollTargetName

Re: [Flashcoders] Source Control [WAS] to mac or not to mac

2008-03-15 Thread Jon Bradley
On Mar 15, 2008, at 6:36 AM, Muzak wrote: There's a new(er) plugin, called subversive that might be worth looking into. I haven't tried it yet, but heard good things about it: http://www.polarion.org/index.php?page=overviewproject=subversive

Re: [Flashcoders] Source Control [WAS] to mac or not to mac

2008-03-15 Thread Muzak
And on a similar note, I use Assembla as an online repository: http://www.assembla.com/ It's free (there's a paying version with some extra's) Setting up a projects is a breeze. Includes TRAC, Wiki, SVN, email notificiations, and more.. Whenever I work on a project with other freelancers (who,

Re: [Flashcoders] ScrollBar Class issues

2008-03-15 Thread Kenneth Kawamoto
I'd use ScrollPane for this scenario - actually I've never encountered a situation ScrollBar on its own is required...! Kenneth Kawamoto http://www.materiaprima.co.uk/ Allandt Bik-Elliott (Receptacle) wrote: hi all i'm trying to implement a scrollbar using the built-in fl.controls.ScrollBar

Re: [Flashcoders] Arabic and other character sets text entry

2008-03-15 Thread Piers Cowburn
Hi Karina, Yeah I was going to try posting on Flash Tiger but it doesn't seem my join request has been authorised yet. Thanks very much for the reply, that looks really interesting! I'll have a play around with it. Thanks again, Piers [EMAIL PROTECTED] On 14 Mar 2008, at 19:10, Karina

Re: [Flashcoders] Source Control [WAS] to mac or not to mac

2008-03-15 Thread Hans Wichman
Hi Muzak, i thought trac already offered a wiki, svn, emailnotifications and more, could you spare some details on what assembla offers over trac? greetz JC On Sat, Mar 15, 2008 at 8:56 PM, Muzak [EMAIL PROTECTED] wrote: And on a similar note, I use Assembla as an online repository:

Re: [Flashcoders] ScrollBar Class issues

2008-03-15 Thread Allandt Bik-Elliott (Receptacle)
i want to have the scrollbar as a separate element on the page and not along the entire bottom of the scrolling area - i don't think you can do this with the scroll pane On 15 Mar 2008, at 20:35, Kenneth Kawamoto wrote: I'd use ScrollPane for this scenario - actually I've never

Re: [Flashcoders] ScrollBar Class issues

2008-03-15 Thread Kenneth Kawamoto
Then I'd create my own - should not be too complicated ;) Kenneth Kawamoto http://www.materiaprima.co.uk/ Allandt Bik-Elliott (Receptacle) wrote: i want to have the scrollbar as a separate element on the page and not along the entire bottom of the scrolling area - i don't think you can do

Re: [Flashcoders] ScrollBar Class issues

2008-03-15 Thread Kenneth Kawamoto
...or listen to the scroll event and move the Sprite according to the scrollPosition. Kenneth Kawamoto http://www.materiaprima.co.uk/ Allandt Bik-Elliott (Receptacle) wrote: i want to have the scrollbar as a separate element on the page and not along the entire bottom of the scrolling area -

Re: [Flashcoders] Source Control [WAS] to mac or not to mac

2008-03-15 Thread Muzak
It allows you to setup projects (workspaces) and administer them easily. Assembla uses Trac ;-) So whatever comes with Trac, you get with Assembla and you can enable/disble features on a project basis. You can grant other developers access to your projects (again per project), which makes it

Re: [Flashcoders] AS3 XML Namespaces Hell

2008-03-15 Thread Jason Van Cleave
Thanks Muzak for looking. However that isn't working for me. I don't get anything after trace(data.namespace()); On Sat, Mar 15, 2008 at 5:38 AM, Muzak [EMAIL PROTECTED] wrote: Set the namespace of the loaded xml as default: function loaderCompleteHandler(evt:Event):void { var data:XML =

Re: [Flashcoders] Source Control [WAS] to mac or not to mac

2008-03-15 Thread Jason Van Cleave
My God. I can even commit my deploy folder with Subversive. This has been killing me for months. On Sat, Mar 15, 2008 at 6:23 PM, Muzak [EMAIL PROTECTED] wrote: It allows you to setup projects (workspaces) and administer them easily. Assembla uses Trac ;-) So whatever comes with Trac, you