Re: Skins - Get Properties From Parent Component

2020-01-02 Thread Kessler CTR Mark J
Side note, to add to the discussion, here is a couple of ways to also update properties in code for and with [1] and [2]. [1] override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void { doStuff(); super.updateDisplayList(unscaledWidth,

RE: [Non-DoD Source] Copy and Paste Text

2019-12-17 Thread Kessler CTR Mark J
In the FlexSDK when we needed to add that functionality to a component that needed to copy to clipboard we inherited the component. An example for one of ours is the spark DataGrid. Our component listens for the COPY event and formats the highlighted data into an HTML based table to paste

RE: [Non-DoD Source] Re: File upload Error 2038

2017-09-27 Thread Kessler CTR Mark J
The uploading works pretty well for us for everything but Firefox. The only hitch we get from anything else is usually the web server (IIS) will reset a file upload if the file is larger than a certain size and will expect to be uploaded slightly differently. For firefox based ones you can

RE: [Non-DoD Source] Flex 4.1A

2017-09-22 Thread Kessler CTR Mark J
was looking for : ) Cheers! On Fri, Sep 22, 2017 at 5:38 PM, Kessler CTR Mark J < mark.kessler@usmc.mil> wrote: > Here’s the only version 4.1 I could find [1]. > > [1] http://fpdownload.adobe.com/pub/flex/sdk/builds/flex4/ > flex_sdk_4.1.0.16076A.zip > > -Mark >

RE: [Non-DoD Source] Flex 4.1A

2017-09-22 Thread Kessler CTR Mark J
used for that project. On 22 Sep 2017 5:11 pm, "Kessler CTR Mark J" <mark.kessler@usmc.mil> wrote: > I'm not sure about the Flex 4.1~. But Adobe released upto 4.6. Apache > released a parity for 4.7 and all the rest after that. If all you want is > an SDK version c

RE: [Non-DoD Source] Flex 4.1A

2017-09-22 Thread Kessler CTR Mark J
I'm not sure about the Flex 4.1~. But Adobe released upto 4.6. Apache released a parity for 4.7 and all the rest after that. If all you want is an SDK version choice you may want to try the Flex Installer [1]. The old Adobe Flex 4.6 should be at [2]. [1]

RE: [Non-DoD Source] Re: Persistent Data

2017-03-01 Thread Kessler CTR Mark J
I agree with both Justin and Benjamin on this. Keeping it simple and easy to use for your particular use case. Adding in a static class to store the properties in and using data binding where needed sounds like the shortest and easiest path for now. -Mark -Original Message- From:

RE: Load External File

2016-09-29 Thread Kessler CTR Mark J
You can use FileReference[1] to load a file. Browse for the file, load it. Once the complete event is dispatched you should be able to use the "data" property to access the file data. If you need to you can convert the ByteArray to string just by casting it. [1]

RE: form layout

2016-09-08 Thread Kessler CTR Mark J
As a side option you could just throw out the form and use regular layout. -Mark -Original Message- From: scott matheson [mailto:sc...@matheson.it] Sent: Wednesday, September 07, 2016 4:34 PM To: Subject: [Non-DoD Source] form layout

RE: [Non-DoD Source] forcing a screen redraw

2016-08-22 Thread Kessler CTR Mark J
Well you could invalidate specific things on a parent or simply call validateNow(). If you're not using databinding, I'm going to assume you are assigning the values manually from an event. -Mark -Original Message- From: scott matheson [mailto:sc...@matheson.it] Sent: Monday, August

RE: Re: Multithreading

2016-08-15 Thread Kessler CTR Mark J
Side question. Have you tried having the records calculate in the query themselves at least partially? Best case scenario would be have them process into another table directly. Writing those 12k records back would be more intensive if they had to process each one separately. -Mark

RE: [Non-DoD Source] Datagrid sorting

2016-08-09 Thread Kessler CTR Mark J
Would you please create a JIRA issue [1] with a small test application that reproduces the problem. [1] https://issues.apache.org/jira/browse/FLEX -Mark -Original Message- From: zejuho [mailto:j.houll...@gmail.com] Sent: Tuesday, August 09, 2016 6:51 AM To: users@flex.apache.org

RE: Re: Workers and Speed

2016-08-01 Thread Kessler CTR Mark J
Sidenote if you weren't using the array directly; We had a discussion one time that the ArrayCollection getItemAt(n) method was proven to be faster than its ["someProperty"]. But accessing the array directly and using the index [n] is even faster for this use case as Justin pointed out.

RE: [Non-DoD Source] Re: My AIR Release Build doesn't work

2016-08-01 Thread Kessler CTR Mark J
Side bar a little bit. If I remember correctly the installed folder doesn't allow files to be written to it by default. So if your opening / creating a new SQL lite file you might have to create it in a folder that has read/write permissions. Your application build folder is already

RE: Problem with URL parameters

2016-07-25 Thread Kessler CTR Mark J
Do you mean like calling the SWF and passing parameters[1] or through Flash vars? There is a note about passing flash vars only affects the main app. [1] http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/Application.html#parameters

RE: Re: Why are Spark Datagrid headers sorting my data so slowly in Air?

2016-07-25 Thread Kessler CTR Mark J
Well you can try an eventListener for the sortChanging[1] event of the datagrid. You can reference the column clicked by checking the last item added [2]. Once you're done with your own means of sorting the ArrayCollection or adding your own spark Sort with SortField [3] you can prevent the

RE: [Non-DoD Source] Flex 3 DataGrid - rollOverColor

2016-06-14 Thread Kessler CTR Mark J
-Original Message- From: mark goldin [mailto:markzolo...@gmail.com] Sent: Tuesday, June 14, 2016 6:05 AM To: users@flex.apache.org Subject: Re: [Non-DoD Source] Flex 3 DataGrid - rollOverColor No, it's for ADG in Flex 3. Plus I need to use a css file. On Tue, Jun 14, 2016 at 4:55 AM Kessler CTR

RE: [Non-DoD Source] Flex 3 DataGrid - rollOverColor

2016-06-14 Thread Kessler CTR Mark J
For the spark datagrid[1], try setting the "caretColor" style for selected items and "rollOverColor" style for hovering. [1] http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/DataGrid.html#commonStyleSummary -Mark -Original Message- From: mark goldin

RE: [Non-DoD Source] Grouping arrayCollection

2016-05-26 Thread Kessler CTR Mark J
Do you mean using filterFunction[1] to only show one set/group of the rows at a time? myAC.filterFunction = myFilterFunction; public function myFilterFunction(item:Object):Boolean { if (String(item.name) == "A") { //show return true; } //hide return false;

RE: [Non-DoD Source] Re: Visual effects for reloading data like in chrome browse, facebook, on mobile devices ...

2016-05-06 Thread Kessler CTR Mark J
Send an email to [1] to unsubscribe from the users mailing list. [1] users-unsubscr...@flex.apache.org [2] http://flex.apache.org/community-mailinglists.html -Mark -Original Message- From: Justin Ransom Dallas [mailto:justindal...@gmail.com] Sent: Thursday, May 05, 2016 4:02 PM To:

Re: Declaration of style 'gap' conflicts with previous declaration

2016-05-03 Thread Kessler CTR Mark J
I've seem to have missed this thread, apologies. Well it's one of those situations when there isn't a correct answer. It's been in the source for a few years now, so we cannot do anything to it without breaking other people who rely on what exists now. The solution for you may be to monkey

RE: [Non-DoD Source] Filtering XML doc

2016-04-18 Thread Kessler CTR Mark J
You mean like using dot notation and walking down the nodes or filtering? I use somethings similar with some e4x / xmllistcollections. I just typed this off the top of my head so it might need to be checked. var myXml:XML =

RE: [FlexJS] Embedded Fonts (was: Summary of things that should be noted when starting a new project)

2015-12-03 Thread Kessler CTR Mark J
The first reason we had used embedded fonts was for reports / text displayed using a rotation / landscaping. Later it was just to be more consistent. But as long as we could select a font (css even) it would be fine. I'm sure there are people who are very specific that want to control every

RE: What is 'new navigation' since Apache Flex 4.10 ?

2015-12-02 Thread Kessler CTR Mark J
It added a new interface[1] to standardize some basic row/index moving and searching methods. You can also pass the components to other methods using that interface. [1] https://flex.apache.org/asdoc/spark/components/supportClasses/IDataProviderEnhance.html -Mark -Original

RE: Flex 4.15.0

2015-11-04 Thread Kessler CTR Mark J
Flex will be around a long time. Flash and Air are not the same targets. Adobe will continue pushing Air forward even if Flash fades away one day. Not to mention the ability to use a captive runtime(packing similar to a standalone app). As for FlexJS, it has good momentum and well on

RE: Spark components with Material Design

2015-10-06 Thread Kessler CTR Mark J
If not I have skins for the flat/raised/floating buttons. Just let me know if you want me to post an example later on. -Mark -Original Message- From: okrue...@edscha.com [mailto:okrue...@edscha.com] Sent: Monday, October 05, 2015 8:04 AM To: users@flex.apache.org Subject: RE: Spark

RE: REMOVE DELETE

2015-09-04 Thread Kessler CTR Mark J
I'm guessing your trying to unsubscribe [1].You will need to send an email to users-unsubscr...@flex.apache.org [1] http://flex.apache.org/community-mailinglists.html -Mark -Original Message- From: Michael Aarons [mailto:mich...@uslinc.com] Sent: Friday, September 04, 2015 11:15

RE: Spark components with Material Design

2015-08-28 Thread Kessler CTR Mark J
Benefit of having it all in the skins would allow drop in place use for existing applications. -Mark

RE: Adobe Debugger

2015-08-19 Thread Kessler CTR Mark J
I would assume the current versions would work for Win10. Not sure about their Edge browser though. It has some sort of packaged version of Flash Player. -Mark -Original Message- From: Saul Diaz [mailto:cripito...@gmail.com] Sent: Wednesday, August 19, 2015 11:44 AM To:

RE: Build AIR APP with AIR integrated inside

2015-08-17 Thread Kessler CTR Mark J
You're looking for a captive runtime. Give this slightly older page a view [1]. It's titled Packaging a captive runtime bundle for desktop computers. For things such as exporting for android it should be always included as a captive runtime. [1]

RE: Flex/Flash Viable still?

2015-07-15 Thread Kessler CTR Mark J
There is still is strong support for Flex. Flex has the ability to target Flash, Air, captive / native apps, and soon HTML5 (making great progress). Even with the occasional the sky is falling comment about flash, you will still have options for quite some time. -Mark

RE: methods for web app to read text file on client's computer?

2015-07-06 Thread Kessler CTR Mark J
Well I use the filereference to select files the user wants to upload using a web app. So I do know the user can select and upload files from user local files. Never tried to read one directly however after the user has selected the files. -Mark -Original Message- From:

RE: EventDispatcher interface

2015-05-22 Thread Kessler CTR Mark J
I made an example[1] a while back when I was playing with that. It involves inheriting the EventDispatcher and keeping a duplicate list of events as they get added since the flash player is handling the lists and methods. It also enabled me to add extra functionality like single use

RE: Flex list like tinder layout

2015-04-27 Thread Kessler CTR Mark J
Never used it before, but there is a swipe gesture event [1]. [1] http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/InteractiveObject.html#eventSummary -Mark -Original Message- From: Scott Matheson [mailto:smathe...@intralinks.com] Sent: Sunday, April

RE: Flex list like tinder layout

2015-04-27 Thread Kessler CTR Mark J
Now with correct url. [1] http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/InteractiveObject.html#event:gestureSwipe -Original Message- From: Kessler CTR Mark J [mailto:mark.kessler@usmc.mil] Sent: Monday, April 27, 2015 6:51 AM To: users

RE: Sorting ArrayCollection after filtering

2015-04-02 Thread Kessler CTR Mark J
Yes you can do both at the same time. Using the filterFunction [1] and the sort[2] properties. If it doesn't update automatically call refresh(). [1] http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/collections/ListCollectionView.html#filterFunction [2]

RE: HTTP Basic Authentication for URLRequest

2015-04-01 Thread Kessler CTR Mark J
I believe the separation of the header from the body is the double CR. It's been a while since I've seen the standard. -Mark -Original Message- From: Deepak MS [mailto:megharajdee...@gmail.com] Sent: Wednesday, April 01, 2015 2:11 AM To: users@flex.apache.org Subject: Re: HTTP Basic

RE: Problem with a path to images

2015-03-31 Thread Kessler CTR Mark J
What happens when you do; private var filePath:String = /approot/assets/; r/s -Mark Kessler Senior Program Analyst MCICOM G4 Phone: (571) 256-7089 Email: mark.kessler@usmc.mil -Original Message- From: mark goldin [mailto:markzolo...@gmail.com] Sent: Tuesday, March 31, 2015

RE: security certificates

2015-03-25 Thread Kessler CTR Mark J
Well the problem with self-signed is other people cannot easily validate the signature. You are your own certificate authority(CA) in a simplistic sense. Were as purchasing one from a company that that hosts public CA's can more easily be verified by their root certificates. Here for the

RE: Question about configuring VS 2012

2015-03-24 Thread Kessler CTR Mark J
You can open a website like a project in VS. Think it's under file -open website. Navigate to its www root folder and say ok. -Mark -Original Message- From: mark goldin [mailto:markzolo...@gmail.com] Sent: Monday, March 23, 2015 5:08 PM To: users Subject: Re: Question about

RE: HTTP Basic Authentication for URLRequest

2015-03-24 Thread Kessler CTR Mark J
Could always try SSL with the UN/PW in the URL [1]. [1] http://stackoverflow.com/questions/2716990/http-basic-authentication-credentials-passed-in-url-and-encryption -Mark -Original Message- From: Deepak MS [mailto:megharajdee...@gmail.com] Sent: Tuesday, March 24, 2015 12:26 AM To:

RE: Question about configuring VS 2012

2015-03-24 Thread Kessler CTR Mark J
BTW this is assuming you have the VS-Web installed [1]. [1] http://www.microsoft.com/en-us/download/details.aspx?id=30669 -Mark -Original Message- From: Kessler CTR Mark J [mailto:mark.kessler@usmc.mil] Sent: Tuesday, March 24, 2015 6:06 AM To: users@flex.apache.org Subject: RE

RE: Combobox with icons

2015-03-23 Thread Kessler CTR Mark J
I do know a s:BitmapImage can load files on the fly with its source property [1]. It supports The name of a external image file and The image location can be specified via a URL, URLRequest, or file reference. It is limited to PNG, GIF, or JPG. [1]

RE: The Player, a case for an independent Flash Player

2015-02-27 Thread Kessler CTR Mark J
Maybe another solution would be to move this to the users list if this thread needs to keep going. They will keep the non sdk development discussion out of Dev and people can still participate on the Users list. -Mark

RE: Evenly distribute column width in Spark Datagrid

2015-02-19 Thread Kessler CTR Mark J
! Shervin 2015-02-13 14:50 GMT+01:00 Kessler CTR Mark J mark.kessler@usmc.mil: Oh well then change my idea to this... change all your width statements to minWidth for each column. s:GridColumn dataField=field1 headerText=My field 1 minWidth=50 / s:GridColumn dataField=field2 headerText=My

RE: Evenly distribute column width in Spark Datagrid

2015-02-12 Thread Kessler CTR Mark J
I know I'm late to this. But could you try a dummy column on the end that has no header text. This would be the last column in your list... it would simply add an empty column that take up the remaining space in a uniformed fashion. s:GridColumn dataField=fieldthatdoesnotexist headerText= /

RE: Databinding with SparkGrid and locked headers/columns seems broken

2015-01-09 Thread Kessler CTR Mark J
David, When you're ready you can add issues to our JIRA [1].Just attach a small test case or put it in the comments. [1] https://issues.apache.org/jira/browse/FLEX -Mark -Original Message- From: DavidM [mailto:dmos...@gmail.com] Sent: Friday, January 09, 2015 11:33 AM To:

RE: Databinding with SparkGrid and locked headers/columns seems broken

2015-01-09 Thread Kessler CTR Mark J
Are you using an Array or ArrayCollection? -Mark -Original Message- From: DavidM [mailto:dmos...@gmail.com] Sent: Thursday, January 08, 2015 9:45 PM To: users@flex.apache.org Subject: Re: Databinding with SparkGrid and locked headers/columns seems broken Replaced Spark Datagrid with Mx

RE: Flex Datagrid: MX vs Spark

2015-01-06 Thread Kessler CTR Mark J
For locked columns [1] and locked rows [2]. The Adobe managed parts for asdoc are still upto v4.6, however the apache run asdoc show our changes upto the latest versions. I believe these two features were added in shortly after Flex was donated to apache. [1]

RE: Strategy to Externalise FXG Components

2014-12-22 Thread Kessler CTR Mark J
Modules build similar to an application. So I'm guessing it would work fine to try that in IDEA. But I'm sure they have a readymade way of doing it in there somewhere too. -Mark -Original Message- From: Tintin [mailto:1955.mille.mig...@googlemail.com] Sent: Monday, December 22, 2014

RE: Strategy to Externalise FXG Components

2014-12-17 Thread Kessler CTR Mark J
Yes, you can bundle whatever you like really into a module. You could even have the module reach into the parentApplication and have it run methods or set itself up. -Mark -Original Message- From: Tintin [mailto:1955.mille.mig...@googlemail.com] Sent: Wednesday, December 17, 2014

RE: Flex skin implementing material design out there?

2014-12-04 Thread Kessler CTR Mark J
The new flat skins that were being donated would be closer to what you describe. I believe the current repo they are stored in is in [1] GITHub. [1] https://github.com/akamud/FlatSpark -Mark -Original Message- From: itworksforme [mailto:chiamamib...@yahoo.it] Sent: Wednesday, December

RE: Singleton question

2014-11-14 Thread Kessler CTR Mark J
+1 private static var _instance:ModelLocator; public static function getInstance():ModelLocator { if(! _instance) _instance = new ModelLocator(); return _instance; } Only creating new instance when one isn't present. Since it's static, it should only be done once. -Mark

RE: Flash Builder 4.7 view designer?

2014-11-07 Thread Kessler CTR Mark J
+1 -Original Message- From: Tom Chiverton [mailto:t...@extravision.com] Sent: Friday, November 07, 2014 3:54 AM To: users@flex.apache.org Subject: Re: Flash Builder 4.7 view designer? Or FlashDevelop Tom

RE: Problem installing Flex 4.13.0 with AIR 15 and Flash Player 15

2014-09-19 Thread Kessler CTR Mark J
Is that a double slash // ? http://download.macromedia.com/get/flashplayer/updaters/15/playerglobal15_0.swc -Original Message- From: Alex Harui [mailto:aha...@adobe.com] Sent: Friday, September 19, 2014 12:11 PM To: users@flex.apache.org Subject: Re: Problem installing Flex 4.13.0 with

RE: Simple Database Architecture Suggestions Please

2014-08-27 Thread Kessler CTR Mark J
I agree with using the follow. MySQL/MariaDB with php serverside Or MS SQL with ASP.Net serverside. Concept being running a webserver that has php/asp.net as the scripted middle man. Your application makes a http/https call to the web page. The php/asp.net deals with any user security

RE: Design tools for creating Flex 4 skins

2014-08-06 Thread Kessler CTR Mark J
{ return _scaleUniform; } public function set ScaleUniform(value:Boolean):void { _scaleUniform = value; } } -Original Message- From: Kessler CTR Mark J [mailto:mark.kessler@usmc.mil] Sent: Friday, August 01

RE: Design tools for creating Flex 4 skins

2014-08-06 Thread Kessler CTR Mark J
Side bar note, here are the soon to be release notes for the new Inkscape 0.91 [1] [1] http://wiki.inkscape.org/wiki/index.php/Release_notes/0.91 -Mark

RE: Design tools for creating Flex 4 skins

2014-08-06 Thread Kessler CTR Mark J
I'm not saying replacing FXG with SVG. They will both be supported at some point. Some of us use SVG because it's more widely supported and can be used outside of actionscript. -Mark

RE: Design tools for creating Flex 4 skins

2014-08-01 Thread Kessler CTR Mark J
I remember reading this a while back [1] Development and sales ended on April 23, 2012 [1] http://www.adobe.com/products/flashcatalyst.html -Original Message- From: Patil, Virat [mailto:virat.pa...@capgemini.com] Sent: Friday, August 01, 2014 2:24 AM To: users@flex.apache.org

RE: Design tools for creating Flex 4 skins

2014-08-01 Thread Kessler CTR Mark J
Inkscape is what I'm waiting on personally. But they've taken years to work towards this next major release. You can track release progress [1]. So a few more months it looks like. [1] http://www.inkscape.org/en/develop/next-release/ -Mark -Original Message- From: Sascha Ahrend

RE: Flex button default down state?

2014-08-01 Thread Kessler CTR Mark J
Well I believe you could go about this a few ways. Trying overriding the getCurrentSkinState[1] and return the state you would like. Maybe use a togglebutton [2] [1]

RE: Spark GridItemRenderer

2014-07-02 Thread Kessler CTR Mark J
Possibly listen for the dataChange event[1] or override the data setter[2] for the renderer. Handle assignment of the data yourself, checking for nulls/ bad values. [1]

RE: Bindable functions

2014-06-26 Thread Kessler CTR Mark J
//This responds to an event to show binding changes. [Bindable(lastChangedEvent)] public function get last():Boolean { return this.viewIndex === (this.numElements - 1); } //This could dispatch the event to trigger the binding changes after a new element has been added. dispatchEvent(new

RE: Bindable functions

2014-06-26 Thread Kessler CTR Mark J
: Kessler CTR Mark J mark.kessler@usmc.mil Gesendet: Donnerstag, 26. Juni 2014 11:58 An: users@flex.apache.org Betreff: RE: Bindable functions //This responds to an event to show binding changes. [Bindable(lastChangedEvent)] public function get last():Boolean { return this.viewIndex

RE: Using Apache Flex installer with the latest beta of AIR

2014-06-20 Thread Kessler CTR Mark J
BTW, what's the folder in for? It contains the AIR SDK again. Is it just a temp folder I can delete or is that really used somewhere? If it's a temp folder, why not just use the folder named temp instead of creating another one? The in folder houses the downloaded dependencies Flex uses.

RE: Sorting behavior changed between Adobe and Apache Flex SDK (?)

2014-06-20 Thread Kessler CTR Mark J
Could you please create a new issue [1] and post a small example app. I'll take a peek at it later. [1] https://issues.apache.org/jira/browse/FLEX -Mark -Original Message- From: santanu4ver [mailto:santanu4...@gmail.com] Sent: Friday, June 20, 2014 6:14 AM To: users@flex.apache.org

RE: Changing sort type

2014-06-17 Thread Kessler CTR Mark J
sortCompareFunction. Is that a method I need to implement? How? Please advise. TIA, Oleg On Jun 11, 2014 7:06 AM, Kessler CTR Mark J mark.kessler@usmc.mil wrote: Well on each column there are a few properties to help sorting. I would recommend looking into the sortCompareType[1][2]. It allows you

RE: Changing sort type

2014-06-17 Thread Kessler CTR Mark J
to upgrade (if my boss reluctantly agrees), so in any case it's a long process... The bottom line is: it there another solution like sortCompareFunction implementation or anything else ? I need to fix it this week, not after Labor day ;-) On Tue, Jun 17, 2014 at 5:46 AM, Kessler CTR Mark J

RE: Changing sort type

2014-06-11 Thread Kessler CTR Mark J
Well on each column there are a few properties to help sorting. I would recommend looking into the sortCompareType[1][2]. It allows you to force which type of sorting is used for a column. e.g. column.sortCompareType = SortFieldCompareTypes.NUMERIC; [1]

RE: ANT build fails for web project

2014-05-27 Thread Kessler CTR Mark J
Also remember that even rsls signed by apache won't be the same as the adobe signed rsls. The adobe ones go into a special cache outside of your browser. While anything else goes into your browser cache. -Mark -Original Message- From: santanu4ver [mailto:santanu4...@gmail.com] Sent:

RE: Download Multiple Files from Flex app to Server ???

2014-05-27 Thread Kessler CTR Mark J
Well a FileReferenceList [1] would allow uploading multiple files at once to a server. There is an example at the bottom [2] that should give me details about it. [1] http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/FileReferenceList.html [2]

RE: how to mxml restrict with binding AS3 variable?

2014-03-06 Thread Kessler CTR Mark J
I remember certain regex patterns it makes a difference if you move certain characters to the end of the list. -Mark -Original Message- From: modjkl...@comcast.net [mailto:modjkl...@comcast.net] Sent: Thursday, March 06, 2014 12:11 PM To: users@flex.apache.org Subject: Re: how to mxml

RE: Data type to convert and store a srting into decimal/float value

2014-02-26 Thread Kessler CTR Mark J
We use a different technique here. We have a custom gridcolumn for our datagrids. One of the added properties is a boolean value that states weather the column has numeric data. Then override some of the sorting methods and use the SortFields own numeric property [1]. Works pretty good.

RE: Data type to convert and store a srting into decimal/float value

2014-02-26 Thread Kessler CTR Mark J
I just prefer using spark over mx. However there is an MX version of the SortField [1]. [1] http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/collections/SortField.html#numeric -Mark -Original Message- From: Ash1703 [mailto:ashish.ya...@firmwisegroup.com] Sent:

RE: Custom SortComparefunction to avoid empty data

2014-02-24 Thread Kessler CTR Mark J
I'm guessing just test for an empty string / value when doing the compare for that column. Only catch is to watch for the sorting direction to always force the blanks down. Here is a page [1] that may help. Below is a from the hip example I put together... although it needs import

RE: Error #2038: File I/O Error. URL:https://10.11.32.11/cgi-bin/upload.pl

2014-02-04 Thread Kessler CTR Mark J
We use IIS / https / client certs here, so we've definitely had our fair share of strange 2038 errors to hunt down with file uploads. Some issues we had are: -403 error when the new connection doesn't send the client cert. -Server cert is invalid or expired (usually more of an issue with

RE: SDK documentation in IntelliJ IDEA

2014-02-03 Thread Kessler CTR Mark J
6:54 AM To: users@flex.apache.org Subject: RE: SDK documentation in IntelliJ IDEA Do you think we would be allowed to use Adobe ASDOC in Apache Flex SDK ASDOC? Maurice -Message d'origine- De : Kessler CTR Mark J [mailto:mark.kessler@usmc.mil] Envoyé : lundi 3 février 2014 11:52 À

RE: SDK documentation in IntelliJ IDEA

2014-01-31 Thread Kessler CTR Mark J
The class reference for date[1] is part of the top level classes. [1] http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/Date.html -Mark -Original Message- From: Lee Burrows [mailto:subscripti...@leeburrows.com] Sent: Friday, January 31, 2014 1:49 PM To:

RE: Spark Datagrid Drag and Drop

2014-01-27 Thread Kessler CTR Mark J
Yes the new versions has DnD enabled and if you have multi-select enabled it should drag multiple items as well. For drag[1] and drop[2] or being able to move[3] instead of copy. If you would like to select multiple items at once you can use the selectionMode [4] with

RE: MX Datagrid Scroll issue incase of renderer as editor

2014-01-22 Thread Kessler CTR Mark J
How about the create Jira account page [1] too :) [1] https://cwiki.apache.org/confluence/display/FLEX/3.1+JIRA+Account -Mark -Original Message- From: Justin Mclean [mailto:jus...@classsoftware.com] Sent: Tuesday, January 21, 2014 9:33 PM To: users@flex.apache.org Subject: Re: MX

RE: How to set JDK to use?

2014-01-22 Thread Kessler CTR Mark J
What OS are you using? If you using Windows you can go into your System Properties-Advanced-Environment Variables. -Mark -Original Message- From: Mikhail Vorobyov [mailto:vorobyov.mikh...@gmail.com] Sent: Tuesday, January 21, 2014 10:55 AM To: users@flex.apache.org Subject: How to

RE: secure url for crossdomain.xml file

2013-12-17 Thread Kessler CTR Mark J
If you're using your own config.xml you can override the settings for them. The default RSL paths are in the flex-config file [1]. You can copy those runtime-shared-library-path blocks to your config.xml and change them to be https:// as needed. [1] Flex-sdk\frameworks\flex-config.xml

RE: Version 4.12 of Apache Flex

2013-12-09 Thread Kessler CTR Mark J
: Kessler CTR Mark J [mailto:mark.kessler@usmc.mil] Sent: Monday, December 09, 2013 7:27 AM To: users@flex.apache.org Subject: RE: Version 4.12 of Apache Flex Well you can add some redundant code to removeAllListeners if you would like, but we can't modify the flash player code

RE: Version 4.12 of Apache Flex

2013-12-09 Thread Kessler CTR Mark J
I wouldn't mind looking into that. Maybe using Dictionary's/Map's to group the data better. But I like the idea to only have it enabled exactly where it's needed. My proof of concept code was a bit overkill to make feasibility testing easier. More idea's for it would be great. I did make

RE: error overriding mx_internal method setSelectedIndex()

2013-12-06 Thread Kessler CTR Mark J
It was changed around 4.10 [1] . The change to public enabled a common method between the listbase components and the grid/datagrid components. This change supported a new interface that implements a simple navigation that can be commonly used between those components [2]. No mx_internal

RE: Profiling mobile app

2013-12-02 Thread Kessler CTR Mark J
There is a profiler in FD. It's the clock icon on the menu bar. Clicking on it will open up the profiler popup. Click on the clock inside the profiler to enable it. Then run your app and it should start listing the memory and the live objects. -Mark -Original Message- From:

RE: Profiling mobile app

2013-12-02 Thread Kessler CTR Mark J
...@dahmenia.de] Sent: Monday, December 02, 2013 7:26 AM To: users@flex.apache.org Subject: Re: Profiling mobile app this does not work, when i enable it, nothing happens do you mean in the emulator or on device? Am 02.12.2013 13:07, schrieb Kessler CTR Mark J: There is a profiler in FD. It's the clock

RE: Where to report Bugs? Flex SDK vs. Air SDK

2013-12-02 Thread Kessler CTR Mark J
For flex issues, you can submit them to our JIRA [1]. The AIR sdk issues to the Adobe BugBase [2]. [1] https://issues.apache.org/jira/browse/FLEX [2] https://bugbase.adobe.com/ -Mark -Original Message- From: FlexForever [mailto:max929...@yahoo.com] Sent: Sunday, December 01, 2013

RE: Profiling mobile app

2013-12-02 Thread Kessler CTR Mark J
profiler does nothing, also in emulator Am 02.12.2013 14:22, schrieb Kessler CTR Mark J: Should work in the emulator. Are you using a debug version of your app? I haven't tried it out of the emulator, but out of your two options the emulator or the device, the emulator would stand the best

RE: Profiling mobile app

2013-12-02 Thread Kessler CTR Mark J
@flex.apache.org Subject: Re: Profiling mobile app FD says: profiling: {myapp.swf} in the output panel but the profiler does nothing Am 02.12.2013 14:33, schrieb Frank Dahmen: yes its debug version profiler does nothing, also in emulator Am 02.12.2013 14:22, schrieb Kessler CTR Mark J: Should work

RE: Combo box and binding

2013-11-18 Thread Kessler CTR Mark J
Missed part of the example when I was copying it...

RE: EULA or SaaS agreement for Flex browser-based (e.g. plug-in; not AIR) app?

2013-11-15 Thread Kessler CTR Mark J
Well the US DoD requires their centrally managed/hosted websites/web-applications to have a Notice and Consent banner before using them. So I suppose it depends your environment. IMO in general since the web-apps do not install, no EULA is required. The license for the flash player was

RE: Encrypt in Flex - Decrypt in .NET

2013-10-31 Thread Kessler CTR Mark J
On a side note; not knowing what you are using it for... if this is for transmitting passwords it would be better if you did a one way hash on the client and stored hashed value in a database verses encrypting/decrypting and possibly storing the plaintext in the database. Hashing Algorithms:

RE: Encrypt in Flex - Decrypt in .NET

2013-10-31 Thread Kessler CTR Mark J
Very good point, store the randomly generated salt in a user record next to their salted hashed password. Definitely adds more time to resolving passwords when they have to try hashing with salts. Makes static lookup tables(like rainbow) much harder to use. -Mark -Original Message-

RE: Binding to Grid's selectedItem

2013-10-31 Thread Kessler CTR Mark J
The binding will last when changing the selected item. -Mark -Original Message- From: mark goldin [mailto:markzolo...@gmail.com] Sent: Thursday, October 31, 2013 11:58 AM To: users Subject: Binding to Grid's selectedItem I have a datagrid and a detail section to show data from the

RE: Comboox clear text

2013-10-21 Thread Kessler CTR Mark J
If your trying to prevent addition of a new item. Try the preventDefault() from the changing event. Just check for the -3 new value. -Mark -Original Message- From: mark goldin [mailto:markzolo...@gmail.com] Sent: Saturday, October 19, 2013 7:08 AM To: users Subject: Comboox clear

RE: fxSpy 1.4

2013-10-15 Thread Kessler CTR Mark J
Thanks Frédéric. It looks good. -Mark -Original Message- From: Frédéric THOMAS [mailto:webdoubl...@hotmail.com] Sent: Saturday, October 12, 2013 2:42 PM To: users@flex.apache.org Subject: fxSpy 1.4 Just committed fxSpy 1.4 Inspect, edit and monitor your Flex application's

RE: Component creation order

2013-10-09 Thread Kessler CTR Mark J
added event [1]... [1] http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/DisplayObject.html#event:added -Mark -Original Message- From: mark goldin [mailto:markzolo...@gmail.com] Sent: Wednesday, October 09, 2013 12:47 PM To: users Subject: Re: Component

RE: Google don't think downloads from Flash/Flex being broken in Chrome is 'essential'

2013-09-27 Thread Kessler CTR Mark J
So does this mean as a work around you will have to use ExternalInterface [1]? I use it for our Deep Linking code. http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/external/ExternalInterface.html -Mark

  1   2   >