problem with binding

2016-05-26 Thread mark goldin
I have the following code: protected function bindRevisionHistory():void { for each (var item:* in chartVBox.getChildren()){ if (item is HistoryChart){ BindingUtils.bindProperty(item, 'revisionHistoryVisible', _projectHistoryModel, 'showProjectRevisionHistory'); } } } This function is called

Re: Problem with compiling rsources

2016-05-03 Thread mark goldin
Honestly, I am not sure I now how to run Ant with debugging info on.Can you help me, please? On Tue, May 3, 2016 at 11:56 AM mark goldin <markzolo...@gmail.com> wrote: > Yes, there is an mxmlc.jar in the lib of that directory. Will try running > Ant with debugging info. > > O

Re: Problem with compiling rsources

2016-05-03 Thread mark goldin
Yes, there is an mxmlc.jar in the lib of that directory. Will try running Ant with debugging info. On Tue, May 3, 2016 at 9:48 AM Alex Harui <aha...@adobe.com> wrote: > > > On 5/3/16, 2:51 AM, "mark goldin" <markzolo...@gmail.com> wrote: > > >I change

Re: Problem with compiling rsources

2016-05-03 Thread mark goldin
ould also try using a > consistent set of slashes and maybe even a folder without spaces in the > name. > > -Alex > > On 5/2/16, 1:53 PM, "mark goldin" <markzolo...@gmail.com> wrote: > > >I am having a problem compiling my resources. > >Here is

Problem with compiling rsources

2016-05-02 Thread mark goldin
I am having a problem compiling my resources. Here is a message from the log: CompileResourceBundles.xml all: resourceBundles: [echo] Compiling US Resources BUILD FAILED CompileResourceBundles.xml:14: The following error occurred while executing this line:

Re: Loading svg image at runtime

2016-04-29 Thread mark goldin
); } Thanks On Fri, Apr 29, 2016 at 12:23 PM mark goldin <markzolo...@gmail.com> wrote: > I see, thanks. > > On Fri, Apr 29, 2016 at 12:15 PM Alex Harui <aha...@adobe.com> wrote: > >> IIRC, SVG is only supported when embedded. >> >> In FlexJS, we migh

Re: Loading svg image at runtime

2016-04-29 Thread mark goldin
I see, thanks. On Fri, Apr 29, 2016 at 12:15 PM Alex Harui <aha...@adobe.com> wrote: > IIRC, SVG is only supported when embedded. > > In FlexJS, we might have an SVG loader some day. > > -Alex > > On 4/29/16, 9:34 AM, "mark goldin" <markzolo...@gmail.com

Loading svg image at runtime

2016-04-29 Thread mark goldin
I am trying to load an svg image. var request:URLRequest = new URLRequest('image.svg'); var imageLoader:Loader = new Loader(); var loaderContext:LoaderContext = new LoaderContext(); loaderContext.checkPolicyFile = true; imageLoader.load(request,loaderContext); in the Console I see this: [SWF]

Strange error

2016-04-25 Thread mark goldin
I am getting the following error: TypeError: Error #2007: Parameter name must be non-null. at flash.display::DisplayObject/set name() at mx.binding::Binding/defaultDestFunc() at Function/http://adobe.com/AS3/2006/builtin::call() at mx.binding::Binding/innerExecute() at

Re: Multi select combo

2016-04-22 Thread mark goldin
I will, thanks. On Fri, Apr 22, 2016 at 2:41 PM Vincent Sotto <dsreil...@gmail.com> wrote: > have you tried hillelcoren advancedautocomplete showbrowse button? easy to > mod what you want > http://sketch-out.com/flexautocomplete/demo/#app=7b9d=3 > > On Fri, Apr 22, 2016 at

How to properly create a deep copy of XMLList

2016-04-22 Thread mark goldin
I am using the following to create a copy of an XMLList: var _copyXML:XMLList = new XMLList(originalXML); but seems like when I remove elements form copy the original is gets affected too. So, how do I copy XMLLists? Thanks

Re: XML filtering

