Re: [flexcoders] Flex Efficiency

2008-06-22 Thread Alen Balja
I basically have the list of SWF paths available in xml and then call them in the SWFLoader. Hundreds of SWF's can be added through admin CMS and become available without the need of recompiling the app. Adding instances of classes is a better alternative to that? Can you please post a quick

Re: [flexcoders] Flex's mx:RemoteObject with remote server?

2008-06-22 Thread Joseph Balderson
http://livedocs.adobe.com/flex/201/html/dataservices_099_11.html http://livedocs.adobe.com/flex/3/html/data_access_3.html http://livedocs.adobe.com/flex/3/html/data_access_4.html http://livedocs.adobe.com/flex/201/langref/mx/rpc/remoting/RemoteObject.html RTFM?

[flexcoders] Re: A great feature for Flex Builder would be getter and setter automation.

2008-06-22 Thread Mike Morearty
Yes, we're doing it -- in fact, Scott Evans, the developer who is implementing this feature, named his whole blog after it! http://gettingandsetting.com/ - Mike Morearty, Flex Builder team --- In flexcoders@yahoogroups.com, Gregor Kiddie [EMAIL PROTECTED] wrote: I believe this is already

[flexcoders] Access a cell in dataGrid

2008-06-22 Thread markgoldin_2000
Can I access a cell in the dataGrid using its coordinates: columndIndex, rowIndex? Or I need a custom renderer? Thanks

[flexcoders] How to set the destination for remoteobject?

2008-06-22 Thread markflex2007
Hi, I have read the folowlling code,how to add real URL to destination? which config file can use to do this? Thanks ?xml version=1.0? !-- fds\rpc\ROParamBind1.mxml. Compiles -- mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:RemoteObject id=ro

[flexcoders] Re: Repeater items with two states and dataProvider binding resetting state

2008-06-22 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: So, within a repeated component, you are modifying the underlying dataProvider item? You can probably find a way to update the DP without triggering the update events. If the DP is an ArrayCollection, then

[flexcoders] Re: Is an event dispatched when an AIR app is closing?

2008-06-22 Thread Amy
--- In flexcoders@yahoogroups.com, Daniel Gold [EMAIL PROTECTED] wrote: Nevermind. Didn't find it right away because my AIR app is based off mx:Application and is chromeless, but I can listen for the closing event on the main Window I spawn and cache the data there. On Sun, Jun 22, 2008

[flexcoders] Change cell's background

2008-06-22 Thread markgoldin_2000
Here is my context menu handler: private function contextMenuHandler(e:ContextMenuEvent):void { DataGridItemRenderer(e.mouseTarget).setStyle(backgroundColor, 1000); } But I dont see any changes on the screen. What am I doing wrong? Thanks

Re: [flexcoders] How to set the destination for remoteobject?

2008-06-22 Thread Diff Gal
Hi, The entry for the destination is done in remoting-config.xml file. Regards, Diffy - Original Message From: markflex2007 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, 22 June, 2008 7:05:03 PM Subject: [flexcoders] How to set the destination for remoteobject? Hi, I

[flexcoders] PLEASE HELP keep Interpolate effect without changing the datasource

2008-06-22 Thread Marcela
Sorry to double post, but although I've been reading like crazy, I still don't know where to start to overide this behaviour? How can I keep the Interpolate effect without changing the datasource? Thanks... Marcela --- In flexcoders@yahoogroups.com, Marcela [EMAIL PROTECTED] wrote: Hello,

[flexcoders] Re: binding mx:tree to custom class

2008-06-22 Thread andrewblinex
I'm sure that there are a number of ways you can do this, among them coding a data descriptor class that implements the IDataDescriptor (http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Partsfile=about_dataproviders_057_15.html) or renaming your

[flexcoders] Re: Test contro height question

2008-06-22 Thread I am Peter, not Lena
Hi Paddy, Thanks for the reply. I'm not using TextArea because I don't need editing functionality but I suppose it's an alternative. I am choosing the option to compile my .css file into a swf in FlexBuilder (for compilation and efficiency reasons with embedded fonts). Does that affect how Flex

[flexcoders] Re: Selection in dataGrid

2008-06-22 Thread markgoldin_2000
How can I hightlight a single cell instead of the whole row? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: The selection model is row based. You can alter what is highlighted, but there are no properties to track selectedColumn. See drawHighlightIndicator

RE: [flexcoders] Re: Test contro height question

2008-06-22 Thread Paddy Keane
it could be 'cos of the same prob we had? https://bugs.adobe.com/jira/browse/SDK-15485 https://bugs.adobe.com/jira/browse/SDK-15485 if it is please vote for the bug! ;) ta paddy ;) From: flexcoders@yahoogroups.com on behalf of I am Peter, not Lena Sent:

[flexcoders] Google Maps - Error #2070 Cannot access Stage

2008-06-22 Thread Dmitri Girski
G'Day All! I've embedded the GoogleMaps into the website and I am getting this weird error #2070: SecurityError: Error #2070: Security sandbox violation: caller http://maps.googleapis.com/maps/lib/map_1_4.swf cannot access Stage owned by http://dental4u.com.au/index.swf. at

