Re: [flexcoders] Eclipse Ganymede

2009-04-05 Thread claudiu ursica
I use ganymede for quite a while now and haven't ran into any issues... C From: Tim Rowe To: "flexcoders@yahoogroups.com" Sent: Monday, April 6, 2009 3:42:19 AM Subject: RE: [flexcoders] Eclipse Ganymede I recently installed Builder on a fresh system with

Re: [flexcoders] Re: Flex Component Kit still needed for CS4?

2009-04-05 Thread Nate Beck
I think the question.. is the Flex component kit already installed in CS4? To that, I don't know that answer right off the bat. Flash and Flex workflows are quite confusing. Someone from Adobe needs to write an updated article on DevNet explaining the preferred way of working with Flash and Flex

RE: [flexcoders] Loading AS2 SWF in Flex 3

2009-04-05 Thread Alex Harui
And keep in mind that if you use @Embed or [Embed], any AS2 in the SWF may be stripped out. Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Paul Andrews

[flexcoders] Re: Flex Component Kit still needed for CS4?

2009-04-05 Thread Amy
--- In flexcoders@yahoogroups.com, "brad.bueche" wrote: > > I know CS3 needed the flex component kit. Does CS4 need it as well? > > Its confusing because this page: > > http://help.adobe.com/en_US/Flash/10.0_UsingFlash/WSFD77A256-0DE1-46c7-86FB-CC4A8AE2EAA6.html > > which is for CS4, sends you

RE: [flexcoders] Sharing objects (BitmapData) between 2 loaded swfs

2009-04-05 Thread Tracy Spratt
Local connection is probably a better option. Do you have a compelling use-case for having two swfs? That complicates issues considerably. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Beha

[flexcoders] Sharing objects (BitmapData) between 2 loaded swfs

2009-04-05 Thread p0lish_sausage
Hello everyone, I'm wondering if Flex has the capability of having 2 loaded swfs on a webpage that share the same complex objects, in memory. What I want to do load a bitmapdata in A.swf, and then reference & use it both in A.swf and B.swf at the same time. I'd like when the bitmap in A.swf get

RE: [flexcoders] Re: var circle:Sprite = new Sprite(); Not working

2009-04-05 Thread Tracy Spratt
You do NOT want to use rawChildren, stick with normal practices.. Sprite is too low level to add to a Flex container. You need to wrap it in a UIComponent. I don't have a real example, but it will be something like: var uic:UIComponent = new UIComponent(); uic.addChild(circle); this.addChi

[flexcoders] Re: var circle:Sprite = new Sprite(); Not working

2009-04-05 Thread brad.bueche
Thanks Tracy, Nate! Ok, that worked, in that it got rid of the errors. But then I got a type conversion error about not being able to convert a Sprite to a UIComponent. So I read throught some blogs and found this rawchildren solution and using Shape too. So now I get a circle on the screen

[flexcoders] Re: Trying to dynamically populate checkboxes via array binding

2009-04-05 Thread Tim Hoff
Hi Benoit, You're going to want to use an itemRenderer for the checkBox's. Tracey Spratt has an example here: http://www.cflex.net/showFileDetails.cfm?ObjectID=559 -TH --- In flexcoders@yahoogroups.com, Benoit Villière wrote: > > Hello

RE: [flexcoders] Eclipse Ganymede

2009-04-05 Thread Tim Rowe
I recently installed Builder on a fresh system with Eclipse(Ganymede), and had to do two things: 1. Install the old Builder Plug-in to my Ganymede install. You have to insist "yes, this is an eclipse dir" 2. Get the absolute latest version of builder standalone, and then copy over the newer j

Re: [flexcoders] Eclipse Ganymede

2009-04-05 Thread Toby Tremayne
I have installed ganymede with the flex builder 3 plugin, mylin, subclipse, cfeclipse, mxunit etc and it's working beautifully. Toby On 06/04/2009, at 10:29 AM, Albert Waltner wrote: Still using Windows XP and trying Eclipse Ganymede with Flex 3. The messages going back to 9/08 discuss Ganym

[flexcoders] Eclipse Ganymede

2009-04-05 Thread Albert Waltner
Still using Windows XP and trying Eclipse Ganymede with Flex 3. The messages going back to 9/08 discuss Ganymede problems but without a clear explanation. I have installed Eclipse 3.2.2 and Flex3 and that works but when installing Eclipse current version (Ganymede) it does not. On Adobe.com an e

Re: [flexcoders] var circle:Sprite = new Sprite(); Not working

2009-04-05 Thread Nate Beck
Tracy beat me to it... but I'm going to send my email as well :). This is because your code isn't in an event handler. In MXML you can't have "free-floating" script, just like in an ActionScript 3 class, you can't have circle.graphics.beginFill(0x99) outside of a method. I recommend doing the

RE: [flexcoders] var circle:Sprite = new Sprite(); Not working