2016-04-21 Thread mark goldin
y the XML and > get rid of any end nodes which don’t match your check. > > I would probably walk the XML (or a copy of it), and delete the unwanted > nodes. > > On Apr 21, 2016, at 10:25 PM, mark goldin <markzolo...@gmail.com> wrote: > > > I understand I am not al

Re: XML filtering

2016-04-21 Thread mark goldin
ike an array). The original XML is not altered. You can > walk the elements and find their parents and children. > > If you need new XML with only certain elements, you need to construct it > (or destruct it) yourself. > > On Apr 21, 2016, at 9:53 PM, mark goldin <markzolo.

XML filtering

2016-04-21 Thread mark goldin
I have the following XML: If I filter it like this: XML..Project.(@TemplateID == 8); I get: which is correct but I am losing the hierarchy. What I expect is: Any idea how to do that? Thanks

XMLList ->HierarchicalData->XMLList

2016-04-19 Thread mark goldin
I have an ADG and I am assigning its dataProvider like this: grid.dataProvider = new HierarchicalData(_XMLList); Is there a way of getting back to XMLList from grid.dataProvider? Thanks

Re: [Non-DoD Source] Filtering XML doc

2016-04-18 Thread mark goldin
> > > > > ; > > var newList:XMLList = elementsList..node.(@id=="hello"); > trace(newList.toXMLString()); // > > On Apr 18, 2016, at 11:54 PM, mark goldin <markzolo...@gmail.com> wrote: > > > var elementsList:XML= > > > >

Re: [Non-DoD Source] Filtering XML doc

2016-04-18 Thread mark goldin
var elementsList:XML= ; elementsList..node.(@id=="hello") // Fails with the error On Mon, Apr 18, 2016 at 3:51 PM Harbs <harbs.li...@gmail.com> wrote: > Please post some more complete code. > > On Apr 18, 2016, at 11:33 PM, mark goldin <

Re: [Non-DoD Source] Filtering XML doc

2016-04-18 Thread mark goldin
give a simple example, we can figure this out quickly. This is > pretty basic stuff. > > On Mon, Apr 18, 2016 at 1:25 PM, mark goldin <markzolo...@gmail.com> > wrote: > > > Yes, that's what I am trying: > > XML..Boos.(attribute(@ID == 298) // fails with No such variabl

Re: [Non-DoD Source] Filtering XML doc

2016-04-18 Thread mark goldin
Yes, that's what I am trying: XML..Boos.(attribute(@ID == 298) // fails with No such variable: @ID XML..Boos.(attribute("ID") == 298) // doesn't fail, returns empty. On Mon, Apr 18, 2016 at 3:23 PM OmPrakash Muppirala <bigosma...@gmail.com> wrote: > On Mon, Apr 18, 2016 at 12

Re: [Non-DoD Source] Filtering XML doc

2016-04-18 Thread mark goldin
Doing it like this: XML.Books.(attribute("ID") == 298), returns no data. On Mon, Apr 18, 2016 at 2:02 PM mark goldin <markzolo...@gmail.com> wrote: > No such variable: @ID > > On Mon, Apr 18, 2016 at 2:00 PM mark goldin <markzolo...@gmail.com> wrote: > &

Re: [Non-DoD Source] Filtering XML doc

2016-04-18 Thread mark goldin
No such variable: @ID On Mon, Apr 18, 2016 at 2:00 PM mark goldin <markzolo...@gmail.com> wrote: > I am also trying this: > > var elementsList:XML= > > > > > > > ; > > var xl:XMLList=elementsList..*.(@id=="hello");

Re: [Non-DoD Source] Filtering XML doc

2016-04-18 Thread mark goldin
I am also trying this: var elementsList:XML= ; var xl:XMLList=elementsList..*.(@id=="hello"); I am getting an error: No such variable @id On Mon, Apr 18, 2016 at 1:55 PM mark goldin <markzolo...@gmail.com> wrote: > I am trying and it's not

Re: [Non-DoD Source] Filtering XML doc

