Re: [flexcoders] application.enabled = false when application is communicating with server

2013-02-25 Thread Alex Harui
You could popup a modal dialog. On 2/25/13 8:33 AM, jmfamp m...@availdata.com wrote: I would like to have the application.enabled set to false anytime the cursur changes to stop watch (communication with backend server) and have the application.enabled set to true when the cursor reverts

Re: [flexcoders] pdf in flash/flex alternative to flexpaper?

2013-02-15 Thread hamann . w
Hi, many years ago I successfully converted specific PDFs (they were all created by the same generator and used a fixed set of fonts and drawing primitives) The pipeline consisted of ghostscript to translate the pdf into uncompressed, a perl script to convert the graphic instructions into ming

Re: [flexcoders] What happened to the Flex Style Explorer?

2013-02-14 Thread Dave Glasser
, February 14, 2013 12:32 AM Subject: Re: [flexcoders] What happened to the Flex Style Explorer? [1 Attachment] [Attachment(s) from Tandon, Rishi included below] PFA is the Flex 3 style explorer build for desktop. Cheers! Rishi From: Dave Glasser dglas

Re: [flexcoders] Equivalent of editorUsesEnterKey in spark

2013-02-14 Thread Alex Harui
Hmm, that looks like a bug. Feel free to file it. You should be able to call stopPropagation. The code looks like it is listening to the renderer and the TextArea should be a child so if you cancel it before it bubbles up to the renderer it should work. Another option is to track if keydown

Re: [flexcoders] Re: What happened to the Flex Style Explorer?

2013-02-14 Thread Rishi Tandon
Please Find Attached :) Sent from my iPhone On Feb 14, 2013, at 10:25 PM, Gohlke, Greg greg.goh...@edictsystems.com wrote: Sorry for my ignorance but what is PFA? Thanks, Greg This message may contain confidential information only for the use of the intendedrecipient.

Re: [flexcoders] Re: Mobile App Entitlements

2013-02-13 Thread doug g
Isnt it some UID that apple uses for its submission process? Im talking a little out of my depth here, but the one time I did this (for a class), it involved compiling the app as native XCode, then opening it in XCode and going through the entitlement process. Maybe look up how they do ad hoc

Re: [flexcoders] Re: Mobile App Entitlements

2013-02-13 Thread Jake Churchill
No, Flashbuilder takes care of all this for you. It takes forever but it cross-compiles over to a native app. All you have to provide are the provisioning profile and cert files which I had and didn't change for what I'm talking about. This is an App Store distribution which is different than

Re: [flexcoders] What happened to the Flex Style Explorer?

2013-02-13 Thread Brendan Meutzner
Not just the Style Explorer, but the component explorer as well. I'm hoping that this was simply a mistake, and that it wasn't intentionally removed. If Adobe claims to still be committed to furthering the open source development on Flex, then dropping support for tools such as this is a bit of

Re: [flexcoders] What happened to the Flex Style Explorer? [1 Attachment]

2013-02-13 Thread Tandon, Rishi
PFA is the Flex 3 style explorer build for desktop. Cheers! Rishi From: Dave Glasser dglas...@pobox.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Thursday, February 14, 2013 1:09 AM Subject: [flexcoders] What happened to the Flex Style

Re: [flexcoders] Help needed regarding image vectorization in flex reference in details

2013-02-11 Thread anas naeem
Thanks Alex(Flex)  I would definitely try what you suggested and would come up with some results  Regards  Anas.  --- On Mon, 2/11/13, Alex Harui aha...@adobe.com wrote: From: Alex Harui aha...@adobe.com Subject: Re: [flexcoders] Help needed regarding image vectorization in flex reference

Re: [flexcoders] Help needed regarding image vectorization in flex reference in details

2013-02-10 Thread Alex Harui
I think you want to read up on image edge detection. On 2/9/13 10:37 PM, anas naeem maverick_0...@yahoo.com wrote: Hi everyone, I need help/guidance regarding image vectorization in flex . As a reference its shown here http://www.streetshirts.com/creation.aspx and by clicking on the

RE: [flexcoders] Re: Code not lining up - brackets

2013-02-08 Thread Davidson, Jerry
using Flash Builder 4.0.1. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alex Harui Sent: Thursday, February 07, 2013 10:20 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Code not lining up - brackets Did you say you are using a custom

RE: [flexcoders] Re: Code not lining up - brackets

2013-02-07 Thread Davidson, Jerry
Jay, Thanks for the response. And thanks for the heads up. And thanks for not commenting on how silly a single case is. I removed the braces from the case statement and I continue to have the cursor before either the last or the next t last closing brace pointing to the first open one.

