[flexcoders] Re: Flex Debug Problem

2009-11-04 Thread polestar11
Hi there I managed to find a solution to the problem. It has to do with outdated app xml config files (which I think don't get committed into source control) So after importing my project from source control, I create a new application (eg. Test) and run / debug it, which works fine. Compare

[flexcoders] Re: FB3 Debug: Launch Failed: Invalid argument

2009-11-04 Thread polestar11
Have you tried debugging your app with FireFox? I'm also on a mac but have never tried debugging using Safari Cheers Tracy --- In flexcoders@yahoogroups.com, Stephen Downs st...@... wrote: I've having an extremely agonizing time dealing with mysterious alert messages when trying to debug my

Re: [flexcoders] Re: Firebug tool

2009-11-04 Thread kanu kukreja
its a good tool but i don't know the way to prevent the button it adds for compiling into the swf when exporting a production release? On Tue, Nov 3, 2009 at 12:38 PM, gers32 c...@kitry.fr wrote: I use FlexSpy (http://code.google.com/p/fxspy/), but I know there are others. Chris.

[flexcoders] Re: Wondering about buttons..

2009-11-04 Thread polestar11
I would do the same, where these public properties update the style information of the button (icon labelPlacement) I would also probably do this as an mxml component (with the code inside a mx:Script tag) --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: If I were going

[flexcoders] Re: How can I populate the data in PopUpMenuButton?

2009-11-04 Thread polestar11
I have never worked with an AdvancedDataGrid, but for a regular DataGrid I would do the following: - create a new component that will be the item-renderer (possibly extend DataGridItemRenderer) - this new component would contain a popup-menu component - at this component level you have access to

Re: [flexcoders] Re: Firebug tool

2009-11-04 Thread primo411
You can remove the button and setup a keyboard shortcut. You can use conditionnal compilation too, it would be cleaner: http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_21.html For a project of mine, I wrote a logger that sends the messages to Firebug too (LGPL license):

Re: [flexcoders] Re: FB3 Debug: Launch Failed: Invalid argument

2009-11-04 Thread primo411
In Eclipse, try to open the 'Error log' view, and you will get more precise informations about the errors you encounter. 2009/11/4 polestar11 polesta...@yahoo.com Have you tried debugging your app with FireFox? I'm also on a mac but have never tried debugging using Safari Cheers Tracy

RE: [flexcoders] flexcoders stats and charts (and full data download)

2009-11-04 Thread Gregor Kiddie
9th in 2009? I didn't think I'd posted that much! (Number 2 in the Brit list though, I demand a deathmatch with Tom!) I wonder how many of those posts were getting into arguments with Alex and Matt? Too many I guess. Still, lists like this always bring out the competitive in me. I wonder, do +1

[flexcoders] More weirdinterestingspecific performance issue for RegExp!

2009-11-04 Thread ha a
hi guys, *Questions*: 1: Why so great difference between same specific RegExp and line? and why only in the second run, we have performance issue? I can see the only difference is the two RegExp are different instances. 2: Any clue or hint to fix this issue? *Backgrounds*: The air program goes

Re: [flexcoders] What's up with Flashbuilder beta2 and the export release build

2009-11-04 Thread Nick Collins
Um.. that's why it's Beta. On Tue, Nov 3, 2009 at 6:41 PM, djhatrick djhatr...@yahoo.com wrote: Takes a half hour, then says my project has errors and can't do it -- the compiler can't find em i guess -- what a suck-a-thon!

[flexcoders] Sandbox violation on second socket send

2009-11-04 Thread Simon
Hi, I have a Flex client using a Flash binary (TCP) socket for communication with a Java server. I have a localhost (Apache) server providing a crossdomain.xml file which is wide open just while I am testing. My code successfully loads the policy file on startup. I then connect the socket

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

2009-11-04 Thread stinasius
ok... i have officially failed to get this working so here is my proposal, i will pay to get this done for me. anyone out there willing to write the whole multifilter function from the ground up please let me know so we can negotiate the price. you can get to me on my email address

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

2009-11-04 Thread Gregor Kiddie
Jumping into this thread late, what didn't work with the code you posted on Tuesday? Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit our

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

2009-11-04 Thread stinasius
well, am trying to integrate some checkbox filter into a multiple filter function and its giving me hell. basically am trying to filter an arraycollection based on multiple criteria using different components like slider, combo box, radio buttons and check boxes. while i have the rest of the

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

2009-11-04 Thread Gregor Kiddie
Ah ok... I've got you. How about trying this for the filter function? private function myFilterFunction(item:Object): Boolean { return(item.price = sliderFromValue item.price = sliderToValue) (item.city == selectedCity || selectedCity == All) (item.location == selectedLocation ||

[flexcoders] Urgent help for table

2009-11-04 Thread kaustubh_chaubal
In my application, I m able to tab through the buttons,textboxes, drop down and the AdvancedDataGrid on the page. But I m unable to tab through the buttons and checkboxes inside the AdvancedDataGrid, which are rendered through itemRenderer. Please let me know whether is it possible or not. If

[flexcoders] urgent help

2009-11-04 Thread kaustubh_chaubal
In my application, I m able to tab through the buttons,textboxes, drop down and the AdvancedDataGrid on the page. But I m unable to tab through the buttons and checkboxes inside the AdvancedDataGrid, which are rendered through itemRenderer. Please let me know whether is it possible or not. If

[flexcoders] // advanceddatagridcolumn header renderer query //

2009-11-04 Thread arindam dhar
Hi, I have a header renderer class(CompaniesHeaderRenderer) which extends mx.controls.advancedDataGridClasses.AdvancedDataGridHeaderRenderer, and use it the following way, mx:AdvancedDataGridColumn headerText=Companies dataField=Companies  headerRenderer=CompaniesHeaderRenderer/ I have

[flexcoders] Adobe AIR Application margin/padding

2009-11-04 Thread swd120x
I've been working on an air application that will lauch swf based presentations to Full Screen mode. Is there a way to eliminate the margin/padding around the edges of the AIR application? I've never had this issue with a general FLEX app. Padding, Margin and Border are all set to 0px in the

[flexcoders] Re: How can I put a PopUPMenuButton in an AdvancedDatagridColumn?

2009-11-04 Thread thomas_13s
Hi, Thanks a lot.please let me know looking the code i have included how can I show PopUpMenuButton on the Drill-Down column and populate the PUButton with the dObj.label and dObj.url which i ahve added to ddArr now. thanks in advance, Tom. --- In flexcoders@yahoogroups.com, valdhor

[flexcoders] JPG Encoding Speed Issue

2009-11-04 Thread gimlilongbow
Greetings, all, I'm working on a Flex project in the AIR platform which I want to generate several different file sizes of JPGs that I've brought into the program. The program locks up when generating the new JPGs, though, and I understand that has to do with the single-thread model in

RE: [flexcoders] Re: how may I store values to function's arguments? REFdn7045338143

2009-11-04 Thread dennis
Thanks Amy. it works!!! dennis ...we are what we are doing... P Think! before you print. Try: private function getXY(x:int, y:int):Object { return {x:10, y:20); } private function test():void { var obj:Object = getXY(0, 0); trace('x: ' + obj.x + ' y: ' + obj.y); ] HTH; Amy

Re: [flexcoders] Re: FB3 Debug: Launch Failed: Invalid argument

2009-11-04 Thread Stephen Downs
Wow total voodoo: the error just disappeared after I quit Flex Builder and launched yet again (I forgot to mention I tried doing this several times as well). The only thing different I can think of is that Safari launched first in this debug session. I will try Firefox if this rears it's

[flexcoders] Re: What's up with Flashbuilder beta2 and the export release build

2009-11-04 Thread djhatrick
Right. Tanks for remindin me. --- In flexcoders@yahoogroups.com, Nick Collins ndcoll...@... wrote: Um.. that's why it's Beta. On Tue, Nov 3, 2009 at 6:41 PM, djhatrick djhatr...@... wrote: Takes a half hour, then says my project has errors and can't do it -- the compiler can't

RE: [flexcoders] JPG Encoding Speed Issue

2009-11-04 Thread Gregor Kiddie
Take a look at he following article, it lays some of the options out. They are all fairly good options. http://blog.everythingflex.com/2009/01/19/green-threading-psuedo-threads -or-air-as-a-server/ To answer your second question, where ever you and your users are comfortable with the resizing

[flexcoders] Re: How can I put a PopUPMenuButton in an AdvancedDatagridColumn?

2009-11-04 Thread valdhor
If you could post some working sample code (With sample data - not with a server call), I could take a look. --- In flexcoders@yahoogroups.com, thomas_13s thomas_...@... wrote: Hi, Thanks a lot.please let me know looking the code i have included how can I show PopUpMenuButton on the

[flexcoders] Building components at runtime

2009-11-04 Thread prodanzr
Hi all Thanks to the success of my first Flex application I've been asked to write a new one that is required to build the user interface from XML data it receives from a server. So the app sends a request to an HTTP Server and gets XML back that signifies such things as username, string,

[flexcoders] Re: Building components at runtime

2009-11-04 Thread droponrcll
--- In flexcoders@yahoogroups.com, prodanzr tendan...@... wrote: Hi all Thanks to the success of my first Flex application I've been asked to write a new one that is required to build the user interface from XML data it receives from a server. So the app sends a request to an HTTP

[flexcoders] Re: Firebug tool

2009-11-04 Thread gers32
I open Firebug whenever I type the Konami Code, so it's never really officially there, but can be helpful sometimes in production...

Re: [flexcoders] Re: Firebug tool

2009-11-04 Thread kanu kukreja
i tried with demonster debugger and reflexutil3 and i found them good. On Wed, Nov 4, 2009 at 11:16 PM, gers32 c...@kitry.fr wrote: I open Firebug whenever I type the Konami Code, so it's never really officially there, but can be helpful sometimes in production...

[flexcoders] Asynchronous calls in custom validator's doValidation method

2009-11-04 Thread pmstp
Hi all, I'm trying to call an asynchronous WebService in a custom validator's doValidation (which is a synchronous method). I'm using a while loop around a boolean variable as a poor man's spinlock but that causes the CPU usage to dramatically increase leading to the browser asking users if

[flexcoders] When the creationComplete event is fired on a TitleWindow

2009-11-04 Thread powers
I have a title window that I'm creating and passing data to. I want to create children of the title window based on this data and I don't want to show the title window until the children have been created and added to the title window. titleWindow = new SomeComponent(); titleWindow.data =

RE: [flexcoders] Building components at runtime

2009-11-04 Thread Deepa Subramaniam
This is definitely possible, and is essentially what Flash Builder's Design View does (FB's Design View is just a large Flex application) under the hood. You will want to parse your XML and build up Flex objects at runtime (using the new operator), set properties on the objects based on the