2016-04-18 Thread mark goldin
I am trying and it's not returning anything On Mon, Apr 18, 2016 at 1:40 PM mark goldin <markzolo...@gmail.com> wrote: > I was thinking about something like this: > _myListXML.Books.(attribute('ID') == '298') > > Which should give me: > > >. > >

Re: [Non-DoD Source] Filtering XML doc

2016-04-18 Thread mark goldin
wrote: > var myXMLList:XMLList = myXml..Book; > > On Apr 18, 2016, at 7:50 PM, mark goldin <markzolo...@gmail.com> wrote

Re: [Non-DoD Source] Filtering XML doc

2016-04-18 Thread mark goldin
. And it is an element. On Mon, Apr 18, 2016 at 11:46 AM Alex Harui <aha...@adobe.com> wrote: > Show some example XML. It matters if Book is an element or attribute. > > -Alex > > On 4/18/16, 9:36 AM, "mark goldin" <markzolo...@gmail.com> wrote: > > >No, not exac

Re: [Non-DoD Source] Filtering XML doc

2016-04-18 Thread mark goldin
> > ; > > > List of books: > myXml.Books.Book; > > List of magazines: > myXml.Magazines.Magazine; > > Match specific items (returns 2 item1 rows): > myXml.Magazines.Magazine.(@ someproperty == "item1"); > > > -Mark > > &

Filtering XML doc

2016-04-18 Thread mark goldin
I have a nested XML and I want to select only these elements from it that have a specific name at any level. How can I do that? Thanks

Unexpected exception encountered while reading font file

2016-03-31 Thread mark goldin
I am using a command line compiler to compile style sheets. Here is my output: "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\sdks\3.6.0"\bin\mxmlc.exe src\style\Style.css -output=bin-release\style\Style.swf -library-path+=libs -source-path=locale\{locale}

Custom itemrenderer doesn't show data

2016-03-20 Thread mark goldin
Here is my custom itemrenderer code: import mx.controls.Text; import mx.controls.listClasses.BaseListData; import mx.controls.listClasses.IDropInListItemRenderer; import mx.controls.listClasses.IListItemRenderer; import mx.core.UIComponent; public class AssetPathRenderer extends UIComponent

Re: Custom itemrenderer doesn't show data

2016-03-19 Thread mark goldin
Yes, mxml alternative would work, but I am trying to use UIComponent for performance reasons. also I am still doing mx, no Spark. On Thu, Mar 17, 2016 at 3:38 AM OK wrote: > If mxml could be an alternative perhaps you'd would like to try it this?: > > >

Casting ProxyObject to a strongly typed object

2016-03-19 Thread mark goldin
I have found to following code that supposed to do the conversion but I need some help with it. public function result(data:Object):void { var result:Object = data.result; // Result is an ObjectProxy; var newObj:ObjectProxy = new ObjectProxy(StrongType); var obj:Object =

Re: ADG is reset on dataProvider refresh

2016-03-15 Thread mark goldin
).refresh(); validateNow(); } For testing watchListFilterHiddenAssets returns false for every item. Still Grid shows all the data. On Tue, Mar 15, 2016 at 12:26 PM Alex Harui <aha...@adobe.com> wrote: > > > On 3/15/16, 10:20 AM, "mark goldin" <markzolo...@gmail.c

Re: ADG is reset on dataProvider refresh

2016-03-15 Thread mark goldin
; Calling super.dataProvider will probably reset the DG. I think most folks > assign dataProvider and then filter later. > > -Alex > > On 3/15/16, 9:45 AM, "mark goldin" <markzolo...@gmail.com> wrote: > > >I have to filter a dataProvider of an ADG. As soon as I refresh()

ADG is reset on dataProvider refresh

2016-03-15 Thread mark goldin
I have to filter a dataProvider of an ADG. As soon as I refresh() to see changes DataGrid is reset. All columns have lost their custom layout. What's the best way of handling that problem? Here is my code: override public function set dataProvider(value:Object):void { if (value) {

Re: Help with error

2016-02-20 Thread mark goldin
t; > On 2/19/16, 5:01 PM, "mark goldin" <markzolo...@gmail.com> wrote: > > >But I do have a resource file. > > > >On Fri, Feb 19, 2016 at 6:54 PM Jason Taylor <ja...@dedoose.com> wrote: > > > >> check these: > >> > >> >