Re: [flexcoders] Re: Code not lining up - brackets

2013-02-07 Thread Alex Harui
Did you say you are using a custom editor? Do you have FlashBuilder or another Flex IDE? Is it confused about brace matching? If not, it could be the editor you are using. On 2/7/13 10:33 AM, Davidson, Jerry jerry.david...@illinois.gov wrote: Jay, Thanks for the response. And thanks

Re: [flexcoders] Frustrations with the profiler - analyzing memory usage.

2013-02-06 Thread Nigel Magnay
Thanks for that - that's very helpful information. I'm getting dragged into diagnosis because on very low-spec machines our app is tending to eat memory causing it to heavily slow down. I've managed to diagnose some of these (use of setTimeout, Bindings that never go away) which is liable to help

Re: [flexcoders] Frustrations with the profiler - analyzing memory usage.

2013-02-06 Thread Alex Harui
I have never seen the localconnection hack fail to GC everything, but it has been over a year since I was last in the profiler, so maybe more recent players don’t GC everything, but I would be surprised if that was the case. That’s because the LC hack wasn’t supposed to GC everything, but once

Re: [flexcoders] FLEX with Maven

2013-02-05 Thread Tandon, Rishi
You want to TRY the FLEX MOJOS. I have used in some Flex project. Do check with the flex sdk versioning. http://code.google.com/p/flex-mojos/ Regards, Rishi From: faizal_ac faizal...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tuesday, February 5, 2013

Re: [flexcoders] Frustrations with the profiler - analyzing memory usage.

2013-02-05 Thread Alex Harui
The true test of a leak is whether your OS’s process manager says that memory consumption keeps going up. Before we had a profiler, we would add code to the app to exercise some sequence (by faking button events, etc), force garbage collection, and report System.totalMemory over and over again

Re: [flexcoders] Re: Binding using as3

2013-01-31 Thread Paul A.
On 31/01/2013 15:13, aceoohay wrote: Paul, BTW I did try BindingUtils.bindProperty(vtiA,x,this,_y); and it did not seem to work for me. It recognized _y as it required that I change it to a public variable. I was suprised that you were binding a private variable - that only makes sense if

Re: [flexcoders] Re: Binding using as3

