Re: [Flashcoders] Conversion to Flash 8 renders MP3 player useless

2006-05-05 Thread Duncan Reid
Hi Jonathan, I just tested it in player 7.0.19.0 and it seemed to work for me, i originally tested it with 8.5.0.212. There is an initial buffering but once it starts to play it seems to hold although i was getting pretty low transfer rates from 8 - 18 kb. Again not sure if it would help but yo

[Flashcoders] OS PSP RSS Reader

2006-05-05 Thread John Giotta
I whipped up a RSS Reader for the PSP Flash Player in just 2 hours. It's open source so it's free anyone. One thing I've notice is that the performance for parsing an XML document is super slow and surprisingly XFactorStudios did the job quicker with my first integration. This is actually by firs

Re: [Flashcoders] Conversion to Flash 8 renders MP3 player useless

2006-05-05 Thread Jonathan Berry
Thanks for the e-mail, Duncan. We found that we had to have our users upgrade to Flash 8 player. We looked the network events and found that Player 7 was not receiving the response from the server as quickly. We tried to increase a setTimeout that called the connecting function from 4 seconds to 1

[Flashcoders] Expert Flash Developers

2006-05-05 Thread [EMAIL PROTECTED]
Dear Flash Developers, We would like to introduce ourselves as MAIASYS., with our headquarters is in Broad St, New York, working mainly in Flash based developments. Our Indian offices are situated in Pune (SPINFOCITY), and a small presence in Chandigarh. we are in look out for well experienced

Re: [Flashcoders] Solved: XRAY breaks my movie

2006-05-05 Thread John Grden
yes, chris speaks the truth ;) tools>recursive searches? should be unchecked to do on demand crawling with the treeview On 5/4/06, Chris Allen <[EMAIL PROTECTED]> wrote: John turned recursive searches off by default now on the latest version of Xray. Seems like nobody liked this feature as it

Re: [Flashcoders] disable datagrid

2006-05-05 Thread Rodrigo Guerra
hi eric, worked like a charm, i could swear that i had tried this and didn' worked, never mind. it's really hard to belive that the flash docs have a error like this. thank you - Original Message - From: "eric dolecki" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, M

Re: [Flashcoders] disable datagrid

2006-05-05 Thread Ryan Matsikas
RTFM? Sorry, but damn.. On 5/5/06, eric dolecki <[EMAIL PROTECTED]> wrote: did you try .enabled = false; ? Never tried to disable a dg before... On 5/5/06, Rodrigo Guerra <[EMAIL PROTECTED]> wrote: > > hi > i´m trying to disabe a datagrid items > > (from flash help) > my_dg.setSize(140, 100);

Re: [Flashcoders] disable datagrid

2006-05-05 Thread eric dolecki
did you try .enabled = false; ? Never tried to disable a dg before... On 5/5/06, Rodrigo Guerra <[EMAIL PROTECTED]> wrote: hi i´m trying to disabe a datagrid items (from flash help) my_dg.setSize(140, 100); // Set up sample data. var myDP_array:Array = new Array(); myDP_array.push({name:"Clar

[Flashcoders] disable datagrid

2006-05-05 Thread Rodrigo Guerra
hi i´m trying to disabe a datagrid items (from flash help) my_dg.setSize(140, 100); // Set up sample data. var myDP_array:Array = new Array(); myDP_array.push({name:"Clark", score:3135}); myDP_array.push({name:"Bruce", score:403}); myDP_array.push({name:"Peter", score:25}); my_dg.dataProvider =

Re: [Flashcoders] newbie: nested clips and LoadMovie

2006-05-05 Thread Marcelo de Moraes Serpa
Francesco: I think that, by creating a new property on movieclip "a" and referencing it to the b_copy_child (which in turn references "copy" in movieclip "b") would only allow you to control the "copy" movieclip located into movieclip "b". I don´t have flash here so I can´t test anything and I´m

Re: [Flashcoders] XML Parsing