Re: Help with error

2016-02-19 Thread mark goldin
/reflex-framework/issues/9 > > > -----Original Message- > From: mark goldin [mailto:markzolo...@gmail.com] > Sent: Friday, February 19, 2016 4:48 PM > To: users > Subject: Help with error > > This is the error I am getting: > > ArgumentError: Error #1063: Argum

Help with error

2016-02-19 Thread mark goldin
This is the error I am getting: ArgumentError: Error #1063: Argument count mismatch on mx.resources::ResourceManagerImpl/installCompiledResourceBundles(). Expected 3, got 4. at mx.core::FlexModuleFactory/installCompiledResourceBundles() at mx.core::FlexModuleFactory/docFrameHandler() at

Where is my resource swf

2016-02-18 Thread mark goldin
I see in the Console that my resource file is getting built: [SWF] /resource/en_US_resourceModule.swf - 112,982 bytes after decompression but cannot find it anywhere. Where should I see it? Thanks

Re: Puffin Browser

2016-02-16 Thread mark goldin
; On 2/16/16, 9:04 AM, "Tom Chiverton" <t...@extravision.com> wrote: > > >Make it available on a public IP address. > >That's how Puffin works - they stand between you and the content and > >adapt it for the phone. See also "man in the middle". > >

Re: Puffin Browser

2016-02-16 Thread mark goldin
fin IP addresses, so buyer beware... > > ________ > From: mark goldin <markzolo...@gmail.com> > Sent: Monday, February 15, 2016 7:02 PM > To: users@flex.apache.org > Subject: Re: Puffin Browser > > So, there is no way to see how that Browser works with internal sites? > >

Re: Puffin Browser

2016-02-15 Thread mark goldin
rmind, puffin uses its own Linux servers. It will not see your > intranet. It's local host will be its own server not your server. puffin > loads websites on your behalf and then streams the results to you. > On Feb 15, 2016 4:57 PM, "mark goldin" <markzolo...@gmail.com> wr

Re: Puffin Browser

2016-02-15 Thread mark goldin
Navigate to internal application. It runs on my box. The phone is on the company's WIFI. On Mon, Feb 15, 2016 at 6:49 PM jude <flexcapaci...@gmail.com> wrote: > navigate to what? > On Feb 15, 2016 11:56 AM, "mark goldin" <markzolo...@gmail.com> wrote: > > >

Puffin Browser

2016-02-15 Thread mark goldin
I am trying it on my Windows 10 phone. In Edge it does navigate to my application but asks for Flash player.But Puffin is not even navigating to it saying check your network connection. I am currently on company's wifi. Please help. Thanks

FB does not create new SWF

2016-01-28 Thread mark goldin
After changing code I am saving a file. That triggers compile but it does not overwrite the old swf file. How come? Thanks

Re: FB does not create new SWF

2016-01-28 Thread mark goldin
No, if I change a setting in Compiler like default FP version it does create a new file. On Thu, Jan 28, 2016 at 12:09 PM OmPrakash Muppirala <bigosma...@gmail.com> wrote: > There could be compile errors or other IDE related errors. > On Jan 28, 2016 9:46 AM, "mark

Problem with saving into csv format

2015-12-14 Thread mark goldin
I have some code that does export of ArrayCollection into csv file. The data is from a datagrid. Datagrid has a few columns with two being dates. What's happening is that as soon as I open Save As dialog data in these columns is changing into: value: 10-07-2015 15:03:59 error: Error #1009: Cannot

Re: Compile with debug info

2015-12-08 Thread mark goldin
he setup on the build server. > > -Alex > > On 12/7/15, 3:47 PM, "mark goldin" <markzolo...@gmail.com> wrote: > > >Build server uses mxmlc to compile Flex applications. My local > >compilations have debug info, but these of the build server do not. They

Re: Compile with debug info