Re: [flexcoders] Building components at runtime

2009-11-04 Thread Fotis Chatzinikos
That is probably a bit over the top :-) Check your data. If they are similar in structure and do not change (the structure of the data, not the data) you can probably use a couple or repeaters, lists, and so on... On Wed, Nov 4, 2009 at 9:10 PM, Deepa Subramaniam dsubr...@adobe.comwrote:

Re: [flexcoders] Tab control of repeater items

2009-11-04 Thread Dave Cates
Hey Alex, Thanks for your reply. How would an MXML custom component implement IFocusManagerComponent ? I also thought the focusEnabled=true and tabEnabled=true were the default settings? I have hardcoded them too but no luck hence thinking the implementation of IFocusManagerComponent might be

Re: [flexcoders] Tab control of repeater items

2009-11-04 Thread Dave Cates
Hey Alex, Thanks for your reply. How would an MXML custom component implement IFocusManagerComponent ? I also thought the focusEnabled=true and tabEnabled=true were the default settings? I have hardcoded them too but no luck hence thinking the implementation of IFocusManagerComponent might be

RE: [flexcoders] Re: real time messanging... REFdn2025035484

2009-11-04 Thread dennis
will be developed? JPEE? Please give some guidelines to search and read respectively. Best regards dennis __ NOD32 4571 (20091104) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com

[flexcoders] Re: Fonts re-vanishing in module - Solved finally

2009-11-04 Thread djhatrick
I didn't trace I used the debugger but it doesn't seem to be a problem now. Wow how dumb of me, i had the style sheet embedded to the module and didn't even notice, probably because it was the first one I created. This is fixed and I am doing things properly, this is great read for anybody

[flexcoders] SwfObject and 3.41 compiler - why not?

2009-11-04 Thread djhatrick
I've been using the swfobject compiler for a while now and, it's ease of use and simple api is great. I know on Flashbuilder 4 projects that use the new compiler and actionscript project, the swfOBject template is used Question: How come after the cross-scripting vulnerability in the