Re: Version 4.12 of Apache Flex

2013-12-09 Thread Mark Kessler
Just a side thought on your proxy idea. The only complication to it is this... We could have one that can be enabled at anytime, but it would only have visibility over what has happened since it was enabled. I like the idea, just need to find an angle that works and provides the functionality as w

Re: Version 4.12 of Apache Flex

2013-12-09 Thread Mark Kessler
stenerTracker.removeAllEventListeners(foo, > "event"). > > And by using addTrackedEventListener and not calling the API > addEventListener, it is easy for the developer to grep their code to make > sure everybody is using it. > > Anyway, I'm not going to spend

Re: Drag drop from Datagrid to Tree

2013-12-29 Thread Mark Kessler
Well adding dragEnabled to the datagrid allows you to drag items from the datagrid to other items. The dropEnabled when added to the datagrid, allows it to accept items dropped on it. The dragMoveEnabled should just allow you to move items around inside the datagrid... like reordering. The MX tr

Re: Question about textInput

2014-02-11 Thread Mark Kessler
Styles will allow you to change the contentBackgroundColor or the focusAlpha [1]. [1] http://help.adobe.com/en_US/FlashPlatform/reference/actions

Re: Welcome Scott Guthmann, our newest Committer and PMC member

2013-07-19 Thread Mark Kessler
Congrats! -Mark On Fri, Jul 19, 2013 at 2:52 PM, OmPrakash Muppirala wrote: > The Apache Flex PMC is very happy to welcome Scott Guthmann as our newest > committer and PMC member. Scott is currently the Director of Marketing for > On3, a software development services agency. He lives in Denv

Re: 4.10 changelog?

2013-08-11 Thread Mark Kessler
Well there are the release notes on any of the 4.10 SDK downloads or available online in a mirror [1], but I don't believe they go into great detail or include examples. Half of the components are just spark creations of their MX versions. You can get more information on them from the upto date A

Re: Flash / Flex app

2013-08-15 Thread Mark Kessler
What do you think weatherspark [1] is done in? Or the Sherwin Williams color visualizer [2]? [1] http://www.weatherspark.com [2] http://www.sherwin-williams.com/visualizer/ -Mark

Re: how to perform secondary sort on spark datagrid?

2013-09-02 Thread Mark Kessler
Using your own sorting handler for the dataProvider. ListCollectionView (ArrayCollection, XMLListCollection) have a "sort" (iSort) property [1]. Create a new "Array" to add new "SortField"'s to. These have properties like descending and numeric. The last thing to do is to handle "SortChanging"

Re: question on modules

2013-09-02 Thread Mark Kessler
Well if it's not the parentApplication or doesn't have a parent. You could add a property to the child module and have it's parent assign a reference to it. -Mark On Mon, Sep 2, 2013 at 6:40 PM, Maurice Amsellem < maurice.amsel...@systar.com> wrote: > Hello, > > Does someone know how to get t

Re: question on modules

2013-09-02 Thread Mark Kessler
Would something like either of the following have any effect on the your pathing for test purposes? (parentApplication.moduleComponentId as Modulename).ventana.variableName.text = "test"; or (parentApplication.moduleComponentId as Object).ventana.variableName.text = "test"; -Mark On Mon, Sep

Re: Send parameter to mxml constructor

