Re: [Flashcoders] Flash Debugging Tool

2006-06-11 Thread Weyert de Boer
John Grden wrote: Yeah that's cool Aaron, I dig the concept. So basically, its a logger with filters that's really lightweight and is just listening for any swf sending it log data, is that about right? Yes, his debugging tool is really nice. It's similar to the tool I always use in Delphi

[Flashcoders] UML to AS2.0 classes ...

2006-06-11 Thread Stephen Ford
Hello all, I have searched the flashcoders archive for around 20 mins and couldn't find exactly what I need, so here is my question. Can anyone recommend, or does anyone know of, a tool for creating UML diagrams that will export a set of AS2.0 classes from said UML diagram. From what I

RE: [Flashcoders] XML diff

2006-06-11 Thread Howard Nager
The browser should (and does) cache images so the second time around stuff should be faster...but I can't trust that it will be seamless. The other part of this is that in a lot of cases nothing will change in the xml except for the selected option having a selectedState=true attribute. In

[Flashcoders] Stretching Designs - Coded?

2006-06-11 Thread Kevin Cannon
Hi there, I've seen a couple of design occasionally (like thefwa.com) that dynamically stretch and adjust with the width of the browser and the content. How is that kind of thing done? I know you can achieve some interestin gthings with scaleMode and Stage.align but I'm guessing something more

[Flashcoders] Accordian class

2006-06-11 Thread Howard Nager
After what's felt like years of having :Accordian show up in code hinting I decided to see what it was. No surprise there, it's an accordian menu. Luck has it that I am working on a project which needs an Accrodian menu...but it seems as if I can only use it if I use the component? Correct me

Re: [Flashcoders] Stretching Designs - Coded?

2006-06-11 Thread Mick G
How is that kind of thing done? I know you can achieve some interestin gthings with scaleMode and Stage.align but I'm guessing something more complex is going on here. No - that's about it really. Just make sure your flash is embedded with 100% width so the stage does actually change size with

Re: [Flashcoders] Text link on hover

2006-06-11 Thread GregoryN
Hello elibol, Will your function (class?) be For Flash 8 only (as bitmapData was mentioned)? I think this all can be done flash 7 compatible. Well, I'm very interested. If you'll need some help with testing and/or making a component for non-programmers, don't hesitate to email me. -- Best

Re: [Flashcoders] Flash Debugging Tool

2006-06-11 Thread Aaron Buchanan
Wow, that would be such an awesome feature! On 6/11/06 4:09 AM, Weyert de Boer [EMAIL PROTECTED] wrote: this way you can indent message which belogn to a specific method. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

Re: [Flashcoders] Flash Debugging Tool

2006-06-11 Thread Aaron Buchanan
One feature of the tool is that while you are developing in flash, you can toggle each broadcaster's trace output and an optional parameter to the constructor. If you set it to true, your broadcast messages will appear in the output panel, prefixed by the channelName: Message..., if you set it to

Re: [Flashcoders] Stretching Designs - Coded?

2006-06-11 Thread Aaron Buchanan
Hey Kev - This is achieved to listening to the Stage object. It's super simple. I actually have a little snippet that I use over and over when I am gonna do stage stuff. It's below, the formatting get's messed up here, so I'll post a lil FLA example, if you like. Basically, I create 9 arrays of

Re: [Flashcoders] Flash Debugging Tool

2006-06-11 Thread Weyert de Boer
No problem, is it easy to make that ident support using that listbox of Flash? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by

Re: [Flashcoders] Stretching Designs - Coded?

2006-06-11 Thread Aaron Buchanan
Threw together a quick example for you: http://lab-media.com/transfer/chattyfig/StageObject.fla.zip ;] A On 6/11/06 10:29 AM, Aaron Buchanan [EMAIL PROTECTED] wrote: Hey Kev - This is achieved to listening to the Stage object. It's super simple. I actually have a little snippet that I

Re: [Flashcoders] Flash Debugging Tool

2006-06-11 Thread Aaron Buchanan
On the console side, it would be easy to implement a filtering mechanism that would let you sort by keywords, or even search for your own. But as it stands, there is no support for additional flags. There is an extra object that I set up as a parameter to the broadcaster, metaData, but was never

Re: [Flashcoders] Stretching Designs - Coded?

2006-06-11 Thread Mike Britton
Aaron, thanks for putting together that example. I made an example of keeping an element in the center of the Stage using zmc_tween along with your technique, something I started doing to add a little depth when the user resizes. Just eye candy. The attachment is your example with zmc_tween

Re: [Flashcoders] Stretching Designs - Coded?

2006-06-11 Thread Aaron Buchanan
Attachment was stripped, can you send to [EMAIL PROTECTED] I will post along with mine :) a On 6/11/06 11:15 AM, Mike Britton [EMAIL PROTECTED] wrote: Aaron, thanks for putting together that example. I made an example of keeping an element in the center of the Stage using zmc_tween along

Re: [Flashcoders] Flash Debugging Tool

2006-06-11 Thread John Grden
Yeah, i'm in the same boat with Xray - how much more time do I spend on it? how long do I keep the as2 version updated with the as3 version etc? I'm already looking at porting the connector over to AS3, but there's alot of learning that has to happen first. There's a fairly different approach

[Flashcoders] Help loading xml in html embed tag

2006-06-11 Thread Matt Mc
Loading XML in the HTML Embed Tag What I am doing: I have a dynamic MP3 player that I need to play a single MP3 per swf. I need to load XML file from a link in the html embed tag, this way I can use the same player for different XML files that call out each MP3 from dynamic locations.