2015-12-08 Thread mark goldin
Thank you. Will try working on this info. On Tue, Dec 8, 2015 at 9:49 AM Alex Harui <aha...@adobe.com> wrote: > > > On 12/8/15, 4:17 AM, "mark goldin" <markzolo...@gmail.com> wrote: > > >Well, setup on the build server is what I am looking for. Like I

Re: License for Flash Builder

2015-12-08 Thread mark goldin
mputer to another > company computer. > > HTH. At least, that's the way I understand it. > > -Alex > > On 12/8/15, 10:00 AM, "mark goldin" <markzolo...@gmail.com> wrote: > > >If I just copy Apache SDKs to my build server how do I accept these

License for Flash Builder

2015-12-08 Thread mark goldin
I am using a build server to build Flex swf files. Flex code is created using SDK 4.13.0. Do I need any Adobe license to successfully generate swf files? Thanks

Re: Compile with debug info

2015-12-07 Thread mark goldin
t; > On 12/7/15, 12:32 PM, "mark goldin" <markzolo...@gmail.com> wrote: > > >I am trying to build all mt Flex swf files with debug info included. > >Here is my command line: > >-locale=en_US -library-path+=libs -define=CONFIG::debug,false > >-keep-genera

Re: Compile with debug info

2015-12-07 Thread mark goldin
. > > HTH, > -Alex > > On 12/7/15, 1:32 PM, "mark goldin" <markzolo...@gmail.com> wrote: > > >The same as when I build on my local system. I need to debug a version of > >the app that is built by a build server which compiles Flex without > >debugging in

Re: FileReference save

2015-12-03 Thread mark goldin
Something like this: var chartDataFile:FileReference = new FileReference(); chartDataFile.save(projectData, "data.csv"); projectData is an ArrayCollection. Data.csv looks like this: 0-15-2015 14:37:00,14,1,0.5447975,0.5447975,-0.9986115,-0.9986115,19,21.9765,325.0004, 10-15-2015

Getting user's locale settings

2015-12-02 Thread mark goldin
Is it possible to get into a Flex application user's locale settings such as a current OS's language? Thanks

FileReference save

2015-12-02 Thread mark goldin
I am working with code that saves a large ArrayCollection into an csv file. When I open the file I see it's a comma delimited. I am not sure I understand where these commas are coming from. The data itself does not have any commas. Any idea? Thanks

Re: FileReference save

2015-12-02 Thread mark goldin
I dont see any formatting in code. I see an ArrayCollection getting saved into an CSV file. If I open it with Notepad I see that the file is a comma delimited. Have these commas been added by the output formatting? If yes, how can I use different delimiters? Thanks On Wed, Dec 2, 2015 at 7:58 PM

Re: Speed up application start

2015-10-19 Thread mark goldin
lex Harui <aha...@adobe.com> wrote: > > > On 10/18/15, 8:40 AM, "mark goldin" <markzolo...@gmail.com> wrote: > > >My setup is the following: > >I have an html navigation bar across the screen. I am loading my Fl

Re: Speed up application start

2015-10-19 Thread mark goldin
<Usually, the shell isn’t “hidden", the module just fully covers the wrote: > > > On 10/19/15, 6:16 AM, "mark goldin" <markzolo...@gmail.com> wrote: > > >I am not sure I fully understand an idea with a small swf shell firing > >Flex > >mo

Re: Speed up application start

2015-10-19 Thread mark goldin
Yes, exactly. But if I preload the shell and hide it how would it show a module that it is loading? I am definitely missing something here. On Mon, Oct 19, 2015 at 11:35 AM Alex Harui <aha...@adobe.com> wrote: > > > On 10/19/15, 8:29 AM, "mark goldin" <markzolo...@gma

Re: Speed up application start

2015-10-18 Thread mark goldin
Object loads in the HTML page? If the latter, > you might be waiting on a re-start of the Flash Player. > > Try using a profiler to find out. > > -Alex > > On 10/17/15, 3:06 AM, "mark goldin" <markzolo...@gmail.com> wrote: > > >I am converting modul

Re: Speed up application start