[flexcoders] AIR app shows duplicate status, bar, title bar when left idle

2008-06-22 Thread ivo
Hey everyone, I am seeing an usual behavior in an AIR app I am working on. This app does not use systemChrome instead it is a Canvas with a custom title bar at top, then the app contents and status bar at the bottom. Under Windows if I let the app idle in the background for about a minute and

Re: [flexcoders] Re: Is an event dispatched when an AIR app is closing?

2008-06-22 Thread Daniel Gold
The rest of the Windows I spawn in the Application are chromeless by the methods you linked to. The reason I am using Application is because my app doesn't have a main window, it sits in the background without a view initially and spawns windows as notifications come in, etc. I don't consider this

[flexcoders] Dispatch Event in PopUp TitleWindow

2008-06-22 Thread jmfillman
How do I manually trigger an event, in a popup window, from the parent application? For example: In my parent application: myPopUp.dispatchEvent(new MouseEvent(MouseEvent.CLICK)); In the popup window: btnSearch.addEventListener(MouseEvent.CLICK, onClick, false, 0, true); How do I make this

[flexcoders] Re: Change cell's background

2008-06-22 Thread Tim Hoff
1000 isn't a valid color uint, try 0x00 or #00. Setting the background color of an itemRenderer in this way, will probably not give you the desired result; since the itemRenderers are recycled. You're better off over-riding the set data or updataDisplayList functions, in the

[flexcoders] Re: Selection in dataGrid

2008-06-22 Thread Tim Hoff
http://blogs.flexsearch.org/index.shtml?cx=004529497903583791880%3Am_d4\ orvd0hwq=datagrid+row+background+colorcof=FORID%3A9#944 Here's a handy search site http://blogs.flexsearch.org/index.shtml?cx=004529497903583791880%3Am_d4\ orvd0hwq=datagrid+row+background+colorcof=FORID%3A9#944 ; for

Re: [flexcoders] Problems with updateDisplayList() and measure() and infinite loops + bug in CanvasLayout?

2008-06-22 Thread Josh McDonald
Alex, is there a reason CanvasLayout measures centered content from its current position instead of 0,0? What I mean is, does something else rely on that behaviour that you know of? I'd like to file a change request, but I don't wanna waste the time of the Adobe guys if there's no chance of it

Re: [flexcoders] Verifyed RSL Digests for 3.0.2.2113 for framework caching

2008-06-22 Thread Matt Chotin
You're right, we kinda are inconsistent here. The truth on the security fix is that you only need the updated historyFrame.html, so if the SWZ is important I'd recommend just applying that patch manually and you'll be good to go. Matt On 6/20/08 5:41 PM, João Fernandes [EMAIL PROTECTED]

Re: [flexcoders] Re: Return data to FileReference

2008-06-22 Thread Rich Tretola
I will try this Monday morning and let you all know how it works out. Thanks Rich On Fri, Jun 20, 2008 at 8:35 PM, Tracy Spratt [EMAIL PROTECTED] wrote: Yeah, I should be using DataEvent.UPLOAD_COMPLETE_DATA, but I am not, I am using Event.COMPLETE, but I am still getting access to the .data

[flexcoders] Some interesting flexcoders stats

2008-06-22 Thread Matt Chotin
Hey folks, Given the recent big thread on the subject that shall not be named, my colleague Suchit went ahead and got some interesting membership stats since the beginning of the list. Number of people who: Joined group == 14036 Left group == 3686 Were Banned == 631 Got Removed == 359 I would

Re: [flexcoders] Some interesting flexcoders stats

2008-06-22 Thread Josh McDonald
So we're around 10,000? That's a big number :) Must be a lot of lurkers, or at least posters making far less noise than the likes of me :) -Josh On Mon, Jun 23, 2008 at 9:51 AM, Matt Chotin [EMAIL PROTECTED] wrote: Hey folks, Given the recent big thread on the subject that shall not be

[flexcoders] Re: Some interesting flexcoders stats

2008-06-22 Thread Tim Hoff
flexCodersStatus = (mostRecentlyPostedThread == The subject that shall not be named! ? Banned : Active); -TH :-) --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Hey folks, Given the recent big thread on the subject that shall not be named, my colleague Suchit went

[flexcoders] Border collapse in Grid?

2008-06-22 Thread williamkusumo
Is there a CSS border-collapse equivalent to Flex Grid? I want to create a tabular data with 1px border around each cell. And no, I don't want to use DataGrid. Thanks!

Re: [flexcoders] Re: Some interesting flexcoders stats

2008-06-22 Thread Doug McCune
Within then next week I hope to have a fairly complete dataset of date, subject, and name of who posted for close to all the messages ever posted to flexcoders. I might also do a second pass to get full text of each message too. I say close to all because I'm scraping the mail archive website and

[flexcoders] Short question about custom TreeItemRenderer