2013-09-26 Thread Mark Kessler
Let me make the example a little more neutral. class being called. public class MyClass inherits UIComponent { /** * Constructor. */ public function MyClass ():void { super(); } //--

Re: Send parameter to mxml constructor

2013-09-26 Thread Mark Kessler
Oh I see your using AS to create an instance of it. This would work for accessing that property... var newMyClass:MyClass = new MyClass() newMyClass.myProperty = object being passed. But since your using AS you could pass it in the constructor now. public class MyClass { //Const

Re: Copy to Clipboard

2013-09-28 Thread Mark Kessler
Just make sure the user clicks a button to initiate the clipboard action when in a browser. It's a security requirement. -Mark On Sat, Sep 28, 2013 at 6:30 PM, Michael Astudillo < mastudi...@austrosoft.com.ec> wrote: > Hi guys > > Somebody say me how i can to use the clipboard in flash player

Re: Spark DataGrid and variableRowHeight

2013-10-03 Thread Mark Kessler
I believe the first row dictates the measured height by default. I know I've had varied results in the past when the first row was long vs short. -Mark

Re: how to force redraw of custom spark buttonbar?

2013-10-14 Thread Mark Kessler
Well you could use the fallback of. myButtonBar.dataProvider = null; myButtonBar.dataProvider = acButtonList; But if your using our 4.10 sdk or greator you can use myButtonBar.setButtonEnabled [1] / setButtonsEnabled [1] http://flex.apache.org/asdoc/spark/components/supportClasses/ButtonBarBase

Re: DatagridColumn Sorted not work

2013-11-16 Thread Mark Kessler
You're going to need to post an example of it to help you trouble shoot it. My guess is the default sorting that it chose for the column didn't match the datatype that was being used. You could try to use the new gridColumn.sortCompareType [1] method to force a specific comparison type if you wou

Ubuntu Air install script?

2015-05-12 Thread Mark Kessler
I know we already have a means to force on Air, but does this script mentioned in this article [1] make it easier for anyone? [1] http://www.noobslab.com/2015/05/adobeair-is-now-available-for-ubuntu.html -Mark

Re: Welcome Joseph Labrecque as Apache Flex committer

2015-08-17 Thread Mark Kessler
Congratz and welcome :) -Mark On Mon, Aug 17, 2015 at 4:12 PM, OmPrakash Muppirala wrote: > The Apache Flex PMC is excited to welcome Joseph Labrecque as our newest > committer! Joseph has been steadily contributing to the Flash and Flex > community for several years. He is very well known i

Re: Adobe Debugger

2015-08-19 Thread Mark Kessler
Good information to know. If I run into a solution I'll let you know. I wonder if the Adobe Labs versions [1] has any different options. Only reason I bring it up is they have the newer PPAPI ones too. [1] http://labs.adobe.com/downloads/flashplayer.html -Mark On Wed, Aug 19, 2015 at 2:00 PM

Re: RSLs

2015-12-13 Thread Mark Kessler
A couple of things. The rsls and modules we create will go in your browser cache. I don't think too many PC's have their browser cache set high enough for your 1 gig of your content. If you could make an air app / captive runtime app. It could be possible to ship it on a DvD/Usb drive with the

Re: Thanks to the Team

2016-04-21 Thread Mark Kessler
Feel free to look over those who have added to the Showcase [1] so far. You can put in a JIRA ticket [2] to add your app to the showcase as well! [1] http://flex.apache.org/community-showcase.html [2] https://issues.apache.org/jira/browse/FLEX -Mark On Thu, Apr 21, 2016 at 6:37 PM, Karl KTA

Re: Visual effects for reloading data like in chrome browse, facebook, on mobile devices ...

2016-05-13 Thread Mark Kessler
Here is one I bumped into again [1]. [1] https://www.google.com/design/spec/patterns/swipe-to-refresh.html# -Mark

Re: Using a variable in a sqlite query

2016-12-26 Thread Mark Kessler
Might it be needed a little string separation using single quotes? So the part here "CREATE TABLE IF NOT EXISTS " + name + " might be this. "CREATE TABLE IF NOT EXISTS '" + name + "' which has single quotes added... translating to roughly CREATE TABLE IF NOT EXISTS 'Knives' -Mark On M

Inkscape 0.92 release

2017-01-04 Thread Mark Kessler
For those of us that use inkscape, the next version has been released [1]. Still supports fxg exporting. [1] https://inkscape.org/en/news/2017/01/04/inkscape-version-092-released/ -Mark

Re: unsubscribe

2017-09-10 Thread Mark Kessler
You need to send an email to [1] to unsubscribe. All mailing list information can be found at [2]. [1] users-unsubscr...@flex.apache.org [2] http://flex.apache.org/community-mailinglists.html Mark K On Sat, Sep 9, 2017 at 10:29 PM, Stuart Thomas wrote: > unsubscribe

Re: [Non-DoD Source] Flex 4.1A

2017-09-23 Thread Mark Kessler
Understandable, but they are google-able and working links. I'm not going to enforce the license on their own site, for files they leave out in the open, without any protection. If Adobe wants to protect those, they have the means to put them behind authentication / scripts / agreements. -Mark K

Re: [Royale] Flex to FlexJS migration path

2017-09-29 Thread Mark Kessler
It's a good idea. Would definitely make a transition easier if I could plan out over time. Being able to stage changes to migrate more easily would be welcome. -Mark K On Fri, Sep 29, 2017 at 2:40 PM, Peter Ent wrote: > Hi, > > I'm moving to discussion over to Royale, but still including users

Re: [FlexJS] Guidelines for implementation of layout containers and navigation containers

2017-10-01 Thread Mark Kessler
+1 and all 3 points. The power of the current flex SDK is based on the fact it can target multiple things with one code base. While the browser portion is clear, meaning Flash to JS, the support for Air is important. Air can easily do desktop and mobile. -Mark K On Sat, Sep 30, 2017 at 10:29

Re: [Royale] Flex to FlexJS migration path

2017-10-03 Thread Mark Kessler
This looks good so far. Based on the information in it, this will be a larger page. But it definitely adds clarity. -Mark K On Tue, Oct 3, 2017 at 1:30 PM, Peter Ent wrote: > I have a quick sample web page up at: > > http://home.apache.org/~pent/Flex2Royale/ > > I did not spend much time styli

Re: Update on Adobe Flash Player End of Support from Microsoft today

2020-09-08 Thread Mark Kessler
It has to do with their customer base such as governments and such always being delayed in their technology transitions. This does not mean the rest of the browsers will do the same, buy microsoft will support things longer for an additional cost -Mark K On Sat, Sep 5, 2020 at 1:10 AM Greg Dove

Re: Best flex for an Android application ?

2021-03-02 Thread Mark Kessler
Electron is more for Desktops, For a native app, you might need to do AIR with a captive runtime. -Mark K On Tue, Mar 2, 2021 at 5:18 AM Carlos Rovira wrote: > > Hi Julien > > regarding mobile there's also a tutorial a community user did about > Electron here [1], but that is like Cordova, just