2015-10-18 Thread mark goldin
loading a small SWF into an existing FP instance. > > -Alex > > On 10/18/15, 5:06 AM, "mark goldin" <markzolo...@gmail.com> wrote: > > >I am firing my applications by navigating to its html wrapper where I am > >using SWFObject to load the app. > > &

Speed up application start

2015-10-17 Thread mark goldin
I am converting modules into applications. An application file size is a bit bigger than a module but the loading time is significantly longer. Any tips to speed it up? Thanks

Re: Setting a Locale

2015-10-15 Thread mark goldin
So, loading a resource module is what sets a different locale? On Wed, Oct 14, 2015 at 10:53 PM Alex Harui <aha...@adobe.com> wrote: > IIRC, flashvars are used to load resource modules. > > On 10/14/15, 4:54 PM, "mark goldin" <markzolo...@gmail.com> wrote: > >

Re: Setting a Locale

2015-10-15 Thread mark goldin
, 'expressInstall.swf', flashvars, params, attributes); Unless I remove params.allowscriptaccess nothing goes on screen. Not even Initializing progress bar. On Thu, Oct 15, 2015 at 10:25 AM Alex Harui <aha...@adobe.com> wrote: > > > On 10/15/15, 3:30 AM, "mark goldin&q

Setting a Locale

2015-10-14 Thread mark goldin
I am working with some legacy code. The app is capable of setting a different locale based, seems to me, on flashvars sent to the app. But I dont see anywhere any code setting up resourceManager.localeChain. Are there other ways of setting up different locales? Thanks

Application file - Run/Debug configuration

2015-10-10 Thread mark goldin
I have a number of applications in my default package. Some of them would have a completely disable Run'Debug Settings screen when I click on a file with a right mouse click and go to Run/Debug Settings. Why is that? Thanks

Re: bindSetter Question

2015-09-14 Thread mark goldin
. Like I said, works only once when application loads. On Sun, Sep 13, 2015 at 10:45 PM Alex Harui <aha...@adobe.com> wrote: > Well, is model dispatching that event? > > On 9/13/15, 12:11 PM, "mark goldin" <markzolo...@gmail.com> wrote: > > >Here

Re: Running flex modules from html shell

2015-09-14 Thread mark goldin
13, 2015 at 10:48 PM Alex Harui <aha...@adobe.com> wrote: > I guess I don’t understand why you need to drive a bunch of modules > directly from HTML. Why not have a single module loader that loads the > modules based on commands via ExternalInterface? > > -Alex > > On

Re: Listen to Application exit

2015-09-13 Thread mark goldin
t; > > > > http://stackoverflow.com/questions/1338152/detecting-different-quit-options-in-air-application-on-mac > > Sent from Yahoo Mail on Android > > From:"mark goldin" <markzolo...@gmail.com> > Date:Sun, Sep 13, 2015 at 9:30 AM > Subject:Listen

Listen to Application exit

2015-09-13 Thread mark goldin
Is it possible to intercept an event on application exit? Thanks

bindSetter Question

2015-09-13 Thread mark goldin
Here is my code: BindingUtils.bindSetter(handler, model.summary, "eventSummaryType"); My expectation is that when eventSummaryType property on model.summary changes my handler is called. It only works for one time when the app starts. Any consecutive change to the property does not fire the

Accessing non-visual module