2013-01-31 Thread Alex Harui
It will be faster if you just hand-code the equivalent of: [Bindable] private var _y:int as: private var __y; private function get _y():int { return __y; } private function set _y(value:int):void { if (value != __y) { __y = value;

Re: [flexcoders] Binding using as3

2013-01-31 Thread claudiu ursica
look at BindingUtils.bindProperty() C From: aceoohay pa...@compuace.com To: flexcoders@yahoogroups.com Sent: Wednesday, January 30, 2013 11:17 PM Subject: [flexcoders] Binding using as3   I have customized textinput control with a property of x. In my

Re: [flexcoders] Binding using as3

2013-01-30 Thread Paul A.
On 30/01/2013 23:17, aceoohay wrote: I have customized textinput control with a property of x. In my program I instntiate the control as vtiA. My program has a bindable variable called _y. I would like everytime that _y is changed by my program that the property x of the control vtiA

Re: [flexcoders] Compiling and debugging against a remote Coldfusion server

2013-01-28 Thread Nick Collins
Again, to kind of echo what Brendan said, if this guy can't figure out simple remoting to a Coldfusion server, I would question my choice. Coldfusion is by far the simplest, most plug and play remoting to Flex there is, and there is plenty of documentation available showing you exactly how to do

Re: [flexcoders] Re: SWFloader base path

2013-01-26 Thread Alex Harui
I’m not sure I understood that. SWFLoader overrides default Flash behavior and makes all of your relative paths relative to the SWF using that SWFLoader. On 1/25/13 11:22 PM, max.sammie max.sam...@yahoo.com wrote: Thanks for the response Alex. I see the you created a base variable in

Re: [flexcoders] Dynamic DataGrid

2013-01-25 Thread doug g
Something like this? ?xml version=1.0 encoding=utf-8? s:Application xmlns:fx=http://ns.adobe.com/mxml/2009; xmlns:s=library://ns.adobe.com/flex/spark xmlns:mx=library://ns.adobe.com/flex/mx xmlns:view=com.nexage.common.view.nexWizard.view.*

Re: [flexcoders] SWFloader base path

2013-01-25 Thread Alex Harui
{code} fx:Script ![CDATA[ [Bindable] private var base=”/access/”; ]] /fx:Script mx:SWFLoader id=”swfloader” ... source=”{base + ‘nested.swf’}” / {code} On 1/25/13 3:59 PM, max.sammie max.sam...@yahoo.com wrote: I am using SWFLoader to nest an swf inside of my main flex application. I need

RE: [flexcoders] Re: From DataGrid to Clipboard and Excel

2013-01-19 Thread Mark Fuqua
Very sweet.I don't have a particular use for this right now.but I'll sure be looking for one! From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tony Obermeit Sent: Saturday, January 19, 2013 12:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: From

Re: [flexcoders] New Spark DG vs. MX ADG

2013-01-17 Thread Alex Harui
The original goal of Spark was to have only one DG that had all of the features of ADG in it. Spark DG still can’t match ADG so you have to decide what features you need and which component is the best way to achieve your goal. There are trade-off as well: you may choose ADG for grouping

RE: [flexcoders] Dynamic DataGrid

2013-01-14 Thread Sells, Fred
Try visible=false on a column without data, or don't specify columns and it will only show the data but the headings can be ugly. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Oleg Konovalov Sent: Monday, January 14, 2013 11:04 AM To:

Re: [flexcoders] How to call page down function in Flex DataGrid

2013-01-07 Thread Alex Harui
Set verticalScrollPosition On 1/6/13 10:39 PM, umd.wang wangjip...@gmail.com wrote: I have a DataGrid control in Flash Builder, it shows a long list of data. I want to set a timer, so every time the timer ticks, it will call a function which makes the DataGrid control do a pagedown

Re: [flexcoders] Compiling and debugging against a remote Coldfusion server

2013-01-07 Thread Brendan Meutzner
- ColdFusion root would be the base installation folder for ColdFusion (Windows: C:\Coldfusion9 Mac: /Applications/Coldfusion9) - Web Root will be the wwwroot directory within the Coldfusion folder - Root URL is http://localhost:8500 I would seriously question the decision of the

RE: [flexcoders] Compiling and debugging against a remote Coldfusion server

2013-01-07 Thread Mark Fuqua
Sent: Monday, January 07, 2013 4:04 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Compiling and debugging against a remote Coldfusion server - ColdFusion root would be the base installation folder for ColdFusion (Windows: C:\Coldfusion9 Mac: /Applications/Coldfusion9

Re: [flexcoders] Compiling and debugging against a remote Coldfusion server

2013-01-07 Thread Brendan Meutzner
Do you have a code repository for the ColdFusion content setup? (ie. Subversion, CVS, TeamSite, etc...) I have never debugged against a remote ColdFusion server, but it looks possible: http://help.adobe.com/en_US/ColdFusionBuilder/Using/WS0ef8c004658c1089-31c11ef1121cdfd6aa0-7fef.html You'll

Re: [flexcoders] Re: Flex alternatives

2012-12-23 Thread John McCormack
for the end of term. It's a great thing that Adobe have continued to keep you involved with the project. John On 21/12/2012 21:43, Alex Harui wrote: Re: [flexcoders] Re: Flex alternatives Actually, I’m not just hanging in there, I’m still paid by Adobe to spend all of my time on Flex. My

Re: [flexcoders] Re: Flex alternatives

2012-12-23 Thread Alex Harui
my delayed posts but I have been teaching three days a week and busy winding up the apprentices assessments for the end of term. It's a great thing that Adobe have continued to keep you involved with the project. John On 21/12/2012 21:43, Alex Harui wrote: Re: [flexcoders] Re: Flex

Re: [flexcoders] Re: Flex alternatives

2012-12-21 Thread John McCormack
/2012 05:50, Alex Harui wrote: Re: [flexcoders] Re: Flex alternatives Well, there are several pieces. ActionScript is a language. It is really only the dozen classes or so in the “top-level” in the ASDoc. String, int, RegEx, Array, Vector, a few functions like unescape, etc, plus a bunch

Re: [flexcoders] Re: Flex alternatives

2012-12-21 Thread Alex Harui
: Re: [flexcoders] Re: Flex alternatives Well, there are several pieces. ActionScript is a language. It is really only the dozen classes or so in the “top-level” in the ASDoc. String, int, RegEx, Array, Vector, a few functions like unescape, etc, plus a bunch of keywords and stuff like “var

Re: [flexcoders] Re: Flex alternatives

2012-12-21 Thread John McCormack
On 21/12/2012 18:52, Alex Harui wrote: Re: [flexcoders] Re: Flex alternatives To not allow existing SWFs to play where they currently play would “break the web” and Adobe has no interest in doing that. The next generation of AS is supposed to be easy to migrate to if you just want to get

Re: [flexcoders] Re: Flex alternatives

2012-12-21 Thread Alex Harui
...@easypeasy.co.uk wrote: On 21/12/2012 18:52, Alex Harui wrote: Re: [flexcoders] Re: Flex alternatives To not allow existing SWFs to play where they currently play would “break the web” and Adobe has no interest in doing that. The next generation of AS is supposed to be easy to migrate

Re: [flexcoders] Re: Flex alternatives

2012-12-19 Thread John McCormack
05:38, Alex Harui wrote: Re: [flexcoders] Re: Flex alternatives Things get lost in translation, but one goal of the parallel frameworks is to not leverage things that get lost in translation. Otherwise, since JS and AS are ECMA-based, the translation works pretty well. Keep in mind

Re: [flexcoders] Re: Flex alternatives

2012-12-19 Thread Alex Harui
it is doing similar work? John On 18/12/2012 05:38, Alex Harui wrote: Re: [flexcoders] Re: Flex alternatives Things get lost in translation, but one goal of the parallel frameworks is to not leverage things that get lost in translation. Otherwise, since JS and AS are ECMA-based

Re: [flexcoders] Re: Flex alternatives

2012-12-17 Thread John McCormack
On 17/12/2012 05:12, Alex Harui wrote: Re: [flexcoders] Re: Flex alternatives Adobe has spent the year donating the Flex SDK and Falcon compilers to the Apache Software Foundation. While Adobe has a small set of people contributing to Flex in Apache and a team that shipped Flash Builder 4.7

Re: [flexcoders] Re: Flex alternatives

2012-12-17 Thread Alex Harui
involved with the Apache Flex project. On 12/17/12 2:16 AM, John McCormack j...@easypeasy.co.uk wrote: On 17/12/2012 05:12, Alex Harui wrote: Re: [flexcoders] Re: Flex alternatives Adobe has spent the year donating the Flex SDK and Falcon compilers to the Apache Software Foundation

Re: [flexcoders] Re: Flex alternatives

2012-12-17 Thread Nigel Magnay
Adobe’s focus for FlashBuilder is on building ActionScript gaming and premium video projects that run on the Flash player. I think many people assumed that the driver was legacy in-browser flex apps, plus AIR apps for mobile devices. That the older, legacy support had been farmed out to

Re: [flexcoders] Re: Flex alternatives

2012-12-17 Thread John McCormack
for the next three to five years? John On 17/12/2012 16:31, Alex Harui wrote: Re: [flexcoders] Re: Flex alternatives Adobe has no plans that I know of to get ActionScript to work with HTML5 in the same way that Google is proposing Dart as an alternative to JavaScript. The Apache Flex project

Re: [flexcoders] Re: Flex alternatives

2012-12-17 Thread Alex Harui
I’m not sure I understood. These roadmaps are nearly a year old. Folks still thought that Flash Builder was being developed for Rich Internet Apps? I guess we failed again to get the message out. DesignView, as was discussed several times on the Apache Flex mailing list, is tied to specific

Re: [flexcoders] Re: Flex alternatives

2012-12-17 Thread Alex Harui
for the next three to five years? John On 17/12/2012 16:31, Alex Harui wrote: Re: [flexcoders] Re: Flex alternatives Adobe has no plans that I know of to get ActionScript to work with HTML5 in the same way that Google is proposing Dart as an alternative to JavaScript. The Apache Flex

Re: [flexcoders] Re: Flex alternatives

2012-12-16 Thread Riccardo Cohen
Hello I recently found an interesting product : http://cappuccino.org which seems to be technically a good alternative for flex (if needed). I have not investigated at all, just had a look. Of course, if even Adobe's flex is not reliable from the perennity point of view, there is no reason why

Re: [flexcoders] Re: Flex alternatives

2012-12-16 Thread Carlos Rovira
Real alternative?... Nothing. There's only Flex ;) El sábado, 15 de diciembre de 2012, Sal escribió: ** --- In flexcoders@yahoogroups.com javascript:_e({}, 'cvml', 'flexcoders%40yahoogroups.com');, Sal sal.celli@... wrote: hi, as i can sadly see from the message history bottom

Re: [flexcoders] Re: Flex alternatives

2012-12-16 Thread Alex Harui
Adobe has spent the year donating the Flex SDK and Falcon compilers to the Apache Software Foundation. While Adobe has a small set of people contributing to Flex in Apache and a team that shipped Flash Builder 4.7 and is working on subsequent Flash Builder release, Adobe is not leading the

Re: [flexcoders] Re: Flex alternatives

2012-12-15 Thread Carlos Rovira
Real alternative?... Nothing. There's only Flex ;) El sábado, 15 de diciembre de 2012, Sal escribió: ** --- In flexcoders@yahoogroups.com javascript:_e({}, 'cvml', 'flexcoders%40yahoogroups.com');, Sal sal.celli@... wrote: hi, as i can sadly see from the message history bottom

RE: [flexcoders] Checkbox in grid

2012-12-07 Thread Davidson, Jerry
: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alex Harui Sent: Friday, December 07, 2012 1:29 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Checkbox in grid Usually the checkbox changes something, either in the selection model or the data model, and you

Re: [flexcoders] Checkbox in grid

2012-12-07 Thread Alex Harui
@yahoogroups.com Subject: Re: [flexcoders] Checkbox in grid Usually the checkbox changes something, either in the selection model or the data model, and you loop over that model. On 12/6/12 7:58 AM, Davidson, Jerry jerry.david...@illinois.gov wrote: I have a check box in an advancedatagrid along

Re: [flexcoders] Checkbox in grid

2012-12-06 Thread Alex Harui
Usually the checkbox changes something, either in the selection model or the data model, and you loop over that model. On 12/6/12 7:58 AM, Davidson, Jerry jerry.david...@illinois.gov wrote: I have a check box in an advancedatagrid along with other fields. They all show up as does the

Re: [flexcoders] Re: Inserting Flex Container to TLF?

2012-12-04 Thread Alex Harui
What is the content of this container? If it is non-interactive, take a bitmap of it and insert that instead. If you are trying to get text to flow around it, Flex text widgets do not support that ,but TLF supposedly does.by setting up a set of TLF containers for the ContainerController to

Re: [flexcoders] implement stage3d while maintaining fp 10.1 support

2012-11-30 Thread Alex Harui
I would use player version detection to load different SWFs. On 11/29/12 2:21 AM, Csomák Gábor csom...@gmail.com wrote: Hi! At my company, there is a policy to support 10.1 flash player. I was wondering, if there is a way to implement stage3D if the client is capable, (else display on

Re: [flexcoders] Inserting Flex Container to TLF?

2012-11-30 Thread Alex Harui
UIComponents must be parented by other UIComponents. Now there is a call that sets a virtual parent that you might be able to use to jump over all of the TLF parents to rewire the container into the Flex DOM. We use it in MX containers for scrolling since we put a non-UIComponent between the

Re: [flexcoders] flash.system::Worker could not be found

2012-11-20 Thread Csomák Gábor
its in air. can I use swf version for air also? On Tue, Nov 20, 2012 at 12:10 AM, Alex Harui aha...@adobe.com wrote: Make sure the swf-version is set correctly. On 11/19/12 12:21 PM, Csomák Gábor csom...@gmail.com wrote: HI! I'm trying to implement workers to an existing Flex/AIR

Re: [flexcoders] Re: profiling flex applications

2012-11-20 Thread Alex Harui
You should refactor to use modules. On 11/20/12 2:08 AM, Nitin Gopi nitin.g...@yahoo.co.in wrote: Hi First I tell you what is the present scenario. I have an application which was not created using modules. It was developed years back. Now the application size has grown larger. When we

Re: [flexcoders] flash.system::Worker could not be found

2012-11-20 Thread Alex Harui
Yes On 11/20/12 4:45 AM, Csomák Gábor csom...@gmail.com wrote: its in air. can I use swf version for air also? On Tue, Nov 20, 2012 at 12:10 AM, Alex Harui aha...@adobe.com wrote: Make sure the swf-version is set correctly. On 11/19/12 12:21 PM, Csomák Gábor csom...@gmail.com

Re: [flexcoders] sharing RSL (loaded by module) between sibling modules

2012-11-19 Thread venkateswarlu naidu
Thanks Alex! Checked the presentation, so I have to load my custom RSL from my main top level application! I thought,  I can tweek something to get it done :) The problem is we have to compile/release the main application for any change in the RSL, which is difficult for us , as different

Re: [flexcoders] flash.system::Worker could not be found

2012-11-19 Thread Alex Harui
Make sure the swf-version is set correctly. On 11/19/12 12:21 PM, Csomák Gábor csom...@gmail.com wrote: HI! I'm trying to implement workers to an existing Flex/AIR project, but I get the following runtime error: VerifyError: Error #1014: Class flash.system::Worker could not be found. at

Re: [flexcoders] Joe G James is out of the office.

2012-11-19 Thread Paul A.
So that's what VerifyError: Error #1014: Class flash.system::Worker could not be found is all about... ;-) On 20/11/2012 00:01, joe.g.ja...@kp.org wrote: I will be out of the office starting 11/19/2012 and will not return until 11/26/2012. I will respond to your message when I

Re: [flexcoders] sharing RSL (loaded by module) between sibling modules

2012-11-18 Thread venkateswarlu naidu
Forgot to mention that i am using SDK 4.1 and my RSL has some non UI actionscript classes only!! Thanks, Venkat. From: venkateswarlu naidu contactve...@yahoo.co.in To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Cc: Alex Harui aha...@adobe.com

Re: [flexcoders] sharing RSL (loaded by module) between sibling modules

2012-11-18 Thread Alex Harui
See the modules presentation on my blog. If you want to share classes, the RSL must be loaded into a shared ApplicationDomain. -- Alex Harui Flex SDK Team Adobe Systems, Inc. http://blogs.adobe.com/aharui On 11/18/12 7:43 AM, venkateswarlu naidu contactve...@yahoo.co.in wrote: Forgot to

Re: [flexcoders] Profiling flex applications

2012-11-14 Thread Alex Harui
Jun Heider gave a presentation at 360 Flex several years back. On 11/13/12 7:08 AM, Nitin Gopi nitin.g...@yahoo.co.in wrote: Hi All, Has anybody worked in the area of profiling flex applications. This includes finding memory leaks, improving compilation time and solving performance

Re: [flexcoders] mx component restrict question

2012-11-14 Thread Alex Harui
That’s in the doc. See use of backslashes. On 11/13/12 8:54 PM, markflex2007 markflex2...@yahoo.com wrote: Hi, for mx component. if textinput allow number. I can do this mx:TextInput id=textInput restrict=0-9 widthInChars=20 maxChars=20 / but I also want to allow negative sign if

RE: [flexcoders] Localization in Actionscript file

2012-11-06 Thread Merrill, Jason
Why would you store information in actionscript files? It would seem better to use a data source like XML for localization data rather than keep information in an Actionscript file. In my opinion, in an ideal setup, the only information that would be contained in an Actionscript file would be

RE: [flexcoders] Localization in Actionscript file

2012-11-06 Thread Gordon Smith
Not able to achieve this. Why not? One simple solution is just to have a resource in your .properties file that looks like this: ComboList=Item 1,Item 2,Item 3 Use getString() and split() to turn it into the array [ “Item 1”, “Item 2”, “Item 3” ] that you can use as the dataProvider of the

Re: [flexcoders] Re: Flex Contract in Financial Services company

2012-10-28 Thread manjith155
Can you please unsubscribe my account from Flexcode yahoo group.   From: markflex2007 markflex2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Wednesday, 17 October 2012 4:16 AM Subject: [flexcoders] Re: Flex Contract in Financial Services company   May I

Re: [flexcoders] Re: Flex Contract in Financial Services company

2012-10-26 Thread sachin sharma
Where is the work location?   a href=http://messenger.yahoo.com/edit/send/?.target=hey_sachin; img border=0 src=http://opi.yahoo.com/yahooonline/u=hey_sachin/m=g/t=9/l=us/opi.jpg; /a From: k.sigiscar k.sigis...@yahoo.com To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] updateDisplayList() called before commitProperties()

2012-09-26 Thread Alex Harui
If you are adding the component in the updateDisplayList of a parent, I think that can happen. The List classes call validateClient on components added in updateDisplayList in order to get them through their other phases. On 9/26/12 12:35 PM, Dave Glasser dglas...@pobox.com wrote: I

Re: [flexcoders] updateDisplayList() called before commitProperties()

2012-09-26 Thread Dave Glasser
That's what it was. Many thanks! From: Alex Harui aha...@adobe.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Wednesday, September 26, 2012 3:53 PM Subject: Re: [flexcoders] updateDisplayList() called before commitProperties() Re

Re: [flexcoders] windows 8 store app onscreen keyboard invoking

2012-09-21 Thread Wouter Schreuders
ah ok. I set up a test where I added accessibility properties to the sprite. Doesn't invoke the keyboard in metro :( I've also traced out Accessibility.active onto a textfield in metro and it returns false. Here's the added code: private function init():void { drawSprite(); // Does not invoke

Re: [flexcoders] windows 8 store app onscreen keyboard invoking

2012-09-21 Thread Alex Harui
If you turn off accessibility in the MXML app does displayAsPassword still make a difference? I’m not really sure how to help here, just throwing out ideas. On 9/21/12 3:11 AM, Wouter Schreuders wschreud...@gmail.com wrote: ah ok. I set up a test where I added accessibility properties to

Re: [flexcoders] windows 8 store app onscreen keyboard invoking

2012-09-20 Thread Wouter Schreuders
Hi Alex Yep, focus definitely does go to the sprite and the stage's focus is set. I also outputted all the events that the textinput received (I've excluded some overly chatty ones like enterframe) Accessibly is enabled for the project and I've added the following to the MXML textInput which seem

Re: [flexcoders] windows 8 store app onscreen keyboard invoking

2012-09-20 Thread Alex Harui
I was more interested if you could get the Sprite to display the keyboard by adding accessibility properties to it. On 9/20/12 2:45 AM, Wouter Schreuders wschreud...@gmail.com wrote: Hi Alex Yep, focus definitely does go to the sprite and the stage's focus is set. I also outputted all

Re: [flexcoders] windows 8 store app onscreen keyboard invoking

2012-09-19 Thread Wouter Schreuders
Hi Alex I'm using Flex SDK 4.5A (problem also occurs on 4.6) The flash player is version 11.3.372.94 on windows 8 64 bit and as far as I know IE have gone the same route as flash and rolled their own version of the flash player inside the browser. Metro officially supports flash sites that

Re: [flexcoders] windows 8 store app onscreen keyboard invoking

2012-09-19 Thread Alex Harui
Are you sure focus went to the sprite? Make sure stage.focus is set and you got FOCUS_IN and not FOCUS_OUT (and can get keyboard events). It might be that there is a difference in the UIA in the player. Did you link in the Flex accessibility code for the Spark components? On 9/19/12 1:37

Re: [flexcoders] urgent Help needed regarding loading time please

2012-09-19 Thread Alex Harui
What error did you get? On 9/18/12 10:04 PM, anas naeem maverick_0...@yahoo.com wrote: Hi Guys hope everyone is doing great firstly i am not a native English speaker so apologies for any language mistakes any ways, this is my third post for help needed regarding an error in my Flex

Re: [flexcoders] windows 8 store app onscreen keyboard invoking

2012-09-18 Thread Alex Harui
Spark or MX? If Spark, then maybe they can’t handle non-TextFields getting focus? On 9/17/12 8:33 AM, Wouter Schreuders wschreud...@gmail.com wrote: Hi All I'm busy testing our application in the windows 8 store app browser and I've noticed that the keyboard automatically appears when

Re: [flexcoders] windows 8 store app onscreen keyboard invoking

2012-09-18 Thread Wouter Schreuders
Hi Alex The problem occurs with the spark RichEditableText therefore also textInput (not for MX:textInput). I set up a little test inside of windows 8 metro where traced out all the events for both a normal textInput and a textInput with displayAsPassword=true and they are firing identical

Re: [flexcoders] windows 8 store app onscreen keyboard invoking

2012-09-18 Thread Alex Harui
I would break it down to an AS-only test where you set focus to a Sprite and see if you get the keyboard. Which version of player are you using? Is metro officially supported? On 9/18/12 1:11 PM, Wouter Schreuders wschreud...@gmail.com wrote: Hi Alex The problem occurs with the spark

RE: [flexcoders] need some printing advice

2012-09-11 Thread Sells, Fred
@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alex Harui Sent: Friday, September 07, 2012 11:43 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] need some printing advice Try calling vlidateNow on printContainer instead of printDataGrid On 9/7/12 11:19 AM, Sells

Re: [flexcoders] need some printing advice

2012-09-11 Thread Alex Harui
PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] need some printing advice Try calling vlidateNow on printContainer instead of printDataGrid On 9/7/12 11:19 AM, Sells, Fred fred.se...@adventistcare.org wrote: With the following code, I get a blank 2nd page and the data continues

