Re: Tomcat 8 memory leak (?) moving from GlassFish

2017-01-10 Thread modjklist
Thanks Chris, I must be doing something wrong. If I add either subscription-timeout-minutes or message-time-to-live (or both) to the remoting-config.xml file, I get HTTP status 500 (internal server error). Is that the right file to place them in? And, does timeout-minutes belong in

Re: Tomcat 8 memory leak (?) moving from GlassFish

2017-01-09 Thread modjklist
Thanks so much Chris, Has a stable BlazeDS 4.8.0 been released yet? Currently I'm using build=4.0.0.14931. Thanks for summarizing the two (three?) parameters to set to help improve memory cleanup with BlazeDS. Do I need to configure any of timeout-minutes subscription-timeout-minutes

Re: Tomcat 8 memory leak (?) moving from GlassFish

2017-01-06 Thread modjklist
Anyone using Flex+BlazeDS+Tomcat? If so, stop Tomcat ($CATALINA_HOME/bin/shutdown.sh) and look at the log at $CATALINA_HOME/logs/catalina.out. Do you see a SEVERE error for memory leak when Tomcat stops? - Original Message - From: modjkl...@comcast.net To: "apache users"

Re: Tomcat 8 memory leak (?) moving from GlassFish

2017-01-06 Thread modjklist
The Tomcat support community replied with the following. I'm thinking anyone using BlazeDS with Tomcat should see the same issue. Anyone know how to resolve? ---tomcat comments follow-- If all goes well, this leak will be handled by Tomcat and your service won't suffer for it.

Re: Tomcat 8 memory leak (?) moving from GlassFish

2017-01-06 Thread modjklist
I should mention I'm using BlazeDS, which I'm assuming is creating connections(?). - Original Message - From: modjkl...@comcast.net To: "apache flex users" Sent: Friday, January 6, 2017 2:08:08 PM Subject: Tomcat 8 memory leak (?) moving from GlassFish In

Tomcat 8 memory leak (?) moving from GlassFish

2017-01-06 Thread modjklist
In the processing of moving my Flex 4.12 web app from GlassFish 3.1.2 to Tomcat 8.5.9, I observe the following SEVERE error in the tomcat log. Has anyone seen this before, and if so, recommend how to address it? 06-Jan-2017 13:49:07.644 SEVERE

Re: FlatSpark for datagrid

2016-10-19 Thread modjklist
You might also consider skins from http://www.ardisialabs.com - Original Message - From: "OK" To: users@flex.apache.org Sent: Sunday, October 16, 2016 11:19:47 AM Subject: Re: FlatSpark for datagrid >I am going to migrate a Flex 3 app to Flex 4 and I plan

Re: Reports

2016-09-08 Thread modjklist
I use iText on my application (java) server. Works beautifully. - Original Message - From: "OK" To: users@flex.apache.org Sent: Wednesday, September 7, 2016 2:15:10 PM Subject: Re: Reports You could go with one of these PHP libs: https://tcpdf.org/

Re: how to pad text in mx:MenuBar?

2016-06-16 Thread modjklist
Hi Alex, that's interesting. The problem I see is when the menubar "centers" the text, whether or not it actually APPEARS centered in the menubar depends on the font's ascent and/or descent values (see image here): https://en.wikipedia.org/wiki/Ascender_(typography) Fonts that support a

how to pad text in mx:MenuBar?

2016-06-15 Thread modjklist
I'm using mx:MenuBar with Flex 4.12 SDK, and having trouble figuring out how to shift the menu text down a few pixels. Ideally this would be a paddingTop adjustment so only the text shifts. The text in question is what appears just looking the menu bar, without clicking, hovering, etc. over

what Air event captures when an app is running its latest version, and I can begin doing my stuff?

2015-07-22 Thread modjklist
I'm using Air 3.1 with Flex SDK 4.12 and FB 4.7. My app executes from the command line (requiring no other user interaction), and also uses Air's update methodology. The problem I'm running into is my app currently triggers to do its stuff based on its creation complete event, and when

Re: launching Air from command line loses input arguments when auto-update occurs

2015-07-08 Thread modjklist
Thanks so much Peter, that was exactly what I needed. I got it working now. Amazing. - Original Message - From: Peter Ginneberge p.ginnebe...@gmail.com To: users@flex.apache.org Sent: Monday, July 6, 2015 6:32:58 PM Subject: Re: launching Air from command line loses input arguments

possible to test Air's ApplicationUpdaterUI() using self-signed cert?

