[flexcoders] Re: Marshall Plan: Loading images from byteArray

2009-04-11 Thread rob_mcmichael
Thanks Alex! That's more or less what I had. Once everything is done here I will try and create an example, as I expect most sub applications will want to load images at some point. Really appreciate your help Rob

Re: [flexcoders] Timer error

2009-04-11 Thread Fotis Chatzinikos
Some more code? How do you instantiate it? On Sat, Apr 11, 2009 at 7:04 AM, markflex2007 markflex2...@yahoo.comwrote: I have following statement public var timer:Timer; But I get error message like Constructor functions must be instance methods I do not have idea why.Please

[flexcoders] Accordion Button Header Replacement?

2009-04-11 Thread flexcoder1969
Anyone have any ideas on how one might use the Accordion's HeaderRenderer to skin the header with something OTHER than a Button? Documentation states that the AccordionHeader is a subclass of Button, therefore it would appear that the HeaderRenderer needs to extend only Button. I hope this is

[flexcoders] Flash Vs. Flex Which Is Better For RIA Applications

2009-04-11 Thread dhvaneshadhiya
Hi folks, Flash is generally used to create animation, integrate videos into thewebpage, advertisements and various web page components and this wayit's being used to add interactivity to your web pages. However, Flashis also used to develop Rich Internet Applications (RIAs). But another Flex

Re: re: [flexcoders] Problem drag and drop

2009-04-11 Thread soulflow132
I've tried what you said but its not working dude :confused::confused: any suggestions please ? -- View this message in context: http://www.nabble.com/Problem-drag-and-drop-tp22997154p23001090.html Sent from the FlexCoders mailing list archive at Nabble.com.

[flexcoders] Re: What's your favorite Tip/Trick ?

2009-04-11 Thread Amy
--- In flexcoders@yahoogroups.com, Matthew A. Wilson korb...@... wrote: I've been using .NET for years and recently started developing in Flex. One thing I've noticed (and maybe it's because I'm new) is that I have to write out just about everything. There were so many things in .NET that

[flexcoders] Re: Create XML List by code

2009-04-11 Thread rob_mcmichael
Be sure to have a read through: http://livedocs.adobe.com/flex/3/html/help.html?content=13_Working_with_XML_04.html It covers most things you will need in dealing with XML.

[flexcoders] Re: Timer error

2009-04-11 Thread rob_mcmichael
This code should help: === public var ticker : Timer; public function onCreationComplete():void { ticker = new Timer(500); ticker.addEventListener(TimerEvent.TIMER, onTick); ticker.start(); } public function onTick( event:TimerEvent):void {

[flexcoders] Flex layout question

2009-04-11 Thread rob_mcmichael
Hi all, I have had a problem with a layout I am trying to write. I have a view for an RSS article, at the top I have a header section with the title and the publish date. Under this I want an area that will scroll when it fills up, with the article content in a TextArea and an image above

[flexcoders] Re: What's your favorite Tip/Trick ?

2009-04-11 Thread rob_mcmichael
In the next version of FlexBuilder you will see a lot more of this. There is getter and setter fillers (which will stop me being lazy and using public variables). I also noticed method generation if you set a click property on a button etc. At the moment we have refactoring, which is a help,

RE: [flexcoders] Flex layout question

2009-04-11 Thread Tracy Spratt
You may want an auto sizing text area. Google: flex auto height textArea. I did a simple one and the fourth hit looks like a full component. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

[flexcoders] ActionScript package/class wont produce output (or error)

2009-04-11 Thread Brad Bueche
I'll probably get this working by just changing things until it runs, however, I'd like to really understand what is going wrong. ;) My packaged class is below (at the bottom). IF I run it as the only file in an actionscript project (in the Flex 3 ide). It works and draws 3 shapes onto the

RE: [flexcoders] ActionScript package/class wont produce output (or error)

2009-04-11 Thread Alex Harui
Call addChild() Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Brad Bueche Sent: Saturday, April 11, 2009 1:15 PM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] What's your favorite Tip/Trick ?

2009-04-11 Thread Brad Bueche
You might be interested in following the development of this: http://www.sapphiresteel.com/Download-Amethyst-Adobe-Flex-IDE They are enabling the ability to develop flex within the visual studio IDE. Also, a good adobe tv show to wach on thiswell I cant find it now it was some guy

Re: [flexcoders] ActionScript package/class wont produce output (or error)

2009-04-11 Thread Brad Bueche
Thanks! You made my saturday night! (Yea, I'm THAT boring). If the class had not had all those addChilds in it I would have normally thought to do this. What are all those addChild's in the class adding TO then? Its the same stage, same display list ??? brad On Sat, Apr 11, 2009 at 6:14 PM,

[flexcoders] Help to finish flex project

2009-04-11 Thread Silva Developer
I need a help to finish a project in flex. The difficulty that I am taking are: 1) I have 2 images, one in jpeg thumbnail and other main vector for viewing receiving zoom. Must reflect the movement of the mouse model of the main image, but it must obey the same area being traveled the

[flexcoders] Loaded cairngorm swf will not remote

2009-04-11 Thread baytechus
I'm sure this has to do with Cairngorm's issues, but I thought I'd give it a try here anyway. Got several cairngorm flex apps, trying to use one as the main app and load one of the others into it for now. Each app has its own events, commands, delegate, servicelocator, etc. These swfs DO NOT

RE: [flexcoders] ActionScript package/class wont produce output (or error)

2009-04-11 Thread Tracy Spratt
They add the graphics object to the BasicShapes component You then need to add that component to MoveShapes. And if you instantiate Moveshapes in an Application, you will need to use addChild() to add that to the application container. Tracy Spratt, Lariat Services, development services