Re: [flexcoders] event order issues

2009-11-02 Thread Darrin Kay
I put in the trace, and it is going to the sort before the result is back from the db. Any suggestions? On Mon, Nov 2, 2009 at 7:42 AM, Alex Harui aha...@adobe.com wrote: Put trace statements in event handlers so you can see the order. There’s probably a collectionEvent after the insert

Re: [flexcoders] event order issues

2009-11-02 Thread Darrin Kay
is there a way to dispatch the event from the command file? that would solve the problem Thanks for the help, Darrin On Mon, Nov 2, 2009 at 8:09 AM, Darrin Kay dar...@stop-ing.com wrote: I put in the trace, and it is going to the sort before the result is back from the db. Any suggestions?

[flexcoders] Adobe comment on ASC-3136?

2009-11-02 Thread Gregor Kiddie
Anyone from Adobe want to comment on the closing of the issue on Proxies? http://bugs.adobe.com/jira/browse/ASC-3136 It got changed to deferred then closed, and no-one updated the comments with why! With 110 votes, it's a relatively hot topic. Gk. Gregor Kiddie Senior Developer INPS

[flexcoders] Problem with using LocalConnection.domain on domain with special characters

2009-11-02 Thread bjorn
I'm using LocalConnection.domain to get the current domain - however I ran into a problem when the domain name has special characters (in my case moteklær.no http://xn--moteklr-rxa.no).. In IE it will return moteklær.no http://xn--moteklr-rxa.no In Firefox it will return moteklÁ|r.no In Chrome it

RE: [flexcoders] Make Flex AIR app demand more system resources

2009-11-02 Thread Gregor Kiddie
Are you really suggesting that the AIR app isn't a massive resource hog and is unusable for any purpose? This should be a good thread to watch *fetches popcorn* Seriously though, and on topic... When you say it relinquishes resources back to readily, are you talking about CPU time, and

[flexcoders] Casting down an object

2009-11-02 Thread bnsmeets
Hi all, I'm wondering if it is possible to 'hack' some sort of downcasting into AS3. The context is, that I am using a generated webservice proxy from Flex 3, and want to be able to add custom (extra) properties to the generated valueobjects without having to adjust the code that parses the

[flexcoders] RemoteObject question/mystery

2009-11-02 Thread Wally Kolcz
Looking for a little education from all the people smarter than me of remoteObjects. I have always used the MXML version which includes the resultHandler attribute which made managing the returned data easy. However I never learned the AS version very well. I can create the remoteObject in AS

[flexcoders] SWFLoader problem

2009-11-02 Thread chandruflex
In my application, I have a SWFLoader component, placed inside a Canvas container. I load a swf into the SWFLoader, dynamically. The problem is, when the swf file is loading, the display seems to be larger than the size of the enclosing Canvas container. But, after the swf has loaded

RE: [flexcoders] Re: UDP via Flex socket

2009-11-02 Thread Gregor Kiddie
UDP support is being added in AIR 2.0. I don't know if that list extends to the Flash Player as well... http://blogs.adobe.com/cantrell/archives/2009/10/everything_new_in_air_2 .html Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a

[flexcoders] Re: NonModal Alert Box

2009-11-02 Thread valdhor
When you put up the Alert, run some code to disable the items in the TitleWindow. Then in the Alerts closeHandler have some code to enable those same items. --- In flexcoders@yahoogroups.com, yogesh patel mailtoyogeshpa...@... wrote: Hi, I have TitleWindow with some fields like

Re: [flexcoders] Adobe comment on ASC-3136?

2009-11-02 Thread Matt Chotin
It's deferred for a future Player from what I can tell. We know it's important to folks though. Sent from my phone. Please excuse brevity or typos. On Nov 2, 2009, at 1:56 AM, Gregor Kiddie gkid...@inpses.co.ukmailto:gkid...@inpses.co.uk wrote: Anyone from Adobe want to comment on the

RE: [flexcoders] Adobe comment on ASC-3136?

2009-11-02 Thread Gregor Kiddie
Cheers Matt, Is it possible to have an Adobe employee comment on the issue with something along those lines? Just for those folks who don't frequent this list but who are watching the issue. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread

Re: [flexcoders] Adobe comment on ASC-3136?

2009-11-02 Thread Matt Chotin
Well, it's what Closed/Deferred means but I'll see. Sent from my phone. Please excuse brevity or typos. On Nov 2, 2009, at 7:02 AM, Gregor Kiddie gkid...@inpses.co.ukmailto:gkid...@inpses.co.uk wrote: Cheers Matt, Is it possible to have an Adobe employee comment on the issue with something

