[flexcoders] Re: flash builder: how to create an as3 project WITHOUT flex sdk

2010-08-12 Thread Ariel J
Thanks all. --- In flexcoders@yahoogroups.com, Oleg Sivokon wrote: > > {sdk}/frameworks/libs/air > look there for swc files. airglobal.swc is the must, all the rest are > optional, or so I think. >

[flexcoders] States stateGroup

2010-08-12 Thread Dan Vega
Does anyone have a good example of using a stateGroup? I haven't seen a good use case for this anywhere, thanks!

[flexcoders] Re: Accessing repeating components through ActionScript

2010-08-12 Thread Alexander
Thanks Oleg, that's a good workaround and - --- In flexcoders@yahoogroups.com, Oleg Sivokon wrote: > > > > > var event:Event = arguments[0] as Event; > this.labels.push(event.currentTarget); > > > I've found out, that I can access repeating components through an array index as well:

[flexcoders] Re: How do I disable ctrl-click on a combo box?

2010-08-12 Thread tweetyNJ
Never mind, I found this and just changed ctrlKey from true to false and make it work. http://tech.groups.yahoo.com/group/flexcoders/message/143360 --- In flexcoders@yahoogroups.com, "tweetyNJ" wrote: > > Hi all, > I am wondering if there's a way I can disable ctrl-clilck on a combo box. I > a

[flexcoders] AIR runtime 2.0.3.13070 causing intermittent problems spawning new windows

2010-08-12 Thread Kevin MacDonald
Once existing users update their AIR runtimes to 2.0.3.13070 they begin experiencing intermittent problems where new windows fail to spawn on Windows machines. We know the code is running because we can still hear expected audio clips, but the window does not appear at all. Has anyone else exp

[flexcoders] Radio Buttons and Validation

2010-08-12 Thread flexcodemonkey
I'm trying to do something I thought would be simple. I have a form with radio buttons and some user input for each button. I want to validate the user input, but not show the red invalid box on any input that is part of a radio button not selected. I basically added a change handler for the

[flexcoders] Re: Push verse Poll in Flash Player

2010-08-12 Thread flexcodemonkey
Have you looked into BlazeDS or LCDS? --- In flexcoders@yahoogroups.com, dorkie dork from dorktown wrote: > > Is there a way to get notifications on a regular interval for Flash > applications? Any and all suggestions about push vs pull vs poll vs etc. We > would be checking every 30 seconds to

Re: [flexcoders] Push verse Poll in Flash Player

2010-08-12 Thread Akshar Kaul
you can use any of the following two approaches:- 1) create a timer and set it to fire at required interval. when the timer fires then you can query the backend. 2) make the back end push data to client. in this case back end will know when the data has changed and it will push data only when

Re: [flexcoders] Re: flash builder: how to create an as3 project WITHOUT flex sdk

2010-08-12 Thread Oleg Sivokon
{sdk}/frameworks/libs/air look there for swc files. airglobal.swc is the must, all the rest are optional, or so I think.

Re: [flexcoders] RE: Vote For This Critiical RemoteObject bug

2010-08-12 Thread Alex Harui
It could be, although it is rare for Flex to have something work on Mac but not on Windows. The runtime teams usually point the finger at Flex hoping that it is us because it is hard for them to debug Flex test cases since they are large and complex. It is a better to start with us anyway if t

[flexcoders] Re: flash builder: how to create an as3 project WITHOUT flex sdk

2010-08-12 Thread Ariel J
Yes, but in an Actionscript project, how do I add the AIR classes for development? --- In flexcoders@yahoogroups.com, Oleg Sivokon wrote: > > You need to package the application using ADT, and launch it for testing > using ADL. AIR runtime is different from player and it has more classes, one >

Re: [flexcoders] Re: flash builder: how to create an as3 project WITHOUT flex sdk

2010-08-12 Thread Oleg Sivokon
You need to package the application using ADT, and launch it for testing using ADL. AIR runtime is different from player and it has more classes, one of them is NativeApplication. Player doesn't have that, so, you cannot run the SWF compiled for AIR in the player because some classes won't be there

[flexcoders] Re: flash builder: how to create an as3 project WITHOUT flex sdk