RE: [flexcoders] need some printing advice

2012-09-07 Thread Sells, Fred
06, 2012 11:50 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] need some printing advice What result do you get? No second page or second page is same as first? If the latter, try calling validateNow() after nextPage()

Re: [flexcoders] need some printing advice

2012-09-07 Thread Alex Harui
: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alex Harui Sent: Thursday, September 06, 2012 11:50 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] need some printing advice What result do you get? No second page or second page is same as first

Re: [flexcoders] need some printing advice

2012-09-06 Thread Alex Harui
What result do you get? No second page or second page is same as first? If the latter, try calling validateNow() after nextPage() On 9/5/12 12:21 PM, Sells, Fred fred.se...@adventistcare.org wrote: I’m using the printdatagrid control and can print one page just fine, but cannot get the

Re: [flexcoders] mobile pushView Transition

2012-09-04 Thread dorkie dork from dorktown
Hi Mark, Check if there is an option to playTransition. If so you can set this to false. navigator.pushView(nextScreen, false); http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/ViewNavigator.html#pushView() On Wed, Aug 29, 2012 at 9:12 AM, markflex2007

RE: [flexcoders] How To Run An Application With 2 Flex Versions?

2012-08-31 Thread Bill Franklin
You've just encountered Flex's version of DLLHell :) Freundliche Grüße / Best regards, Bill Franklin Computer Integrated Mfg. [cid:image001.gif@01CD8771.E12C3F40] Bayer CropScience LP 8400 Hawthorne Road, Room 2447 Kansas City, MO 64120 Tel: +1 816 242 2148 Fax: +1 816 242 2047 E-mail:

Re: [flexcoders] How To Run An Application With 2 Flex Versions?

2012-08-31 Thread Alex Harui
See my blog post on Marshall Plan and documentation about MarshallingSupport. It is possible to host an older-versioned component in its own SWF and load it into a newer-versioned app, but there are tradeoffs. On 8/31/12 8:51 AM, Nhi Le nhi...@gmail.com wrote: Hi, We have an component

Re: [flexcoders] wrong mac debug fp version???

2012-08-29 Thread John McCormack
Make sure you use the correct Adobe uninstaller - some were for specific versions. I had a problem previously because my IDE didn't have the path set to run Firefox and the standalone player ran instead, so check your IDE. Flashlight lets you know which player versions you have available...

Re: [flexcoders] Need Help - Loader changes the pixel value after loading as bitmap

2012-08-28 Thread Alex Harui
I’m missing what the other way of loading is and how you are getting its pixels. On 8/27/12 3:15 AM, RAJ raaj_...@yahoo.com wrote: Hi all , My aim is to load two images and compare its color information pixel by pixel. For this purpose i used flash.display.Loader class to load the

Re: [flexcoders] s:DropDownList selectedItem

2012-08-23 Thread kannan Mugundan
Hi, Can you provide the complete code for the dropDownlist. In Flex 3.5, I was using a custom Combobox, where I can set the selected value and also get the value like mx:combobox id=mycombo selectedItem={myobject.myvalue}/ and mycombo.value will return the selected value. I need the same