[flexcoders] Re: Help with Arrays, ArrayCollections Repeaters

2009-11-02 Thread droponrcll
--- In flexcoders@yahoogroups.com, criptopus sd_br...@... wrote: I'm trying to get these X's to appear in a circle and not having much lock with it. The array seems to work when I trace it but nothing appears on the screen. I tried just defining an MXML ArrayCollection and it worked but I

[flexcoders] SSL certificate on linux machine

2009-11-02 Thread Martin Polehla
Hello all, I have a qustion abou HTTPs connections and certificate about AIR/Flex on linux. I have an appliaction built using flexbuilder which use URLloader to an HTTPs appliacion. To work correctly I need have ssl certificate installed before I use my application. On windows, I install

[flexcoders] Re: RemoteObject question/mystery

2009-11-02 Thread creativepragmatic
I know some of the code may be off, but I am trying to understand how a non called function (resultHandler) can return data to the called function in a different class. The way you are trying to do it, I don't think it can. So my question is, if the index.mxml calls the getAll function

[flexcoders] Spark effect skips/displaces component when played reverse

2009-11-02 Thread Markus
Hi, I have a problem with a combined move and rotate (3D) with a spark component. When the effects are played reverse the component is displaced when the effects begin to play. But I don't know why this happens. I have attached the simple example for that. Maybe there is another approach to

[flexcoders] Re: Casting down an object

2009-11-02 Thread jer_ela
Do you need A class objects (ie ones w/o the C property) in your app? If not just add the C property to the A class. It should still be converted correctly. If you still need the A class, add an exportAsB method to create a B class equivelent. --- In flexcoders@yahoogroups.com, bnsmeets

[flexcoders] Re: RemoteObject question/mystery

2009-11-02 Thread jer_ela
how do I actually get the data back to a caller function? you can't. The request is async. The caller has long since finished executing when the result comes back. Have the resultHandler do whatever needs to be done with the result. --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@...

[flexcoders] Re: RemoteObject question/mystery

2009-11-02 Thread droponrcll
--- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: Looking for a little education from all the people smarter than me of remoteObjects. I have always used the MXML version which includes the resultHandler attribute which made managing the returned data easy. However I never

[flexcoders] Re: AIR 1.5.1 Transaction issue: when begin() is called, it doesn't do anything.

2009-11-02 Thread seanmcmonahan
I can recommend three things as I've been doing a fair amount of debugging lately: 1) Check out MonsterDebugger for debugging from your release build 2) Try opening your SQLConnection before calling begin(). I think begin opens a connection but I'm not entirely sure. Also try adding an event

[flexcoders] How do I add a tooltip to the divider in a HDividedBox?

2009-11-02 Thread luvfotography
Hi, I want to add a tooltip to the divider, I assume I want to use the BoxDivider class, but I'm not sure how to do it. thanks,

[flexcoders] Re: multiple filter function of combobox and two checkboxes

2009-11-02 Thread seanmcmonahan
While I don't have an example handy I can hopefully put you on the path. First thing, it doesn't matter what controls you are using to set the filter: the filter will function in the exact same way. For CheckBox and ComboBox you pretty much just listen for the change event and filter when the

Re: [flexcoders] How do I add a tooltip to the divider in a HDividedBox?

2009-11-02 Thread primo411
You can create your own class that extends BoxDivider and has a custom ToolTip, and assign it to the HDividedBox using the dividerClass property: http://livedocs.adobe.com/flex/3/langref/mx/containers/DividedBox.html#dividerClass 2009/11/2 luvfotography ygro...@all-digital-links.com Hi, I

[flexcoders] Re: Casting down an object

2009-11-02 Thread droponrcll
--- In flexcoders@yahoogroups.com, bnsmeets bensme...@... wrote: Hi all, I'm wondering if it is possible to 'hack' some sort of downcasting into AS3. The context is, that I am using a generated webservice proxy from Flex 3, and want to be able to add custom (extra) properties to the

[flexcoders] Handling Relational Data in a Form?

2009-11-02 Thread jc_bad28
I've created a web service that returns a dataset from some relational tables. Tables 1 and 2 are the source tables. View 1 is the selected data that I send out as XML from a web service for the Flex UI. View 1 lists out all of the operations and then a bunch of query stuff, I populate the

RE: [flexcoders] SWFLoader problem

2009-11-02 Thread Alex Harui
Set visible=false until it is loaded 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 chandruflex Sent: Monday, November 02, 2009 4:55 AM To:

RE: [flexcoders] event order issues

2009-11-02 Thread Alex Harui
There should be an event when the result comes back from the db. You can re-synch then. 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 Darrin Kay Sent:

[flexcoders] Chet Haase explains the graphics stack in Flash Player

2009-11-02 Thread dorkie dork from dorktown
I'm looking for the video where Chet describes how the graphics object passes drawing commands to the Flash Player. It was something about how there is a stack of commands that gets called every frame render. Thanks,

[flexcoders] when is concatenatedMatrix set?

2009-11-02 Thread flexaustin
Can anyone tell me when concatenatedMatrix is set during instantiation? Or point me to an article would be great. Or the entire transform object for that matter? Thanks, Jason

[flexcoders] Tab control of repeater items

2009-11-02 Thread Dave Cates
Hi all, I¹m creating an app that needs to make use of the tab control to cycle through the visible controls. Buttons, checkboxes etc are working great but I can¹t seem to be able to tab to the elements within my repeaters. Within the repeaters are custom components made up of things like

Re: [flexcoders] Chet Haase explains the graphics stack in Flash Player

2009-11-02 Thread Vivian Richard
You can ask this question directly to Chet. He is very prompt answering any question through his blog. Here is the link - http://graphics-geek.blogspot.com/ On Mon, Nov 2, 2009 at 2:43 PM, dorkie dork from dorktown dorkiedorkfromdorkt...@gmail.com wrote: I'm looking for the

[flexcoders] Skinning a container - Canvas

2009-11-02 Thread hworke
Hi, I see all the tutorials about skinning different components. What about skinning a canvas? I am trying to skin a Canvas - is that possible?

[flexcoders] Re: Handling Relational Data in a Form?

2009-11-02 Thread jc_bad28
AS3 really goes bonkers with array handling. If I'm not mistaken, it looks like how you access array data is completely dependent on how the array is populated? I finally got an array to populate from my form and then retrieved the array data in a trace(). It also looks like I can create

Re: [flexcoders] Handling Relational Data in a Form?

2009-11-02 Thread Paul Andrews
jc_bad28 wrote: I've created a web service that returns a dataset from some relational tables. Tables 1 and 2 are the source tables. View 1 is the selected data that I send out as XML from a web service for the Flex UI. View 1 lists out all of the operations and then a bunch of query

[flexcoders] Garbage collection crashing flash player

2009-11-02 Thread Aaron Hardy
Hey flexers, My team has been building an application that's graphically heavy. The heaviest portion consists of two sprites that are ~4000x4000 pixels and have a bunch of sprite children and ~20 bitmaps each. The content ends up being ~30 MB for both sprites total, give or take 20 MB. When

[flexcoders] Re: AIR 1.5.1 Transaction issue: when begin() is called, it doesn't do anything.

2009-11-02 Thread handitan
Hi Sean, Thx for the suggestions. I believe that I am kind of have an idea on what causing the issue of this transaction to suddently stop working. Since I thought it might be 1.5.1 SDK issue, so I build it using 1.5.2 SDK but the result is the same. All I can tell right now is this issue

RE: [flexcoders] Chet Haase explains the graphics stack in Flash Player

2009-11-02 Thread Chet Haase
... and I also try to get around to answering questions on this group when I can. I think the video you're referring to is one of the Top Drawer ones (probably the one that dealt with drawing the graphics shapes), which were some of the first videos I posted on my blog. Or maybe it was the

[flexcoders] Firebug tool

2009-11-02 Thread kanu kukreja
Is there's any tool for flex similar to firebug? Thanks kanu

Re: [flexcoders] Chet Haase explains the graphics stack in Flash Player

2009-11-02 Thread dorkie dork from dorktown
Thanks On Mon, Nov 2, 2009 at 9:11 PM, Chet Haase cha...@adobe.com wrote: … and I also try to get around to answering questions on this group when I can. I think the video you’re referring to is one of the “Top Drawer” ones (probably the one that dealt with drawing the graphics

[flexcoders] Re: multiple filter function of combobox and two checkboxes

2009-11-02 Thread stinasius
i know that the filter function will work the same way. but i have a problem with integrating a checkbox filter into a large multi filter function. let me explain... i have a number of controls that am currently using to filter data from a database. so i developed a multi filter function to

[flexcoders] Re: Firebug tool

2009-11-02 Thread gers32
I use FlexSpy (http://code.google.com/p/fxspy/), but I know there are others. Chris.