2015-07-06 Thread modjklist
What is the expected outcome for the following scenario to create then update an Air application? 1. Using Flash Builder 4.7, Flex 4.12, with Air 3.1, create an .air distributable file, using a self-signed certificate that I have Flash Builder create during the packaging process (e.g. Export

Re: possible to test Air's ApplicationUpdaterUI() using self-signed cert?

2015-07-06 Thread modjklist
Sorry, I was confused in my last email. Flash Builder does allow one to create then save a self-signed certificate, so a developer can use the same certificate to update an application. I tried to create my own self-signed cert outside FB (with my own CA, and long-lived), but haven't had been

launching Air from command line loses input arguments when auto-update occurs

2015-07-06 Thread modjklist
First time Air user (3.1) trying to understand its capabilities for desktop deployment. Using Flex 4.12 with Flash Builder 4.7. I have some use for a desktop app that can be launched from the command line to develop part of an automated process. From what I can tell in my simple test case,

Re: problem getting current version number using ApplicationUpdaterUI()

2015-07-05 Thread modjklist
I checked the subErrorID, which reports 16827, The version contained in the update file does not match the version from the update descriptor. I assume update file here is the update.xml file I placed on my server (in the same directory as the Air application file). I assume the update

Re: problem getting current version number using ApplicationUpdaterUI()

2015-07-04 Thread modjklist
Is there any reason why the following code would return different values running in Flash Builder debugger compared to when installed as an application on the computer? var appXML:XML = NativeApplication.nativeApplication.applicationDescriptor; var ns:Namespace = appXML. namespace ();

problem getting current version number using ApplicationUpdaterUI()

2015-07-04 Thread modjklist
I'm struggling to get ApplicationUpdaterUI() working with Flex 4.12 using Flash Builder 4.7 and Air 3.1. I'm getting a Download Failed error (e.g. There was an error downloading the update. Error# 16824) when the updater attempts to download the new version. I'm trying to follow the directions

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

2015-07-04 Thread modjklist
from client computer. CSV parsing code , you can search on google. On Sat, Jul 4, 2015 at 3:26 AM, modjklist [via Apache Flex Users] ml-node+s246n1070...@n4.nabble.com wrote: Looking for recommendations to read a text file in Flex web app (not AIR). Does a web app even have permission

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

2015-07-03 Thread modjklist
I've been looking into fileReference, for example: fileReference= new FileReference(); fileReference.addEventListener(Event.SELECT, onFileSelected); var txtTypeFilter:FileFilter = new FileFilter( Text Files (*.txt) , *.txt ); fileReference.browse([txtTypeFilter]); Is it

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

2015-07-03 Thread modjklist
Looking for recommendations to read a text file in Flex web app (not AIR). Does a web app even have permission to read a text file located on the client's computer? Text file is comma-separated data arranged in columns. The total number of lines isn't known ahead of time. Ideally I'd like

how to run Flex app programmatically?

2015-07-02 Thread modjklist
Regarding Flex for desktop web app, I'd like to make an application that can be launched/run programmatically by a computing language (for example C+, or java, python, etc), where the program submits login credentials, then the application will run as its intended. This isn't for testing

Re: how to run Flex app programmatically?

2015-07-02 Thread modjklist
Thanks Alex, This may be the closest to what I'm asking. Have the customer save the Air application to their hard drive, then have their code launch it with arguments that can be used by the application to auto-log them in, perform processing, then exit the application. What if I update the

Re: how to run Flex app programmatically?

2015-07-02 Thread modjklist
Thanks Tom, submit the POST yourself : http://flex.apache.org/asdoc/mx/rpc/http/HTTPService.html I guess the issue is my application needs to submit the post, because it has to be running to receive the reply from the post, and continue further processing. The customer's manufacturing code

Re: can Spark VideoPlayer access youtube or vimeo stored videos?

2015-04-25 Thread modjklist
After some research, I understand vimeo pro account allows you to access the url where they store the video, so that will allow me to use video hosting with flex applications using spark VideoPlayer. That's the only solution I've found so far. - Original Message - From:

can Spark VideoPlayer access youtube or vimeo stored videos?

2015-04-24 Thread modjklist
I'm currently using Spark VideoPlayer in my web app to play a video hosted on my website. However, I'm concerned with my server's bandwidth if I host a lot of videos this way. Would like to move my videos to a 3rd party to host them for this reason. However, is it possible for the

seeing a green screen after video finishes using Spark VideoPlayer

2015-04-12 Thread modjklist
I'm using a spark VideoPlayer with SDK 4.12 and when it finishes playing an mp4 video, the VideoPlayer goes back to the beginning and displays a green screen (e.g .0x004D00). Anyone know how to get it to display the first frame automatically or programmatically when the video finishes playing?

Re: s:VideoDisplay problem on Flex 4.14

2015-04-05 Thread modjklist
Angelo, have you seen this bug? https://issues.apache.org/jira/browse/FLEX-33856 I've been using 4.12 with spark videoplayer and observed the same issue (audio works fine, but black video). Using FireFox at least, simply adding OSMFSettings.enableStageVideo = false ; to the main

Re: how enable checkbox when scroll to bottom of Spark TextArea?

2015-03-10 Thread modjklist
Thank you so much! - Original Message - From: Gaël Chrétien gael.chret...@gmail.com To: users@flex.apache.org Sent: Tuesday, March 10, 2015 12:50:16 AM Subject: Re: how enable checkbox when scroll to bottom of Spark TextArea? Hi, Here is a small implemntation : There is a little

Re: how enable checkbox when scroll to bottom of Spark TextArea?

2015-03-10 Thread modjklist
Wonderful, thanks Evyatar - Original Message - From: Evyatar Ben Halevi-Arbib evyata...@gmail.com To: users@flex apache. org users@flex.apache.org Sent: Tuesday, March 10, 2015 1:21:55 AM Subject: Re: how enable checkbox when scroll to bottom of Spark TextArea? Hey, We had

how enable checkbox when scroll to bottom of Spark TextArea?

2015-03-09 Thread modjklist
I'm trying to implement a clickwrap agreement wherein a user must scroll to the bottom of a spark TextArea or RichEditableText box in order to enable a checkbox that must be selected to a Terms of Service (TOS) contract. This ensures the TOS at least passed by the user's eyes before agreeing to

Re: AW: AW: how to updateDisplayList() in custom headerRenderer? (help!)

2014-12-02 Thread modjklist
Thanks everyone. I thought I was missing out on something basic in Flex to be able to programmatically update a TextInput field in a header renderer. But, turns out it is not that easy. So, what I ended up creating an event listener in the header renderer when the header renderer is added to

Re: how to updateDisplayList() in custom headerRenderer? (help!)

2014-12-01 Thread modjklist
Hello again, I haven't got any response and was just hoping I could entice someone to review my question below. The code implements a textbook method to update the client model when someone changes the text in a spark TextInput located in a header renderer. This works fine. I just need to

Re: AW: how to updateDisplayList() in custom headerRenderer? (help!)

2014-12-01 Thread modjklist
Thanks Olaf, I see how your method passes variable myCondition into the header renderer. But, doesn't this only occur when the data grid is created? That is, once the data grid already exists, how can I programmatically pass the variable myCondition into the header renderer sometime later

Re: AW: how to updateDisplayList() in custom headerRenderer? (help!)

2014-12-01 Thread modjklist
Thanks Olaf, I tried to implement by making a public bindable variable myCondition in the header renderer and then binding it to the TextInput text property (e.g. s:TextInput text={myCondition}.../). but I get the same results -- the variable myCondition is correctly transferred to the

how to updateDisplayList() in custom headerRenderer?

2014-11-29 Thread modjklist
I'm using 4.12 SDK and trying to update a headerRenderer that includes a TextInput. Things works fine when the component is initialized. But thereafter, when I change the model such that the text showing in the TextInput box should change, the text doesn't change. Can someone help me figure

Re: Math.pow in ActionScript

2014-11-12 Thread modjklist
For what it's worth, Matlab produces 72057594037927936. In general, 64-bit math is limited in accuracy to between 16 and 17 decimal digits, depending how well that number fits into a floating point representation. - Original Message - From: Gordon Smith gsmit...@hotmail.com To:

Re: Safari 7.1 doesn't accept keyboard input

2014-10-18 Thread modjklist
Thanks Jake, I was using the debugger version. When I install the production Flash Player, Safari DOES respond to keyboard events. But, it still doesn't respond to mouse scroll wheel. - Original Message - From: Jake Knerr j...@ardisialabs.com To: users, apache users@flex.apache.org

Safari 7.1 doesn't accept keyboard input

2014-10-17 Thread modjklist
Safari 7.1 doesn't accept keyboard inputs in my Flex app. I tried other apps I could find online, such as this one: http://help.adobe.com/en_US/flex/using/WS02f7d8d4857b1677-165a04e1126951a2d98-7fdb.html and same result. Can someone confirm I'm not going crazy? Looks like the auto-updated

How to download video file from application server and auto-run it in Spark VideoPlayer?

2014-10-11 Thread modjklist
Hi, I have a desktop app using Flex SDK 4.12 and Java for middle tier. I'd like to store my .mp4 video files on my application server instead of my public website so that only users of my Flex app may access them. I've no experience with playing video in Flex, but the spark VideoPlayer seems

attached code to disable certain items in spark DropDownList not working

2014-09-08 Thread modjklist
I'm trying to disable certain items in a spark DropDownList. I found this nice example online, which works when you run it online: http://apache-flex-users.246.n4.nabble.com/error-overriding-mx-internal-method-setSelectedIndex-td4110.html

Re: attached code to disable certain items in spark DropDownList not working

2014-09-08 Thread modjklist
I'm not understand how the original code in function setSelectedIndex() in OptgroupDropDownList.as is supposed to work when selectionEnabled is false. If I modify it, including directly changing value to -1 when selectionEnabled=false, it seems to work. Of course, I'm fairly new to Flex, and

Re: attached code to disable certain items in spark DropDownList not working

2014-09-08 Thread modjklist
Hmm, rather than the last modification I offered below, I can add one line to get it working (see below). I'm wondering how the original code could work without it... override public function setSelectedIndex(value:int, dispatchChangeEvent:Boolean = false, changeCaret:Boolean = true):void

Re: scrollbars not working in Safari, but work fine in Chrome, FF

2014-08-11 Thread modjklist
Thanks Alex, here it is: https://issues.apache.org/jira/browse/FLEX-34461 - Original Message - From: Alex Harui aha...@adobe.com To: users, apache users@flex.apache.org Sent: Sunday, August 10, 2014 9:49:49 PM Subject: Re: scrollbars not working in Safari, but work fine in Chrome,

Re: scrollbars not working in Safari, but work fine in Chrome, FF

2014-08-10 Thread modjklist
I haven't heard back from anyone on this bug, and I'm not quite sure what to make of it. Any advice would be much appreciated. Even if it is just to confirm there's nothing one can do about it. - Original Message - From: modjkl...@comcast.net To: users, apache users@flex.apache.org

Re: scrollbars not working in Safari, but work fine in Chrome, FF

2014-08-08 Thread modjklist
Anyone running Flex in Safari 6 or newer should encounter this bug (e.g. the mouse wheel cannot be used to scroll, for ANY component). I found the correct bug link at Adobe, which they closed, believing it is an Apple bug. https://bugbase.adobe.com/index.cfm?event=bugid=3302758 This has

scrollbars not working in Safari, but work fine in Chrome, FF

2014-08-07 Thread modjklist
Using Safari 7.0.5 in Mac OSX 10.9.4, and scrollbar is not working on any component, nor on examples I can find online like the one located at the bottom of this webpage: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/HScrollBar.html Using FP 12.0.0.44

Re: scrollbars not working in Safari, but work fine in Chrome, FF

2014-08-07 Thread modjklist
I should clarify... the scroll bars work in all browsers when I click and drag the scroll thumb manually. However, in Safari, moving the mouse's thumb wheel does not produce scrolling, whereas in FF and Chrome it does. - Original Message - From: modjkl...@comcast.net To: users,

Re: scrollbars not working in Safari, but work fine in Chrome, FF

2014-08-07 Thread modjklist
I came across this thread that seems to indicate using a mouse wheel to scroll components is a known bug in Safari: https://forums.adobe.com/thread/1150756?start=0tstart=0 Can anyone confirm? The link at the bottom to track the bug is broken. Anyone know the status (or the correct link)?

Re: [ANNOUNCE] Apache Flex SDK 4.13.0 released

2014-08-01 Thread modjklist
Quick question. When the 4.13 release notes say: Differences from Apache Flex 4.12.1 include: AIR and Flash Player support -- - Support Flash Player 14.0 Does this mean if I develop in SDK 4.12.1 branch (for example), that I might see errors using Flash Player 14

Re: Force last SWF downloading

2014-05-05 Thread modjklist
This issue has also worried me (a lot). My approach: I also change the swf file name as you do. Then I manually update the Main.html file to refer to the new swf file name. The Main.html file name doesn't change. I place the files on the server. I change my .htaccess file as follows: #

Re: enterprise desktop web app: should it download or email a file to user?

2014-04-22 Thread modjklist
Thanks Sean. That's fine -- as long as they can originally download it to view it. - Original Message - From: Sean Thayne s...@skyseek.com To: users@flex.apache.org Sent: Tuesday, April 22, 2014 10:27:40 AM Subject: Re: enterprise desktop web app: should it download or email a file

Re: can Flex place focus on browser window already opened with navigateToURL()?

2014-04-07 Thread modjklist
Thanks Mark, that's what I'm doing. The issue is... // The first time file is downloaded... navigateToURL(new URLRequest(http://www.google.com/myPDFFile.pdf#nameddest=Chapter 1), mywindowname); // window opens and focus automatically goes to mywindowname window ... // then sometime in the

Re: can Flex place focus on browser window already opened with navigateToURL()?

2014-04-07 Thread modjklist
Anyone know the secret combination to place focus on a specific (e.g. 'pdfWindow') browser window using ExternalInterace.call(...)? I've tried experimenting with javascript and ExternalInterface, based on Mark and Alex's previous comments, using combinations of var

Re: access PDF doc from inside Flex app but not outside?

2014-04-06 Thread modjklist
Thanks so much Eugene, The front end user never sees the actual filename of my file or where on my server it is stored. Can you describe what the user does see in the client? That is, how does he/she open the downloaded PDF file? Does the user need to go to the Downloads folder to locate

Re: access PDF doc from inside Flex app but not outside?

2014-04-06 Thread modjklist
Thanks for the info Eugene and Maurice, My app isn't permitted to access a user's directory. Can I simply download to cache memory, then load it into browser from there? User can then save to his/her hard drive from the browser if needed. If so, would the command be: navigateToURL(new

Re: access PDF doc from inside Flex app but not outside?

2014-04-06 Thread modjklist
...@systar.com To: users@flex.apache.org Sent: Sunday, April 6, 2014 11:58:26 AM Subject: RE: access PDF doc from inside Flex app but not outside? Sorry Eugene, the question was for modjklist, as he was the one that said My app isn't permitted to access a user's directory. I wasn't sure whether he

Re: access PDF doc from inside Flex app but not outside?

2014-04-06 Thread modjklist
: Maurice Amsellem maurice.amsel...@systar.com To: users@flex.apache.org Sent: Sunday, April 6, 2014 11:58:26 AM Subject: RE: access PDF doc from inside Flex app but not outside? Sorry Eugene, the question was for modjklist, as he was the one that said My app isn't permitted to access a user's

can Flex place focus on browser window already opened with navigateToURL()?

2014-04-06 Thread modjklist
The first time navitageToURL() is executed, a browser window opens and obtains focus. The user views the help file, then goes back to the web app. Later, the user clicks to a link that points to a different named destination in the same PDF file. Nothing happens (actually, the PDF file moved

access PDF doc from inside Flex app but not outside?

2014-04-04 Thread modjklist
I have a desktop Flex app that users register and login. I need to provide these users access to technical documents in PDF format. However, I don't want to put these docs in my server's public_html directory because then any visitor can potentially view them. Is there any way for the Flex app

Re: mouse cursor changes from arrow to text selection intermittently

2014-03-11 Thread modjklist
Hi Alex, I'm not sure what to implement from your comments. Since I don't know when the problem occurs, I don't know when to attempt a solution. Is there any code I can include to prevent this from happening (rather than reverting back to arrow cursor after it happens)? If not, is there any

Re: mouse cursor changes from arrow to text selection intermittently

2014-03-11 Thread modjklist
Could you give an example? I don't know how what capture phase means. No idea how to implement this... - Original Message - From: Alex Harui aha...@adobe.com To: users@flex.apache.org Sent: Tuesday, March 11, 2014 9:16:57 AM Subject: Re: mouse cursor changes from arrow to text

Re: mouse cursor changes from arrow to text selection intermittently

2014-03-09 Thread modjklist
Spark - Original Message - From: Alex Harui aha...@adobe.com To: users@flex.apache.org Sent: Saturday, March 8, 2014 9:31:35 PM Subject: Re: mouse cursor changes from arrow to text selection intermittently Spark or mx TextInput? On 3/8/14 9:02 AM, modjkl...@comcast.net

mouse cursor changes from arrow to text selection intermittently

2014-03-08 Thread modjklist
While using my web/desktop application (in SDK 4.9, 4.10, 4.11, and 4.12 nightly, and FP 11.9 and 12), I seem to run into the scenario fairly often where, after using a text input box, the mouse cursor doesn't always revert back to the arrow cursor icon (it stays the text selection icon as I

Re: how to mxml restrict with binding AS3 variable?

2014-03-07 Thread modjklist
Thanks, that link shows how to restrict unicode characters. That's pretty useful too. - Original Message - From: Joseph Balderson n...@joeflash.ca To: users@flex.apache.org Sent: Thursday, March 6, 2014 9:42:04 PM Subject: Re: how to mxml restrict with binding AS3 variable? If

how to mxml restrict with binding AS3 variable?

2014-03-06 Thread modjklist
Everytime I try to modify my restrict characters I run into problems, so I don't think I'm understanding it well. My understanding was that I need to use a \ character before another character to escape it in AS3. However, since I'm using an AS3 variable in a bind expression for mxml, perhaps

Re: how to mxml restrict with binding AS3 variable?

2014-03-06 Thread modjklist
Spark TextInput, on web/desktop. - Original Message - From: Maurice Amsellem maurice.amsel...@systar.com To: users@flex.apache.org Sent: Thursday, March 6, 2014 8:11:58 AM Subject: RE: how to mxml restrict with binding AS3 variable? Are u using spark or mx TextInput ? is it on

Re: how to mxml restrict with binding AS3 variable?

2014-03-06 Thread modjklist
Setting textInput.restrict=... in creation complete didn't change anything. There must be some difference or interaction between escape characters written in AS3 working in mxml. I need a programmatic solution, as there are so many places I can't manually write mxml code for each restrict. Any

Re: how to mxml restrict with binding AS3 variable?

2014-03-06 Thread modjklist
I found by experimentation that the following works, public static const RESTRICT_STRING_FOR_CSV:String = 0-9 a-zA-Z\\'~!@#$%*()\\-_+=[]|;:.?,\\^{}; which uses ONE backslash to escape the ampersand and double-quote characters, but TWO backslashes to escape the minus sign (e.g. \\-) and

Re: how to mxml restrict with binding AS3 variable?

2014-03-06 Thread modjklist
Thanks Om, your blog explained it all. Hadn't seen it before, and thanks for writing it. - Original Message - From: OmPrakash Muppirala bigosma...@gmail.com To: users@flex.apache.org Sent: Thursday, March 6, 2014 10:05:15 AM Subject: Re: how to mxml restrict with binding AS3

Re: new Mac machine, running Flex application sticks at 57%

2014-02-12 Thread modjklist
Still haven't resolved this... let me simplify the discussion. Instead of upgrading the OS as originally posted for this thread, I'm now using a new macbook OSX 10.9.1 machine with fresh install of FB 4.7, and SDK 4.12 (nightly build). However, it produces the same results... When I run any

Re: new Mac machine, running Flex application sticks at 57%

2014-02-12 Thread modjklist
Thanks for the tip Mark, I've seen this posted on Google but never knew how to set it. Could you give a little more detail? Is this a setting in Flash Builder? Or is it a Mac OSX System Preferences setting? - Original Message - From: Mark Line markl...@gmail.com To:

Re: new Mac machine, running Flex application sticks at 57%

2014-02-12 Thread modjklist
Sorry Mark, I see you provided a path in /etc/hosts below. I'll try that. - Original Message - From: modjkl...@comcast.net To: users@flex.apache.org Sent: Wednesday, February 12, 2014 7:54:58 AM Subject: Re: new Mac machine, running Flex application sticks at 57% Thanks for the tip

Re: new Mac machine, running Flex application sticks at 57%

2014-02-12 Thread modjklist
My /etc/hosts file already includes 127.0.0.1 as localhost. Thanks for the tip though. Here's the full file: 127.0.0.1 localhost 255.255.255.255 broadcasthost ::1 localhost fe80::1%lo0 localhost - Original Message - From: modjkl...@comcast.net To: users@flex.apache.org Sent:

Re: new Mac machine, running Flex application sticks at 57%

2014-02-12 Thread modjklist
Thanks simon, if the /etc/hosts file has 127.0.0.1 set as localhost, perhaps this is the same solution? Nevertheless, I'll try anything... but I'm not sure how to do this (as the link states): Right click on the Flash/Flex application, select Debugger. Select the option “Other Machine” for

Re: new Mac machine, running Flex application sticks at 57%

2014-02-12 Thread modjklist
Thanks Mark, If I ping from a terminal, I see: myMacbook:etc username$ ping localhost PING localhost (127.0.0.1): 56 data bytes 64 bytes from 127.0.0.1: icmp_seq=0 time=0.044 ms 64 bytes from 127.0.0.1: icmp_seq=0 time=0.104 ms 64 bytes from 127.0.0.1: icmp_seq=0 time=0.067 ms 64 bytes

Re: new Mac machine, running Flex application sticks at 57%

2014-02-12 Thread modjklist
Hi Alex, I download the content debugger, then double-click it. It doesn't really do anything, other than open an icon in my Mac dock, which shows Flash Player Debugger is open/running. I'm guessing this is expected. Then I go to $ cd /Applications/Adobe Flash Builder

Re: new Mac machine, running Flex application sticks at 57%

2014-02-12 Thread modjklist
OK, I see the system doesn't respond to fdb, I need to type ./fdb instead... When I type r then load the swf file, the fdb response is: Waiting for Player to connect Player connected; session starting. Set breakpoints and then type 'continue' to resume the session. (fdb) q The program is

Re: new Mac machine, running Flex application sticks at 57%

2014-02-12 Thread modjklist
Some additional info regarding using the debugger (not content debugger), If I type netstat -an while Flash Builder is trying to connect to the running application, I can see port 7935 status is LISTEN. When I stop Flash Builder by clicking the red square icon to stop the debugger, this port

Re: new Mac machine, running Flex application sticks at 57%

2014-02-12 Thread modjklist
Thanks so much Jake, if you scroll down in the thread below, I found that pinging to localhost works. Mavericks somehow already had 127.0.0.1 set as local host, so I didn't change anything there. - Original Message - From: Jake Churchill reyna...@gmail.com To: users@flex.apache.org

Re: new Mac machine, running Flex application sticks at 57%

2014-02-12 Thread modjklist
It returns Ambiguous matching file names: SystemManager.as#5 _testNewMacbook_mx_managers_SystemManager.as#7 - Original Message - From: Alex Harui aha...@adobe.com To: users@flex.apache.org Sent: Wednesday, February 12, 2014 10:21:39 AM Subject: Re: new Mac machine, running Flex

Re: new Mac machine, running Flex application sticks at 57%

2014-02-12 Thread modjklist
I figured out the 57% sticking problem. The new Macbook machine with a fresh download of Firefox, then installing FB 4.7 resulted in an incorrect file path to the Firefox executable in FB. To solve, I opened FB 4.7 Preferences General Web Browser, and edited the Firefox entry's Location

new Macbook and HTTP Request Errors for certain browsers

2014-02-12 Thread modjklist
I have a new Macbook OSX 10.9.1 and fresh installs of FB 4.7, and the nightly 4.12 SDK. I export my fully functional application from my desktop Mac, and import into FB 4.8 in the Macbook. From the new Macbook, I export a release build and place on the internet. The app runs fine when I

Re: new Macbook and HTTP Request Errors for certain browsers

2014-02-12 Thread modjklist
Thanks Alex, you are correct -- now I can retrieve the flashlog.txt file. Here's what it is for Safari debug FP run using FB4.7 leading to HTTP Request Error: '072C8379-78DJ3-D2EC-A600-289916442EDE' producer set destination to 'jDestination'. '086B1D328F-D787-D581-D6F9-28AB96492F98'

Re: new Macbook and HTTP Request Errors for certain browsers

2014-02-12 Thread modjklist
Hi Alex, I exported the project from the old machine, and imported into the new one, so everything in it should be the same. The only thing that changed going to the new machine was changing the name of one folder in the path where the project was imported to the new machine. Otherwise, the

Re: upgraded Mac OSX to Mavericks and application won't run

2014-02-10 Thread modjklist
Thanks Tom, I tried Google Chrome just now, and my app works great in OSX 10.9.1. But there's something about Safari and Firefox that isn't right. I know the new Safari in OSX 10.9.1 sandboxes plug-ins now. But I've set the security for Flash Player to Run in unsafe mode which disables the

I closed Flash Builder 4.7, now it disappears when I try to start it...

2014-02-10 Thread modjklist
I closed Flash Builder 4.7 when it was working fine. Now when I try to open it, it initializes with the splash screen, then as soon as the application window opens, it disappears. I rebooted the Mac OSX 10.9.1 machine several times, but no change. I went to the Adobe website to download FB

upgraded Mac OSX to Mavericks and application won't run

2014-02-09 Thread modjklist
Hi experts, I'm using a nightly build from SDK 4.12 from a month ago, and FB 4.7. I just upgraded my Mac OSX from 10.6.8 (Snow Leopard) to 10.9.1 (Mavericks). Using the new OSX, when I rebuild the application then run it using Firefox with debug version of FB (I verified it is debug version

Does Flash Builder 4.7 Premium work with OSX 10.9 Mavericks?

2014-02-08 Thread modjklist
Adobe's webpage for Flash Builder 4.7 shows support up to Mac OSX 10.8. http://www.adobe.com/products/flash-builder/tech-specs.html Anyone have success using FB 4.7 Premium using Mac OSX 10.9 (e.g. Mavericks)? Any issues to watch out for?

Re: Apache Flex Book Topic Wish List

2014-01-23 Thread modjklist
This is great news. Would love to buy a copy of the book. My comments: 1. Favorite IDE=FlashBuilder 2. Integration with BlazeDS. This was a lifesaver for me. If I recall correctly, Sencha charges a lot of money to use BlazeDS if you're a single developer, even though it's open source. So

how about cookbook website for Apache Flex?

2014-01-23 Thread modjklist
All this talk about an Apache flex book got me thinking about what I would like to read. As a newcomer to Flex, I learned so much from this website http://blog.flexexamples.com , but it seems a lot of the examples are no longer live (what's up with that?), and many are outdated. I spend most

Re: how about cookbook website for Apache Flex?

2014-01-23 Thread modjklist
Thanks Joseph, I read them just now, and, you are my hero! Glad to see some new efforts underway. Would be nice if there was a path others could provide examples as well... all on one site (which is specifically designed for this; not the Apache Flex blog which covers many other things). I'm

setting page title dynamically using ExternalInterface.call()

2014-01-22 Thread modjklist
Anyone know how to dynamically set the page title? I've seen various posts using ExternalInterface, but haven't been able to get it working with variables (hardcoded strings work fine though). Here's my latest attempt: var titleStr:String=window.document.title='+userName+';

Re: setting page title dynamically using ExternalInterface.call()

2014-01-22 Thread modjklist
Thanks Lee, You are correct! The following works: var titleStr:String=window.document.title='+userName+'; ExternalInterface.call(eval( + titleStr + )); - Original Message - From: Lee Burrows subscripti...@leeburrows.com To: users@flex.apache.org Sent: Wednesday, January 22, 2014

how to force redraw of first button custom skin in spark button bar?

2014-01-04 Thread modjklist
Hi, My app uses spark ButtonBar with a custom skin (for first, middle, and last buttons), and I change the contents of the button bar a lot depending on various user selections. The icon in the button bar updates when the dataProvider changes, relying on a doPhasedInstantiationCallback()

Re: how to force redraw of first button custom skin in spark button bar?

2014-01-04 Thread modjklist
Nevermind, it appears to have been something else in my code (changing the tooltip text for the button resolves this issue). - Original Message - From: modjkl...@comcast.net To: apache flex users users@flex.apache.org Sent: Saturday, January 4, 2014 8:11:25 AM Subject: how to force

why generic spark checkbox symbolColor gives Code Navigation Error: Source could not be found?

2013-12-27 Thread modjklist
I'm trying to run this simple test program (to debug changing the symbolColor in my application): ?xml version=1.0 encoding=utf-8? !-- http://blog.flexexamples.com/2009/03/30/setting-the-base-color-on-an-fxcheckbox-control-in-flex-gumbo/ -- s:Application xmlns:fx=

Re: error overriding mx_internal method setSelectedIndex()

2013-12-06 Thread modjklist
Thanks Alex, what does that mean? (how to change the code?) I've never used mx_internal before... In doing more research I found this link: http://winxalex.blogspot.com/2012/06/override-mxinternal-function-error-1004.html which agrees with last entry in this link:

Re: error overriding mx_internal method setSelectedIndex()

2013-12-06 Thread modjklist
Thanks so much Mark, for that great explanation. It really helps! - Original Message - From: Kessler CTR Mark J mark.kessler@usmc.mil To: users@flex.apache.org Sent: Friday, December 6, 2013 9:24:36 AM Subject: RE: error overriding mx_internal method setSelectedIndex() It was

main app blur disappears when using Alert.show() from modal TitleWindow

2013-12-04 Thread modjklist
Opening a modal Titlewindow blurs the main application slightly. If you then issue an Alert.show(), when the Alert.show() popup closes, it takes away the blur in the main application. Since anyone using Titlewindow and Alert.show() runs into this, I wonder if anyone has found a solution to

  1   2   >