[flexcoders] Electrolux

2011-10-10 Thread Dan Pride
Has anyone up here worked, or tried to work with electrolux before?

[flexcoders] Re: DataGrid column width to be calculated by headerText

2011-10-10 Thread kg_andrew21
thanks for the answer! --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > Nope, no quick fix. > > You would need to loop over all the data and find the longest strings. You > would then need to calculate the widths based on FontMetrics for the font you > are using. > > I have seen an ex

[flexcoders] Basic Web Service Question

2011-10-10 Thread David Nester
Greetings! I have a project which utilizes web services for accessing data and all of the webservice declarations are located within the Declarations tags. I "believe" the webservices are preloaded before the user begins interacting with the application, but this poses the question Is th

[flexcoders] Re: binding controls with Xml in flex

2011-10-10 Thread valdhor
Google two way binding. --- In flexcoders@yahoogroups.com, Asad Zaidi wrote: > > hello every body, > i need to bind Xml with my flex controls. by binding i mean that data should > flow in both directions, from xml to control and also control to xml. for e.g > there is textinput binded with xml

[flexcoders] Re: custome list scroller issue

2011-10-10 Thread valdhor
Copy the built-in scroller code to your custom component and modify that. --- In flexcoders@yahoogroups.com, j2me_soul wrote: > > I create a custom Scroller Skin all code designed by flash catalyst. > My computer has two monitor when I drag the application to the other monitor > then switch to f

[flexcoders] Re: DataGrid column width to be calculated by headerText

2011-10-10 Thread valdhor
Nope, no quick fix. You would need to loop over all the data and find the longest strings. You would then need to calculate the widths based on FontMetrics for the font you are using. I have seen an example in the past so Google should be your friend. --- In flexcoders@yahoogroups.com, "kg_and

[flexcoders] Re: sandbox problem someone help me

2011-10-10 Thread valdhor
These security errors are generally at the other end. ie. ustream (Or whatever domain you are trying to call) has to have a crossdomain.xml file that allows you to call it. There is nothing you can do at your end to override this. They have to let you access their stuff (Or provide an API to you

[flexcoders] Re: Parsing Soap Response

2011-10-10 Thread valdhor
Have you seen the training video at http://tv.adobe.com/watch/adc-presents/build-a-flex-application-that-connects-to-a-soap-web-service/ --- In flexcoders@yahoogroups.com, "David Nester" wrote: > > Greetings! > > I have a SOAP response from a webservice that i am trying to parse to a > datagr

[flexcoders] Re: help with a repeater

2011-10-10 Thread valdhor
As I said, it is easier to package up the items into a component and repeat that. To that end, here is an example (Unfortunately, it appears that vimeo is set up not to allow embedding. It does work with other web sites however): Application: http://www.adobe.com/2006/mxml"; layout="vertical" xml

Re: [flexcoders] Re: RTE when setting spark gridcolumn visible property (f

2011-10-10 Thread Alex Harui
Even columns with visible=false get instantiated when declared in MXML. On 10/10/11 3:36 AM, "bhaq1972" wrote: Yes agreed. In our newer applications we do that. Just curious, if a column is defined as visible=false in mxml. That wouldn't be a memory consumption would it? --- In flexcode

Re: [flexcoders] reading pdf book into air app

2011-10-10 Thread Csomák Gábor
oh, i see you have half of the maillist.. please use google, or duckduckgo to search the web for solutions.. 2011/10/10 Csomák Gábor > look at theese: > adobe solution: > http://livedocs.adobe.com/flex/3/html/help.html?content=PDF_1.html > 3rd party: http://www.devaldi.com/?p=212 > or check out

Re: [flexcoders] reading pdf book into air app

2011-10-10 Thread Csomák Gábor
look at theese: adobe solution: http://livedocs.adobe.com/flex/3/html/help.html?content=PDF_1.html 3rd party: http://www.devaldi.com/?p=212 or check out this to convert pdf to swf: speifically pdf2swf- http://www.swftools.org/pdf2swf.html On Mon, Oct 10, 2011 at 4:31 PM, Gustavo Duenas < gdue...@

[flexcoders] Re: using a coldfusion proxy to show twitter feed in flex app

2011-10-10 Thread valdhor
Sorry, I am out of my depth here. I don't use ColdFusion. All I can suggest is creating a debug file on the server and dump to the file to see if you are getting the desired response. After that, use Charles to see if the server is sending the correct response. --- In flexcoders@yahoogroups.com

[flexcoders] reading pdf book into air app

2011-10-10 Thread Gustavo Duenas
can I read a pdf book into an air app or do I have to call it to be read by the adobe reader? Also can I read the pdf into air using an

[flexcoders] binding controls with Xml in flex

2011-10-10 Thread Asad Zaidi
hello every body, i need to bind Xml with my flex controls. by binding i mean that data should flow in both directions, from xml to control and also control to xml. for e.g there is textinput binded with xml tag. i want value of xml should be displayed in text input but if user changes the value

[flexcoders] Re: RTE when setting spark gridcolumn visible property (f

2011-10-10 Thread bhaq1972
Yes agreed. In our newer applications we do that. Just curious, if a column is defined as visible=false in mxml. That wouldn't be a memory consumption would it? --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > If that is the use case I would have built that data grid and columns on t