2008-06-22 Thread Nikolaj Selvik
Hi all, I have been unable to see what exactly is best practice when making custom TreeItemRenderer implementations. My scenario: I have specfic flags in certain nodes of my XML document I am using as dataprovider, and when a TreeItemRenderer renders such a node it will add different elements to

Re: [flexcoders] Google Maps - Error #2070 Cannot access Stage

2008-06-22 Thread Meaglith Ma
I think it didn't need the crossdomain.xml. Dmitri Girski 写道: G'Day All! I've embedded the GoogleMaps into the website and I am getting this weird error #2070: SecurityError: Error #2070: Security sandbox violation: caller http://maps.googleapis.com/maps/lib/map_1_4.swf cannot access

[flexcoders] Re: Call container functions from swfloader?

2008-06-22 Thread zhuyuzhou
Thanks Alex, I tried the ExternalInterface, but it seems like it can only call the javascript functions or the functions of the container of flash player not the swfloader. Could you provide me some third party solutions? or some keywords to search. --- In flexcoders@yahoogroups.com, Alex Harui

RE: [flexcoders] Re: Call container functions from swfloader?

2008-06-22 Thread Alex Harui
http://www.gskinner.com/blog/archives/2007/07/swfbridge_easie.html http://tracethis.com/archives/2006/07/13/swf9-to-swf8-communication-ei-n ot-lc-part-1/ http://tracethis.com/archives/2006/07/13/swf9-to-swf8-communication-ei-n ot-lc-part-2/ From:

RE: [flexcoders] Short question about custom TreeItemRenderer

2008-06-22 Thread Alex Harui
The TreeItemRenderer displays icons at some point. Use the same place for your optional items. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nikolaj Selvik Sent: Sunday, June 22, 2008 6:12 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Problems with updateDisplayList() and measure() and infinite loops + bug in CanvasLayout?

2008-06-22 Thread Alex Harui
I think it is worth filing a bug. I don't know of any scenario off-hand, but that's not my area of expertise. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Sunday, June 22, 2008 3:09 PM To:

RE: [flexcoders] Dispatch Event in PopUp TitleWindow

2008-06-22 Thread Alex Harui
myPopUp.btnSearch.dispatchEvent(new MouseEvent(... ? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jmfillman Sent: Sunday, June 22, 2008 12:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Dispatch Event in PopUp TitleWindow

RE: [flexcoders] Access a cell in dataGrid

2008-06-22 Thread Alex Harui
You can, but keep in mind renderers get recycled. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Sunday, June 22, 2008 6:23 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Access a cell in dataGrid Can

[flexcoders] Scrolling - Firefox 2/3 vs IE

2008-06-22 Thread Richard Rodseth
I don't have a simple test case to share yet, but we are seeing scrollbars (not at the application level) which appear as desired on Firefox 2, but not on Firefox 3 or IE. Anyone else run into any such anomalies? - Richard

RE: [flexcoders] Flex Efficiency

2008-06-22 Thread Alex Harui
I suggest you look at the examples for how modules work. I do not have time to customize examples From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alen Balja Sent: Sunday, June 22, 2008 12:00 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] viewSourceURL is getting overridden ??

2008-06-22 Thread luvfotography
How do I set viewSourceURL? Everytime that I edit the value, it gets overridden when I 'export release build' and select source files. it gets set to: viewSourceURL=srcview/index.html I would like to change this to: viewSourceURL=mydir/srcview/index.html thanks,

[flexcoders] Can't bind mx:app's verticalScollPosition to a variable?

2008-06-22 Thread jack_freud
Hi, It seems that I can't bind a variable to the verticalScrollPosition property of my Flex app. I want to do it using Cairngorm and my model locator, not sure how else to have a command scroll my application without breaking the paradigm and sending another message out that the app is listening

[flexcoders] Re: imports in super and sub class

2008-06-22 Thread learner
hmm thanks :) On Thu, Jun 19, 2008 at 5:24 PM, learner [EMAIL PROTECTED] wrote: Hi all, this is a dumb confusion that I have I have a sub class extending its a parent class Now if i import a class in some parent class . .so do i also need to import that class in sub class if i need

[flexcoders] ADL crash

2008-06-22 Thread Josh Millstein
I'm having some real issues trying to track down a bug that is crashing the adl. Can anybody give me a list of reasons that adl crashes? -- [EMAIL PROTECTED] 785-832-9154

[flexcoders] Re: Some interesting flexcoders stats

2008-06-22 Thread arieljake
What will the data format be so we can plan ahead? --- In flexcoders@yahoogroups.com, Doug McCune [EMAIL PROTECTED] wrote: Within then next week I hope to have a fairly complete dataset of date, subject, and name of who posted for close to all the messages ever posted to flexcoders. I might

Re: [flexcoders] Re: Some interesting flexcoders stats

2008-06-22 Thread Doug McCune
I'm planning on letting people download the sqlite database file. That's a single file (with the .db extension I think) that you can load into any air app and access. I could also do a CSV, but it's a lot of data (hell, excel can't even load that many rows). Doug On Sun, Jun 22, 2008 at 10:18