2009-04-05 Thread Tracy Spratt
That error is often caused by attempting to initialize a complex variable outside of a function. This is because of the way mxml files are generated into classes. Declare the circle variable in instance scope as you have, but do the initialization in a function called by creationComplete.

[flexcoders] Trying to dynamically populate checkboxes via array binding

2009-04-05 Thread Benoit Villière
Hello everyone, I am making a first AIR application which is a simple task manager. It's been built with AS, and uses SQLite to handle data. I would like to display the tasks in a simple list of checkboxes, but my MXML knowledge is very low and I ended up with this : I would love being ab

Re: [flexcoders] Re: New Adobe forums coming!

2009-04-05 Thread Matt Chotin
I know there are plenty of people who still use NNTP (I certainly hadn't realized how popular it remained among our community since it didn't seem to work so well for me). But yes, we won't be able to support NNTP right now. That said, most email clients today support threading of messages whi

[flexcoders] Bizarre browser inconsistencies...?

2009-04-05 Thread one_rabbit_one
Hi, I had thought that I had successfully finished my first Flex application - my portfolio constructed from four modules... at showreel.inkthing.net/Patch.html - but have discovered that in Firefox the Radio module throws a security error despite the mp3player and the crossdomain.xml both speci

[flexcoders] var circle:Sprite = new Sprite(); Not working

2009-04-05 Thread brad.bueche
I'm at a loss here. I copied this code straight off the adobe site: http://livedocs.adobe.com/flex/3/html/help.html?content=05_Display_Programming_29.html And copied it write into a new mxml project (below) and Flex is throwing 1120 erorrs saying "circle is undefined". How can that be? ***

[flexcoders] Flex Component Kit still needed for CS4?

2009-04-05 Thread brad.bueche
I know CS3 needed the flex component kit. Does CS4 need it as well? Its confusing because this page: http://help.adobe.com/en_US/Flash/10.0_UsingFlash/WSFD77A256-0DE1-46c7-86FB-CC4A8AE2EAA6.html which is for CS4, sends you to the component page, but the component page only mentions CS3. brad

[flexcoders] Re: How to create your own IFlexModuleFactory?

2009-04-05 Thread skuteboarding
Yes, I think IFlexModuleFactory possibly isn't what I'm after. I was basically looking for ways to initialise custom modules (plugins) in a correct order with specific values. I've since abandoned that idea and had my main plugin object initialised in the constructor of each module. Thanks, -

[flexcoders] Re: Flex, SharePoint and SQLServer

2009-04-05 Thread Tim Hoff
Yes, you can get xml data from a SQL-Server database directly through xPath url queries. The risk here though is that it opens up the possibility of SQL injection and isn't that secure. Your options are to create your own .Net web services or look into using a middle tier solution like WebOrb; f

[flexcoders] Re: Flex to Air comminication via LocalConnection - Error #2044

2009-04-05 Thread ericbichara
Wow that worked like a charm, thanks mate /Eric

Re: [flexcoders] Loading AS2 SWF in Flex 3

2009-04-05 Thread Paul Andrews
- Original Message - From: "Hyder" To: Sent: Sunday, April 05, 2009 5:47 PM Subject: [flexcoders] Loading AS2 SWF in Flex 3 > I'm trying to load an AS2 swf using SWFLoader (Embedded) in a TitleWindow. > > The SWF file plays fine in a standalone player, but when embedded in Flex, > AS

[flexcoders] Loading AS2 SWF in Flex 3

2009-04-05 Thread Hyder
I'm trying to load an AS2 swf using SWFLoader (Embedded) in a TitleWindow. The SWF file plays fine in a standalone player, but when embedded in Flex, AS2 scripted animations don't display. I'm loading it inside Flex so that I can communicate using LocalConnection. Right now, I'm loading it in a

[flexcoders] undefined "SampleDataEvent"

2009-04-05 Thread Florian Heft
Hello everybody, I'm playing around with the new sound capabilities of Flash10 and wanted to try out an example I found on the internet. Basically, I ported the "DynamicSoundSample1" from http://www.adobe.com/devnet/flash/articles/dynamic_sound_generation/ to Flex 3. But I keep getting the err

Re: [flexcoders] Flex, SharePoint and SQLServer

2009-04-05 Thread Paul Andrews
- Original Message - From: Tracy Spratt To: flexcoders@yahoogroups.com Sent: Sunday, April 05, 2009 5:01 AM Subject: RE: [flexcoders] Flex, SharePoint and SQLServer snip Flex can't really talk directly to a database. Supposedly, the later SQL Server versions support nati

Re: [flexcoders] Re: Print existing documents in Flex

2009-04-05 Thread Paul Andrews
- Original Message - From: "Amy" To: Sent: Sunday, April 05, 2009 6:03 AM Subject: [flexcoders] Re: Print existing documents in Flex > --- In flexcoders@yahoogroups.com, "Paul Andrews" wrote: >> snip >> Interesting suggestion - might be a problem with pagination - you'd want >> each