2006-05-05 Thread Jason Lutes
> Look at Flasm (http://www.nowrap.de/flasm.html) > > In this long file, see "scriptLimits tag" sub-section. Here is some code that seems to work fine (a file of 4600+ XML nodes, many of which nest ~10 nodes/levels deep, processed in under 0.65 seconds). http://www.lutesonline.com/flashCode/xmlPa

Re: [Flashcoders] Re: Newbie + New subject: Vista

2006-05-05 Thread John Dowdell
Audry Taylor wrote: So is anyone here worried about what the hyper-secure Windows Vista might do to Flash accessibility for the average user, especially since Microsoft hates Adobe? The companies work together in some areas, compete in some areas, and are in totally different businesses in mo

Re: [Flashcoders] Conversion to Flash 8 renders MP3 player useless

2006-05-05 Thread Duncan Reid
Hi Jonathan, I plugged this into the F8 IDE and set the publish setting to 7 / as2 and it seemed to work for me. The only thing that i can see in your code that stands out is the space after the url but i don't think that really matters much as it still seems to work... radio.loadSound("http://

Re: [Flashcoders] newbie: nested clips and LoadMovie

2006-05-05 Thread August Gresens
Francesco - I'll give that a try. It actually occurred to me, but I didn't try it because I wasn't sure how the depth would be handled and what issues would be associated with having a single clip instance be the child of two parents. (When you move "b", does it also move in "a", even if "a" is no

Re: [Flashcoders] Focus Highlight with Components

2006-05-05 Thread elibol
I'm betting whatever function calls onRollOver has a function body like so: function(){ doScrollBarOverEffect(); maybeDoSomeOtherStuff(); highlightDataGrid(); // may not have such a descriptive name, but either a function or some procedural code would cause it. } On 5/5/06, elibol <[EMAIL PROTEC

Re: [Flashcoders] Focus Highlight with Components

2006-05-05 Thread elibol
Oh sorry, I don't have much experience with the v2 data grid. I think though you can pinpoint what is happening by overriding the scroll bars onRollOver event. Maybe if you could examine the source you would find out what the onRollOver may be delegated to. You might be able to see which event ca

Re: [Flashcoders] newbie: nested clips and LoadMovie

2006-05-05 Thread Francesco
Provided you know the child-to-copy instance name, that's a workaround: say you have 2 mcs, one (a) created in your project and one (b) loaded externally. say you know the desired b-child instance name (b_child): //create a copy of the desired child var b_copy_child:MovieClip = b_child.duplic

Re: [Flashcoders] Focus Highlight with Components

2006-05-05 Thread Dimitrios Bendilas
John, I get rid of the green halo border with this: _root._focusrect = _global.useFocusRect = false; It has effect on every element on the flash movie. I hope this will help you. Regards, Dimitrios Bendilas - Original Message - From: "John Giotta" <[EMAIL PROTECTED]> To: "Flashcoder

Re: [Flashcoders] Q:del.icio.us API

2006-05-05 Thread elibol
Right on about standalone. I was thinking you could work the auth into the url, http://username:[EMAIL PROTECTED]/api/posts/get?tag=humor M. On 5/5/06, Mike Chambers <[EMAIL PROTECTED]> wrote: Actually, that is a little different. That would work if running the browser, as the browser would

Re: [Flashcoders] automatic datagrid?

2006-05-05 Thread John Giotta
You could also do: DataGrid.dispatchEvent({type:"change"}); But this is a hack... ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you

Re: [Flashcoders] automatic datagrid?

2006-05-05 Thread John Giotta
DataGrid.selectedIndex = x; Will select the row 'x'. On 5/5/06, Éric Thibault <[EMAIL PROTECTED]> wrote: Is there a way to select without any user interaction the first line of data inside a datagrid component and thus trigger the change event (highlight, code on change event,...)? Like the s

Re: [Flashcoders] Focus Highlight with Components

2006-05-05 Thread John Giotta
Thanks elibol, but not it. You'd have to see it for yourself if I'm not making any sense. I have a Datagrid in on SWF and another SWF is loading it. Whenever the ScrollBar of the Datagrid is focused, a light green halo forms around the entire Datagrid. That's what I want gone. __

Re: [Flashcoders] newbie: nested clips and LoadMovie

2006-05-05 Thread Marcelo de Moraes Serpa
Hello August, These all are common doubt indeed, they also made me lots of headaches (and still do) when I started developing on the flash platform. The problem is that the way the player works is not obvious (for me at least). You have to do tricks such as import a clip from the externally load

Re: [Flashcoders] Q:del.icio.us API

2006-05-05 Thread Mike Britton
This technique is a bit sketchy though. True, and their API isn't finalized. There are few things more soul-shattering than having your XML-parsing wrapper rendered obsolete without warning. Mike On 5/5/06, elibol <[EMAIL PROTECTED]> wrote: It can be done with AS2. The easiest way would b

Re: [Flashcoders] Trouble with Downloading Flash Player

2006-05-05 Thread Mark Winterhalder
On 5/5/06, Asai <[EMAIL PROTECTED]> wrote: Dang, I can't even get it to download. It just sits there. But the thing is that even when I go to the actual download Flash Player page at Adobe, I get the can't find server error message. So there's some problem accessing the server from where I'm at

Re: [Flashcoders] Trouble with Downloading Flash Player

2006-05-05 Thread Asai
Dang, I can't even get it to download. It just sits there. But the thing is that even when I go to the actual download Flash Player page at Adobe, I get the can't find server error message. So there's some problem accessing the server from where I'm at. At 09:47 AM 5/5/2006, you wrote: i ju

Re: [Flashcoders] Trouble with Downloading Flash Player

2006-05-05 Thread Geoff Stearns
i just tested it, and the download part worked fine, but when the install was finished, it didn't redirect me back to the original page... they said they were still working on that part on wednesday, so hopefully it will be all fixed soon. On May 5, 2006, at 12:19 PM, Asai wrote: It seems

Re: [Flashcoders] Q:del.icio.us API

2006-05-05 Thread Mike Chambers
Actually, that is a little different. That would work if running the browser, as the browser would handle the HTTP auth (it would pop up a user / pass dialog). However, running in standalone would not work. You would have to manually write the appropriate headers in the request. mike chamber

[Flashcoders] automatic datagrid?

2006-05-05 Thread Éric Thibault
Is there a way to select without any user interaction the first line of data inside a datagrid component and thus trigger the change event (highlight, code on change event,...)? Like the selectedNode of the tree component... Thanks a million --

Re: [Flashcoders] Q:del.icio.us API

2006-05-05 Thread elibol
Sorry to answer a question that was asked of someone else. On 5/5/06, elibol <[EMAIL PROTECTED]> wrote: It can be done with AS2. The easiest way would be to build an API around the query strings. _xml.load( http://del.icio.us/api/posts/get?tag=humor); This technique is a bit sketchy though.

Re: [Flashcoders] Q:del.icio.us API

2006-05-05 Thread elibol
It can be done with AS2. The easiest way would be to build an API around the query strings. _xml.load(http://del.icio.us/api/posts/get?tag=humor); This technique is a bit sketchy though. M. On 5/4/06, Mike Britton <[EMAIL PROTECTED]> wrote: Mike, can it be done with AS2? Mike Britton On

Re: [Flashcoders] Focus Highlight with Components

2006-05-05 Thread elibol
I think what you want is _focusrect. It's a MovieClip property, so you would have to target the movieclip instances that are recieving focus. myMC._focusrect = false; M. On 5/3/06, John Giotta <[EMAIL PROTECTED]> wrote: > datagrid.rollOverColor = yourBackgroundColor; > datagrid.textRollOverC

Re: [Flashcoders] Trouble with Downloading Flash Player

2006-05-05 Thread Asai
It seems like indigestion. I still can't connect. This can't be internet wide can it? Perhaps its only my neck of the woods, who at Adobe can I report this to? At 09:11 AM 5/5/2006, you wrote: there were some hiccups last monday / tuesday when they switched to the adobe server, but they wer

Re: [Flashcoders] Q:del.icio.us API

2006-05-05 Thread Mike Chambers
Well, wait no more. We have had the Flex 2 Beta for Mac for a month or two now: http://www.macromedia.com/go/labs_flex2_downloads Just click the link on that page for Flex SDK 2.0 mike chambers [EMAIL PROTECTED] Troy Rollins wrote: On May 4, 2006, at 1:01 PM, Mike Chambers wrote: > Also

Re: [Flashcoders] Trouble with Downloading Flash Player

2006-05-05 Thread Geoff Stearns
there were some hiccups last monday / tuesday when they switched to the adobe server, but they were all fixed up as of wednesday i think. you could use this page as another test: http://blog.deconcept.com/swfobject/expressinstall.html On May 5, 2006, at 12:02 PM, Asai wrote: Is anyone ha

[Flashcoders] Trouble with Downloading Flash Player

2006-05-05 Thread Asai
Is anyone having trouble downloading the Flash Player right now? I'm testing the Express Install Feature but every time I try to go to the fpdownload.macromedia.com page, I get a server not found message. My paths are correct I know, because once I was able to successfully test last night,

Re: [Flashcoders] newbie: nested clips and LoadMovie

2006-05-05 Thread August Gresens
Thanks much for your previous responses, very helpful. One more question - how can I duplicate or attach a child clip of one clip into another clip? For example, if I have two clips on the timeline, can I somehow copy the first child of one clip into another? DuplicateMovieClip does not seem to

Re: [Flashcoders] XML Parsing

2006-05-05 Thread PR Durand
Hi Mars, last time I had such a big xml to parse and got an error while the loop blocked the flash movie, I just changed my 'for' loop with an onEnterFrame based method. this allowed me at same time to display a counter to inform the user about the progression of my parsing process. maybe not

RE: [Flashcoders] Has an SWF file any influence over the filesystem??????

2006-05-05 Thread Tom Lee
Using Flash 8's FileReference class (flash.net.FileReference), you can get a reference to a local file and upload it to a server. However, Flash cannot access the bytes of the file due to security restrictions. If you have a Flash movie in the "remote" sandbox (the SWF file is hosted on the inter

Re: [Flashcoders] newbie: nested clips and LoadMovie

2006-05-05 Thread Francesco
Really don't know if is there a way to load a .fla asset (such as a Library) into an swf.. but sure you can use an external swf as a content library, as long as all library items (children mcs): - can be referenced by instance name (which is to be set on the external .fla) - are not referenced

Re: [FlashCoders] Build Flash8 installer

2006-05-05 Thread Dimitrios Bendilas
Thank you guys. Dimitrios Bendilas - Original Message - From: "John Dowdell" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Thursday, May 04, 2006 9:46 PM Subject: Re: [FlashCoders] Build Flash8 installer Dimitrios Bendilas wrote: I need to distribute the Player along wi

Re: [Flashcoders] Inverting colours of the menu

2006-05-05 Thread Zeh Fernando
Check setTransform on the help docs. But briefly, to invert a movieclip (make it 'negative', you can do: new Color(myMC).setTransform({ra:-100, rb:255, ga:-100, gb:255, ba:-100, bb:255}); Yes, I found some similar code too, only doesn't seem to work. You can't invert it again to get white back.

Re: [Flashcoders] XML Parsing

2006-05-05 Thread GregoryN
Mars, Look at Flasm (http://www.nowrap.de/flasm.html) In this long file, see "scriptLimits tag" sub-section. Good luck. -- Best regards, GregoryN http://GOusable.com Flash components development. Usability services. >> -- M

RE: [Flashcoders] FDT weirdness

2006-05-05 Thread Ben Smeets
Yeah I like FlashDevelop too. If it would have a VSS plugin (like Eclipse has) I would drop all other tools asap :D -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tyler Wright Sent: vrijdag 5 mei 2006 15:39 To: Flashcoders mailing list Subject: Re: [Fla

Re: [Flashcoders] FDT weirdness

2006-05-05 Thread Tyler Wright
FlashDevelop won't give you any trouble. ;) I have tried most of the major editors and FDT and FlashDevelop are my favorite. FlashDevelop just happens to be free, though I haven't yet seen it do real-time error checking yet. Tyler On 5/5/06, Seb L <[EMAIL PROTECTED]> wrote: Ah that'll be the

RE: [Flashcoders] XML Parsing

2006-05-05 Thread Merrill, Jason
Dunno, try out Xpath instead? Is the recursion happening in the XML load in Flash or in the parser code you are using after the XML file is loaded? If it's in the parser code, try Xpath instead to see if that helps, as XPath doesn't work the same way- as I understand it, you access node values on

Re: [Flashcoders] Inverting colours of the menu

2006-05-05 Thread Weyert de Boer
Hi Zeh, > Check setTransform on the help docs. But briefly, to invert a movieclip > (make it 'negative', you can do: > > new Color(myMC).setTransform({ra:-100, rb:255, ga:-100, gb:255, ba:-100, > bb:255}); Yes, I found some similar code too, only doesn't seem to work. You can't invert it again to

Re: [Flashcoders] Inverting colours of the menu

2006-05-05 Thread Zeh Fernando
I probably have a really simple question.. I have a movieclip which containts the menu items (each button is a movieclip), and know one section has a white background so the white buttons become invisible. Now I would like to invert/change the colours of the buttons. Only when I use setRGB() of th

Re: [Flashcoders] newbie: nested clips and LoadMovie

2006-05-05 Thread August Gresens
I guess what I'm looking for is an alternative to the clunky "Shared Library" thing they've got set up. I"m seeing now, however, that even if I get this working, there would be no way to duplicate the externally loaded swf's child to a clip in my main project (right?). In essence, I want to be abl

Re: [Flashcoders] Has an SWF file any influence over the file system??????

2006-05-05 Thread Martin Weiser
you mean Zinc. or other swf2exe, like screenweaver MW - Original Message - From: "Marcelo de Moraes Serpa" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Friday, May 05, 2006 1:41 PM Subject: Re: [Flashcoders] Has an SWF file any influence over the file system??

Re: [Flashcoders] Has an SWF file any influence over the file system??????

2006-05-05 Thread Marcelo de Moraes Serpa
Hello, SWF alone is contained into the player space, and the player (neither the default flash projector) hasn´t any functions (and can´t have if you think about it) to handle the file system. However, through fscommand and other techniques (such as the new ExternalInterface API), you can access

Re: [Flashcoders] newbie: nested clips and LoadMovie

2006-05-05 Thread Francesco
if I got correctly the point, you're asking: can I access children of an external swf loaded at any level into my project via MovieClip.loadMovie() or MovieClipLoader.loadClip()? If not, sorry for bothering If yes, I think: sure you can, as long as you know their instance name. If you don't, yo

Re: [Flashcoders] FDT weirdness

2006-05-05 Thread Seb L
Ah that'll be the one! doh! Thanks Michael. On 05/05/06, Michael Klishin <[EMAIL PROTECTED]> wrote: Seb L wrote: > FDT has suddenly stopped doing its code parsing for new classes... > anyone else had this? It's still parsing and checking on the > pre-existing classes. Weird! Check if your classe

Re: [Flashcoders] FDT weirdness

2006-05-05 Thread Seb L
Yeah it seems to be, the new classes are just in the same folder as the old one! On 05/05/06, Sönke Rohde <[EMAIL PROTECTED]> wrote: And is the path with your classes added to the classpath? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Seb L >

Re: [Flashcoders] FDT weirdness

2006-05-05 Thread Seb L
of course, that's always the first thing to try! :-) On 05/05/06, Sönke Rohde <[EMAIL PROTECTED]> wrote: Did you try to restart Eclipse? Cheers, Sönke > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Seb L > Sent: Friday, May 05, 2006 12:35 PM > T

Re: [Flashcoders] FDT weirdness

2006-05-05 Thread Michael Klishin
Seb L wrote: FDT has suddenly stopped doing its code parsing for new classes... anyone else had this? It's still parsing and checking on the pre-existing classes. Weird! Check if your classes name starts with uppercase letter. FDT parser ignores it otherwise. -- Michael "Antares" Klishin, Blo

RE: [Flashcoders] FDT weirdness

2006-05-05 Thread Sönke Rohde
And is the path with your classes added to the classpath? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Seb L > Sent: Friday, May 05, 2006 12:35 PM > To: Flashcoders@chattyfig.figleaf.com > Subject: [Flashcoders] FDT weirdness > > FDT has sudden

RE: [Flashcoders] FDT weirdness

2006-05-05 Thread Sönke Rohde
Did you try to restart Eclipse? Cheers, Sönke > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Seb L > Sent: Friday, May 05, 2006 12:35 PM > To: Flashcoders@chattyfig.figleaf.com > Subject: [Flashcoders] FDT weirdness > > FDT has suddenly stopped

RE: [Flashcoders] newbie: nested clips and LoadMovie

2006-05-05 Thread Jim Tann
You need to import one movieclip from the child swf into the parent swf's library & have it placed on the stage / inside a movieclip that is exported for actionscript to have access to all of the elements in the child swf's library. Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[

Re: [Flashcoders] Inverting colours of the menu

2006-05-05 Thread MBDI ICSC Rodrigo E. Curiel Salazar
Hi, you can download a tween class here: http://hosted.zeh.com.br/mctween/ this class does this and more Rodrigo On 5/5/06, Weyert de Boer <[EMAIL PROTECTED]> wrote: Hi > you have many ways to do that, > class tween > colorTo() "method" The Tween doesn't seem to have this method, but

Re: [Flashcoders] Inverting colours of the menu

2006-05-05 Thread Weyert de Boer
Hi > you have many ways to do that, > class tween > colorTo() "method" The Tween doesn't seem to have this method, but I found a ColorTransform class in Flash 8. I will see if I can use that to invert colours. The button movieclip contains of a white text for the initial state, orange for th

[Flashcoders] FDT weirdness

2006-05-05 Thread Seb L
FDT has suddenly stopped doing its code parsing for new classes... anyone else had this? It's still parsing and checking on the pre-existing classes. Weird! Seb ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the arch

Re: [Flashcoders] Inverting colours of the menu

2006-05-05 Thread Alfredo Laguia
you have many ways to do that, class tween colorTo() "method" brightnessTo() "method" or also with AnimationPackage of alex_uhlmann i hope that helps you - Original Message - From: "Weyert de Boer" <[EMAIL PROTECTED]> To: Sent: Friday, May 05, 2006 12:14 PM Subject: [Flashcoders]

[Flashcoders] Inverting colours of the menu

2006-05-05 Thread Weyert de Boer
Hi all, I probably have a really simple question.. I have a movieclip which containts the menu items (each button is a movieclip), and know one section has a white background so the white buttons become invisible. Now I would like to invert/change the colours of the buttons. Only when I use setRGB

Re: [Flashcoders] Private variables visible?

2006-05-05 Thread Spiral Universe
wicked... :)) i knew that but tought it should be detected by compiler that i try to use private var ... Eskil Janson <[EMAIL PROTECTED]> wrote: private variables are only recognized by the compiler for checking in AS2, unfortunantley. /Eskil Spiral Universe skrev: > Hi. I'm having an iss

Re: [Flashcoders] Private variables visible?

2006-05-05 Thread Eskil Janson
private variables are only recognized by the compiler for checking in AS2, unfortunantley. /Eskil Spiral Universe skrev: Hi. I'm having an issue that might be because of my error but can't figure out what am I doing wrong. It's very simple.. i have a class with private vars and they are v

[Flashcoders] PHP parse_url()-equivalent in ActionScript2

2006-05-05 Thread Morten Barklund
Hi list, Has anyone created a simple class for parsing an URI into scheme, user, pass, host, ... like the PHP-function parse_url[1]? If not, I'll simply create one, but if someone has something thoroughly tested, it would be nice :) [1] http://php.net/parse_url -- Morten Barklund _

Re: [Flashcoders] Has an SWF file any influence over the file system??????

2006-05-05 Thread Serge Jespers
Not directly from the SWF but if you use something like Zinc (http:// www.multidmedia.com/) you can do a lot with Flash projectors. Serge Hi comunity, i'm looking for an answer. Is there any way to acces to my file system from "Flash" (an SWF) Thanks anyway. Jorge _

[Flashcoders] Private variables visible?

2006-05-05 Thread Spiral Universe
Hi. I'm having an issue that might be because of my error but can't figure out what am I doing wrong. It's very simple.. i have a class with private vars and they are visible outside the class.. everywhere.. in other movieclips, in the root timeline :) class MyClass { private var _hid

Re: [Flashcoders] XML Parsing

2006-05-05 Thread Mars Spider - Upgrade Multimediale Srl
GregoryN wrote: Mars, The only (well) known solution is about editing SWF bytecode to change "256 limit of recursion". Broadly used, btw. Any link or suggestion about this solution? Mars Spider http://www.marsspider.net ___ Flashcoders@chattyfi