2010-08-12 Thread Ariel J
Two things: 1) I need to include the AIR libraries? How do I add those to an Actionscript project? 2) When I create a Flex project, and replace the WindowedApplication mxml file with a similarly named file that is .as and that extends Sprite, I can write stage.nativeWindow.activate(). However,

Re: [flexcoders] Re: flash builder: how to create an as3 project WITHOUT flex sdk

2010-08-12 Thread Clark Stevenson
Yeah mate. You need the Flex SDK but if you start an Actionscript project you have no access to the stuff. I dont use Flex as a MXML language... ie the framework. It reminds me of boring forms and banking applications. But AS3 on the other hand. You can do anything you want. Clark. On 12 A

Re: [flexcoders] Re: flash builder: how to create an as3 project WITHOUT flex sdk

2010-08-12 Thread Oleg Sivokon
The definition for Sprite is in playerglobals.swc. However, you are asking wrong question. You cannot compile an AS3 project w/o SDK, or you would need at least an alternative compiler, and only one that exists is the one developed by SWFTools few years ago. But it's outdated now... so, technically

[flexcoders] OLAPDatagrid with hierarchical dimensions

2010-08-12 Thread Eduardo Dias
Hi Guys, Does anyone knows if is that possible to create an OLAPDatagrid with hierarchical dimensions? -- Best Regards, Eduardo Dias

[flexcoders] OLAPDatagrid with hierarchical dimensions

2010-08-12 Thread Eduardo Dias
Hi Guys, Does anyone knows if is that possible to create an OLAP data grid with hierarchical dimensions? -- Best Regards, Eduardo Dias

RE: [flexcoders] RE: Vote For This Critiical RemoteObject bug

2010-08-12 Thread Battershall, Jeff
Alex, I've been in touch with Chris Thilgen, from the AIR team who tells me it's a Flex SDK issue. Jeff From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex Harui Sent: Thursday, August 12, 2010 2:42 PM To: flexcoders@yahoogroup

[flexcoders] Re: Detect Application Root

2010-08-12 Thread valdhor
Use ExternalInterface to call a Javascript function. --- In flexcoders@yahoogroups.com, Angelo Anolin wrote: > > Hi FlexCoders, > > I have a flex application hosted on an html file. How would I be able to > detect > from the Flex application the root url? > > Like for example, the root url g

Re: [flexcoders] CheckBox in TileList

2010-08-12 Thread Alex Harui
You might be able to borrow code from my DataGrid examples on my blog. On 8/12/10 6:01 AM, "Christophe" wrote: Hello, How to add chekbox in a Tile List, and how to get the values of the check box in the main program ? Thank you, Christophe, -- Alex Harui Flex SDK Team Adobe System

Re: [flexcoders] RE: Vote For This Critiical RemoteObject bug

2010-08-12 Thread Alex Harui
I noticed it was filed against the player. I assumed you’d essentially proved it was an AIR issue. If so, there is no source to look at or patch. If the same requested timeout works on Mac or in Flash, it probably is an AIR/Windows issue. They generally like non-Flex test cases so if you can

[flexcoders] Re: flash builder: how to create an as3 project WITHOUT flex sdk

2010-08-12 Thread Ariel J
If I remove the Flex SDK entry from the build path, it can't find the definition for Sprite. So I think I need to leave it and instead, remove specific swc entries below it, like framework.swc. Does that sound right? --- In flexcoders@yahoogroups.com, "seanmcmonahan" wrote: > > I may be wrong

[flexcoders] Re: flash builder: how to create an as3 project WITHOUT flex sdk