2015-09-12 Thread mark goldin
I am creating mx applications that all would share some common data. I am thinking to make a mx:Module to be a loader for that data. I have designed one and here is my code: private var info:IModuleInfo; info = ModuleManager.getModule("dataLoader.swf"); info.addEventListener(ModuleEvent.READY,

Creating deferred components

2015-09-12 Thread mark goldin
I am using creationPolicy="none" in my test application to delay component creation. Just for testing I am running swf file from FB without any wrapper. But all I get is a progress bar saying "Initializing". Am I approaching it wrongly? Thanks

Running flex modules from html shell

2015-09-11 Thread mark goldin
I am looking for some ideas if anything to do the following. The main Flex application screen is constructed as a top horizontal menu. When a menu item is clicked a Flex module is loaded and it's shown underneath of the top menu. I am trying to replicate the main page in html which would have the

Re: Externalnterface

2015-09-06 Thread mark goldin
ainly encode an Array and pass it over to JS and have it become an > Array over there. > > -Alex > > On 9/5/15, 6:22 AM, "mark goldin" <markzolo...@gmail.com> wrote: > > >Can I send an araycollection to javascript? > > > >On Thu, Aug 27, 20

Re: Externalnterface

2015-09-05 Thread mark goldin
oftware.com > > -Original Message- > From: pkumar.flex [mailto:prashaku...@gmail.com] > Sent: Thursday, August 27, 2015 2:05 PM > To: users@flex.apache.org > Subject: Re: Externalnterface > > yes you can call a function from JavaScript to Flex. using > ExternalInterface.a

mx:TextArea and maxchar

2015-09-03 Thread mark goldin
I am trying to limit a number of characters a user can enter into TextArea. I set to 20 for testing. However, I can type as much as I want. What am I missing? Thanks

Externalnterface

2015-08-27 Thread mark goldin
I am opening a new browser window using the following command: ExternalInterface.call(open, testcase.html, _blank); Is it possible to call a function in Flex from testcase.html? Thanks

OT: how do you start designing a large project

2015-08-26 Thread mark goldin
This is is out of topic but can someone please share personal experience/other resources about how do you start designing a new pretty large project? What I mean is that every web based application would have UI and a backend and they both non existent for the new project. Would you start

Re: Change default font for the whole application

2015-08-14 Thread mark goldin
AM, mark goldin [via Apache Flex Users] ml-node+s246n10927...@n4.nabble.com wrote: Is there a way of changing the default font for the whole application? That's for some troubleshooting. Thanks -- If you reply to this email, your message

Re: Using multiple locale resources

2015-08-14 Thread mark goldin
How do I load en_US resource? I dont have swf file for it. On Fri, Aug 14, 2015 at 1:15 AM pkumar.flex prashaku...@gmail.com wrote: yes you can keep same name in different locales folder. On Fri, Aug 14, 2015 at 12:21 AM, mark goldin [via Apache Flex Users] ml-node+s246n10924...@n4

Problem with Chinese characters

2015-08-13 Thread mark goldin
Practically non of Chinese translation is shown on the screen. The only place where Chinese is shown is a context menu with some custom options. What do you think a troubleshooting might be? Thanks

Change default font for the whole application

2015-08-13 Thread mark goldin
Is there a way of changing the default font for the whole application? That's for some troubleshooting. Thanks

Using multiple locale resources

2015-08-13 Thread mark goldin
Can I have multiple resource modules available at the runtime? Maybe that be changed but I do have them with the same name in different locales. Thanks

DataProviders and binding

2015-08-03 Thread mark goldin
This is a typical code to set a dataprovider: public function set dataProvider(value:Object):void { if (value) { grid.dataProvider = value; } } Execution gets into this code twice. First when value is null, and second when it's not null. Well, it's not null but still has no data. Is it possible to

Re: Problem with building resources

2015-07-15 Thread mark goldin
at 12:08 PM, mark goldin markzolo...@gmail.com wrote: Here is a fragment of my CompileResourceBundles.xml ?xml version=1.0 encoding=UTF-8? project name=PrismResources basedir=. default=all taskdef resource=flexTasks.tasks classpath=C:\Program Files\Adobe\Adobe Flash Builder

Problem with building resources

2015-07-15 Thread mark goldin
Here is a fragment of my CompileResourceBundles.xml ?xml version=1.0 encoding=UTF-8? project name=PrismResources basedir=. default=all taskdef resource=flexTasks.tasks classpath=C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64 Bit)\sdks\4.13.0\ant\lib\flexTasks.jar/ property

Re: LocalConnection