Re: [flexcoders] Odd text rendering issue

2012-08-23 Thread Michael Chealander
Something like the issues described here: http://code.google.com/p/chromium/issues/detail?id=140415 ? On 23 Aug, 2012, at 8:00 AM, Tom McNeer wrote: I'm looking into a very weird problem on a pre-existing application, which occurs only when using Chrome on Windows. The only specific

RE: [flexcoders] RE: Flash Builder Problem

2012-08-23 Thread Sells, Fred
@yahoogroups.com Subject: RE: [flexcoders] RE: Flash Builder Problem My complaint was it taking 3-4 hours to even see a post. Of course, I'm VERY appreciative of any help I get. I moderate other forums and am aware of the reviewing process for new posters. I'm currently dead in the water

Re: [flexcoders] RE: Flash Builder Problem

2012-08-22 Thread Dimitrios Gianninas
Hi Jerry, Your messages will now auto-post with no moderation. But also remember that ppl on this group responded when they can, not when you expect them too :) Hope that helps! Jimmy Flexcoders Moderator On Wed, Aug 22, 2012 at 10:11 AM, Merrill, Jason jason.merr...@bankofamerica.com wrote:

RE: [flexcoders] RE: Flash Builder Problem

2012-08-22 Thread Davidson, Jerry
will be done. I filed a support request with Adobe, but they are not the fastest to respond. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dimitrios Gianninas Sent: Wednesday, August 22, 2012 9:22 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] RE

Re: [flexcoders] RE: Flash Builder Problem

2012-08-22 Thread Alex Harui
] On Behalf Of Dimitrios Gianninas Sent: Wednesday, August 22, 2012 9:22 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] RE: Flash Builder Problem Hi Jerry, Your messages will now auto-post with no moderation. But also remember that ppl on this group responded when they can, not when you

Re: [flexcoders] change button color dynamically?

2012-08-18 Thread Sudesh Das
hello Mark, you can use the urcomponentID.setStyle(stylename, value); to change the style of component. Regards, Sudesh From: markflex2007 markflex2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Friday, August 17, 2012 8:18 PM Subject: [flexcoders]

<    1   2   3   4   5   6   7   8   9   10   >