2010-08-12 Thread seanmcmonahan
I may be wrong but I believe this is because MXMLC is used to compile AS projects in Flash Builder and the compiler may change with different versions of Flex. You can always look at the library path for your project to verify whether or not Flex is included in your project (it shouldn't be for

[flexcoders] Re: flash builder: how to create an as3 project WITHOUT flex sdk

2010-08-12 Thread Ariel J
Update -- >From the Flash Builder Help: ActionScript projects Based on the Flash API, not the Flex framework, ActionScript projects let ActionScript developers use Flash Builder to code, build, and debug ActionScript-only applications. Yet, when I create a new AS project, it asks which F

[flexcoders] RE: Vote For This Critiical RemoteObject bug

2010-08-12 Thread Battershall, Jeff
Alex, Can you put me in touch with someone on the SDK team re: this timeout issue? I've started to dig through the Flex SDK source but have not run across the smoking gun yet - a lot of the Remoting related classes haven't been modified since 2009. Seems to me that if I knew the correct place

[flexcoders] Detect Application Root

2010-08-12 Thread Angelo Anolin
Hi FlexCoders, I have a flex application hosted on an html file. How would I be able to detect from the Flex application the root url? Like for example, the root url goes like: www.mysite/myApp and the flex application is hosted on www.mysite/myApp/flex.html I want to invoke on Flex to navi

Re: [flexcoders] Re: Flex and Zend acess https

2010-08-12 Thread farid wl
Dear Coder I using Zend Framework for all application that  is very good But I did not htts yet , you can go to mihai corlan blog and search it , if you did not any right answer you can send prob to mihai. http://corlan.org/ BR Farid Valipour --- On Thu, 8/12/10, valdhor wrote: From: valdhor

[flexcoders] Re: Flex and Zend acess https

2010-08-12 Thread valdhor
Sorry, I can't really help except to recommend WebORB. I started out using AMFPHP (Which is what Zend is based upon) and would always get these errors. I switched to WebORB and have not seen these errors since. --- In flexcoders@yahoogroups.com, "Julie" wrote: > > I have a project using Flex as

[flexcoders] CheckBox in TileList

2010-08-12 Thread Christophe
Hello, How to add chekbox in a Tile List, and how to get the values of the check box in the main program ? Thank you, Christophe,

Re: [flexcoders] textInput modification

2010-08-12 Thread claudiu ursica
http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/fl/controls/TextInput.html Events: changeDispatched when user input changes text in the TextInput component. http://www.adobe.com/livedocs/flex/2/langref/mx/controls/TextInput.html change Dispatched when text in the TextInp

[flexcoders] textInput modification

2010-08-12 Thread Christophe
Hello, How to know when a textInput has been modified ? Thank you, Christophe,

RE: [flexcoders] Air Update -modules

2010-08-12 Thread Gregor Kiddie
Since the change to the module loader allowing modules to be loaded by bytes... http://help.adobe.com/en_US/FlashPlatform//reference/actionscript/3/mx/m odules/ModuleLoader.html?allClasses=1#loadModule()

[flexcoders] Re: After importing file using FileReference focus is lost

2010-08-12 Thread chinaloveshisiling
I found this issue exist in the Firefox and Chrome but not in IE. --- In flexcoders@yahoogroups.com, "chinaloveshisiling" wrote: > > I doubt this is defect of Adobe Flex :-), who know how to open defect for > them? > > --- In flexcoders@yahoogroups.com, "chinaloveshisiling" > wrote: > > > >

[flexcoders] Air Update -modules

2010-08-12 Thread Wesley Acheson
Hi If you have an Air Application and only one module changes. Do the end users need to redownload the entire AIR project? Regards, Wesley Acheson

Re: [flexcoders] Push verse Poll in Flash Player

2010-08-12 Thread dorkie dork from dorktown
correct On Wed, Aug 11, 2010 at 11:40 PM, Akshar Kaul wrote: > > > what kind of notifictions do you want. i guess you want to query your > backend every 30 or 60 seconds.. > > Akshar Kaul > > > > On Thu, Aug 12, 2010 at 05:46, dorkie dork from dorktown < > dorkiedorkfromdorkt...@gmail.com> wrote

Re: [flexcoders] AMFPHP Security?

2010-08-12 Thread Clark Stevenson
Thanks everyone for your help on this. I was hoping for some ideas but now i have loads of them! We will look into these replies in more detail in the coming days. Its interesting to know the different approaches available. Im starring this! Clark. On 11 August 2010 14:57, Imap.gmail.com wrot

Re: [flexcoders] Custom Layout

2010-08-12 Thread Alex Harui
Probably need calls to: layoutElement.setLayoutBoundsSize() On 8/11/10 8:26 PM, "Dan Vega" wrote: I created a custom layout called StairsLayout package { import mx.core.ILayoutElement; import spark.components.supportClasses.GroupBase; import spark.layouts.supportClasses.LayoutBase; p