2015-07-09 Thread mark goldin
, please contact the sender by reply email and destroy all copies of the original message.* On 9 July 2015 at 05:24, mark goldin markzolo...@gmail.com wrote: I need to send an event object to my localConnectionHandler. Something like this: conn.send(AlarmManagementConnection

LocalConnection

2015-07-08 Thread mark goldin
I need to send an event object to my localConnectionHandler. Something like this: conn.send(AlarmManagementConnection, localConnectionHandler, _event.callBackEvent); where _event.callBackEvent is an event that extends CairngormEvent event. public function

Show/hide checkbox in grid

2015-07-02 Thread mark goldin
I have the following datagrid: mx:DataGridColumn dataField=visible2 headerText= textAlign=center width=35 mx:itemRenderer mx:Component mx:CheckBox visible={data.headerText2 != ''} / /mx:Component /mx:itemRenderer /mx:DataGridColumn mx:DataGridColumn headerText=Name dataField=headerText2 / The

Re: A script has executed for longer than ....

2015-06-26 Thread mark goldin
It's getting called just once. On Fri, Jun 26, 2015 at 10:33 AM Alex Harui aha...@adobe.com wrote: What work is done in processXML? Step through it and make sure you are done quickly and it gets called many times. On 6/26/15, 2:04 AM, mark goldin markzolo...@gmail.com wrote: Ok, I got

Re: A script has executed for longer than ....

2015-06-26 Thread mark goldin
I am trying to implement workers. I am not sure how I tell a worker what to do. On Fri, Jun 26, 2015 at 8:24 AM mark goldin markzolo...@gmail.com wrote: Cannot download EasyWorker. File not found. On Fri, Jun 26, 2015 at 4:04 AM mark goldin markzolo...@gmail.com wrote: Ok, I got it running

Is there a limit to message size

2015-06-26 Thread mark goldin
I am sending a message to a worker. Simple data like true or false or a string is sent with no problem, but a large XMLList is received as null. Is there a limit to a message size? Thanks

Re: Screen stays disabled

2015-06-26 Thread mark goldin
doesn’t remove the modal window. On 6/25/15, 10:33 AM, mark goldin markzolo...@gmail.com wrote: I have a large ADG that takes almost the whole screen. It runs within a module that is fired from a top menu. I am opening a popup (TitleWindow) over the grid. The whole screen becomes disabled. After

Re: A script has executed for longer than ....

2015-06-26 Thread mark goldin
. -Alex On 6/25/15, 10:59 AM, mark goldin markzolo...@gmail.com wrote: Alex, I need to use it from a command class that does not have systemManager or its stages. How do I go about it? On Thu, Jun 25, 2015 at 11:34 AM Javier Guerrero García javi...@gmail.com wrote: More

Re: A script has executed for longer than ....

2015-06-26 Thread mark goldin
Cannot download EasyWorker. File not found. On Fri, Jun 26, 2015 at 4:04 AM mark goldin markzolo...@gmail.com wrote: Ok, I got it running but it still timing out. Here is some code: public function result(data:Object):void { var re:ResultEvent = ResultEvent(data); thread = new

A script has executed for longer than ....

2015-06-25 Thread mark goldin
I have a large xml data that UI needs to process. I am getting the above message about timing out. Not sure I can break my function into smaller pieces. Any other idea? Thanks

Re: A script has executed for longer than ....

2015-06-25 Thread mark goldin
seconds anyway. Workers or Pseudo-threading [1] might help you. Also having the server do the processing and send you the results. -Alex [1] http://blogs.adobe.com/aharui/2008/01/threads_in_actionscript_3.html On 6/25/15, 6:52 AM, mark goldin markzolo...@gmail.com wrote: I have a large xml

Re: A script has executed for longer than ....

2015-06-25 Thread mark goldin
, 2015 at 10:03 AM Alex Harui aha...@adobe.com wrote: In the callback function. The callback function would probably process some node and update variables so when it gets called again it knows to process a different node. On 6/25/15, 7:46 AM, mark goldin markzolo...@gmail.com wrote

Re: A script has executed for longer than ....

2015-06-25 Thread mark goldin
On 6/25/15, 7:20 AM, mark goldin markzolo...@gmail.com wrote: What if I break xml into pieces for separate processing and then put them together into one final xml? On Thu, Jun 25, 2015 at 9:12 AM Alex Harui aha...@adobe.com wrote: Well, xml is terribly slow. If you can server-side process

<    1   2   3   4   5   6   7   >