Re: [ANNOUNCE] Apache Flex 4.15.0 released

2016-01-12 Thread Clint M
It seems the installer at http://flex.apache.org/installer.html is still pointing to 4.14.1 On Tue, Jan 12, 2016 at 3:00 AM, Justin Mclean wrote: > Hi, > > > I did run into a hiccup when running the installer > > Try uninstalling the installer and reinstalling the latest version. > > It may be t

Re: http failed

2016-02-18 Thread Clint M
Could be quite a number of things... for example(s) 1. bad routing 2. bad wifi router 3. lost the connection for a few seconds because someone turns on a microwave that interferes with the wifi signal <-- this is a real thing ( https://support.apple.com/en-us/HT201542) On Thu, Feb 18, 2016 at 5:4

Re: http failed

2016-02-18 Thread Clint M
You might get this error if the remote object is timing out... possibly because the server is under too much load. It seems like someone is having a similar issue with a workaround by setting the connectTimeout and requestTimeout properties on the amf channel. Check the last post on this thread: ht

Re: Flex on Win10

2016-02-19 Thread Clint M
2) tried to use trace() inside the app. created mm.cfg, put in the root. Running Flash player 20 in Chrome with Debug. It still did not create the log or even the Logs directory where it supposed to go: c:\users\myid\AppData\Roaming\Macromedia\Flash Player\... Are you actually running the debug p

Re: Flex on Win10

2016-02-19 Thread Clint M
Looks like the flashlog.txt file location has changed as per: https://forums.adobe.com/thread/1491485 Win7: %USERNAME%/AppData/Local/Google/Chrome/User Data/Default/Pepper Data/Shockwave Flash/System WinXP: %USERNAME%/Local Settings/Application Data/Google/Chrome SxS/User Data/Default/Pepper Dat

Re: Flex on Win10

2016-02-19 Thread Clint M
You'll see this error if flash builder is unable to edit the flash player trust file on your local machine. Run flash builder as admin and reimport the project. Or as a workaround you can edit your global security config settings and trust the directory that the swf lives in. Or you can just bli

Re: Issue with AMF on iOs

2016-02-25 Thread Clint M
Maybe this? http://htmlspank.tumblr.com/post/130674234457/ioerror-2032-ios9-adobe-air-and-ats On Thu, Feb 25, 2016 at 8:16 AM, After24 wrote: > Hello, > > > > While developping a mobile application using flex 4.15 with the latest AIR > buid I get the following error when the application calls a

Re: Issue with AMF on iOs

2016-02-25 Thread Clint M
Another thread on the subject… https://forums.adobe.com/thread/1970746 On Thu, Feb 25, 2016 at 10:03 AM, Clint M wrote: > Maybe this? > > http://htmlspank.tumblr.com/post/130674234457/ioerror-2032-ios9-adobe-air-and-ats > > On Thu, Feb 25, 2016 at 8:16 AM, After24 wr

Re: Error #2006: The supplied index is out of bounds

2016-02-27 Thread Clint M
Ya I encountered this as well a few weeks ago. There's a bug in ScrollableStageText that blows out the layout algorithm. It's trying to set the viewPort Rectangle of a stageText to a value that's greater than 8192px wide. I don't think there's a bug filed for this so please file one if you have t

Re: Error #2006: The supplied index is out of bounds

2016-03-01 Thread Clint M
Well the key is… If you think about this in the _global_ (stage) coordinate space… anything outside the bounds of 0,0,stage.width,stage,height won't be viewable to anyone so it should be safe in all cases to just position the StageText outside the viewable stage area and leave it there until some p

Re: Error #2006: The supplied index is out of bounds

2016-03-02 Thread Clint M
the stagetext is > > outside the allowed bounds, we can always move it without affecting the > > text. When the width or height is outside the bounds (which also causes > > the ViewPort rectangle to go outside the allowed bounds) we will have > this > > issue no matter what. &g

Re: Flex 3x vs 4x security

2016-03-08 Thread Clint M
There's a pretty wonderful migration path that should help you decide. You can compile a Flex 3.6 Application with any Flex 4.x SDK and everything should work the same as it did before. Then when you have time you can migrate parts of the application to take advantage of the Flex 4.x stuff over t

Re: Progress Bar in mobile app spark image

2016-03-10 Thread Clint M
Looks like it's there it's just not displayed by default. http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/skins/mobile/ImageSkin.html#loadingIndicator Displayed if the "enableLoadingState" style is true On Thu, Mar 10, 2016 at 1:05 AM, chris_d_k wrote: > Hi Leokan23, >

Re: FlexPMD Build Error

2016-03-10 Thread Clint M
Just uploaded flexpmd to github. It's what I pulled from opensource.adobe.com 5 years ago. (It's probably still the latest code.) I also uploaded the jars that that I was able to build at that time. I still use the jars today on projects. https://github.com/cmodien/flexpmd/tree/master/snapshots/1.3

Re: Do we have the latest Flex PMD? (was Re: FlexPMD Build Error)

2016-03-11 Thread Clint M
I'm sure the version that Alex pulled and donated is >= the version that I uploaded. I wasn't aware that FlexPMD had been donated and lives in the flex-utilities repo. On the original thread the person was unable to build from source. The reason that I uploaded it is because it also contained th

Re: FlexPMD Build Error

2016-03-11 Thread Clint M
Suresh... I'm trying to build from source as well. Are you trying to build the source from this source? https://github.com/apache/flex-utilities/tree/develop/FlexPMD On Tue, Mar 8, 2016 at 4:40 AM, suresh babu k s wrote: > FlexPMD is generating errors when it is being build from source,looks l

Re: Flatspark - CheckBox - Property check not found on flatSpark.skins.CheckBoxSkin

2016-03-19 Thread Clint M
Is flatspark compatible with the mobile controls? It sounds like it isn't from the error. On Wed, Mar 16, 2016 at 5:57 AM, Sugan Naicker wrote: > Hi, > > Me again :-) > > Getting the following error when I run mobile app of device : > "ReferenceError: Error #1069: Property check not found on >

Re: Flex mobile Upload to php server problem

2016-03-21 Thread Clint M
Maybe this? You should add more info to the "Content-Type" header: uploadRequest.contentType = "multipart/form-data; boundary=<>"; http://stackoverflow.com/questions/9559948/post-file-upload-using-urlrequest http://www.marstonstudio.com/2007/10/19/how-to-take-a-snapshot-of-a-flash-movie-and-autom

Re: Flex mobile Upload to php server problem

2016-03-21 Thread Clint M
Or this as a maybe a more thorough solution: https://github.com/jonasmonnier/Multipart.as On Mon, Mar 21, 2016 at 10:21 AM, leokan23 wrote: > Ok so i did a lot of trials with this and it looks like that the URLRequest > sometimes fails without a reason. > > my testing code is: > > protected func

Re: PayPal integration - Error #2096

2016-04-01 Thread Clint M
Maybe this: http://stackoverflow.com/a/539173/3384609 Gist: You can fix this by setting (in the above example) encoder.insertNewLines = false; The default setting is true. On Fri, Apr 1, 2016 at 10:28 AM, leokan23 wrote: > Thanks Jude, > > i have added the question to stackoverflow too > > payp

Re: What is this window?

2016-04-19 Thread Clint M
PopUpManager.removePopUp(systemManager.popUpChildren.getChildAt(0)) would probably do it. Better to figure out why/how it's popping up in the first place and not do that. Search for PopUpManager.addPopUp/createPopUp in your code. On Tue, Apr 19, 2016 at 6:38 AM, rodol...@essencialcode.com.br < r

Re: Sending Emails from Flex Mobile App in Android

2016-05-13 Thread Clint M
Maybe this would work? https://github.com/pkoscierzynski/NativeMailExtension On Fri, May 13, 2016 at 9:09 AM, mihau wrote: > Is there any chance that flex will provide some solutions to sends emails > with attachments from app? > > > > -- > View this message in context: > http://apache-flex-user

Re: IDE Dilemma

2016-07-12 Thread Clint M
I'm running OS X El Capitan (10.11.5) and running Flash Builder 4.7. I haven't noticed any problems. What do you have the Xmx set to? It's in /Applications/Adobe Flash Builder 4.7/Adobe Flash Builder 4.7.app/Contents/MacOS/Adobe Flash Builder 4.7.ini On Fri, Jul 8, 2016 at 2:40 PM, pwave wro

Re: IDE Dilemma

2016-07-12 Thread Clint M
Heh... that should definitely be enough. With Flash Builder running... what do you get when you enter this command into a terminal: jps -lvm and what do you get when you run this command: java -version On Tue, Jul 12, 2016 at 7:14 AM, pwave wrote: > Thanks for responding - here's the whole file.

Re: IDE Dilemma

2016-07-12 Thread Clint M
ication > -Dfile.encoding=UTF-8 > > > java -version > java version "1.8.0_51" > Java(TM) SE Runtime Environment (build 1.8.0_51-b16) > Java HotSpot(TM) 64-Bit Server VM (build 25.51-b03, mixed mode) > > > On Jul 12, 2016, at 10:53 AM, Clint M [via Apache Flex Use

Re: IDE Dilemma

2016-07-12 Thread Clint M
d be the issue > because IntelliJ seems to be fine. > > > On Jul 12, 2016, at 3:59 PM, Clint M wrote: > > > > tried using Java 7 or 6? > > > > On Tue, Jul 12, 2016 at 10:47 AM, pwave wrote: > > > >> Yes, that was the first thing I cranked up. I al

Re: IDE Dilemma

2016-07-12 Thread Clint M
Tech specs say 1.6 ... maybe try that to be sure http://www.adobe.com/products/flash-builder/tech-specs.html On Tue, Jul 12, 2016 at 1:11 PM, Clint M wrote: > using 1.7... i just tried 1.8... seemed to work ok for me on the current > project > > I do remember 1.8 not working for m

Re: Problems with AIR 22 and an ANE in a bigger project

2016-07-30 Thread Clint M
On iOS: https://developer.apple.com/library/ios/documentation/IDEs/Conceptual/AppDistributionGuide/AnalyzingCrashReports/AnalyzingCrashReports.html On Android: you can run adb logcat in a cmd prompt or terminal window while the device is connected to your machine and usb debugging is enabled On Sa

Re: Problems with AIR 22 and an ANE in a bigger project

2016-07-30 Thread Clint M
Google every message prefixed with E/ (i.e. all the errors) (e.g. E/JavaBinder﹕ !!! FAILED BINDER TRANSACTION !!!) http://stackoverflow.com/questions/12459719/why-i-am-getting-error-channel-is-unrecoverably-broken-and-will-be-disposed Analyze your code to see if you can figure out what went wrong.

Re: Mapping second event type to Command not working

2016-08-01 Thread Clint M
Should work if you're using the same Event Class. (ChangePasswordEvent) Is ChangePasswordEvent.type1 the same as ChangePasswordEvent.type2 ? On Mon, Aug 1, 2016 at 8:15 AM, Oleg Konovalov wrote: > Hi, > > I am doing enhancements to existing Robotlegs2 web app. > So my popup dispatches event of t

Re: ios Provisioning Profile

2016-08-02 Thread Clint M
Found this at the bottom of a page for XCode 8. https://developer.apple.com/xcode/ Developing and running your app on your Apple device is as easy as entering your Apple ID into Xcode preferences. Apple Developer Program membership is not required. On Tue, Aug 2, 2016 at 6:40 AM, Tom Chiverton w

Re: OR Mapper for Flex?

2016-08-03 Thread Clint M
Don't think so… Flex wasn't designed to talk to a db directly. How are you doing that? Is this an AIR app? Usually there's some kind of middleware layer that delivers amf || xml || json using node, ruby, python, php, java, .net to the Flex side. I've seen implementations (AIR based not Flex bas

Re: OR Mapper for Flex?

2016-08-03 Thread Clint M
Heh… sorry… still working on my first cup of coffee. I see the mobile app part. Maybe this. http://stackoverflow.com/questions/3299889/best-orm-for-adobe-air-flex On Wed, Aug 3, 2016 at 6:28 AM, Christofer Dutz wrote: > Hi, > > > I am currently working on a mobile application that should be ab

Re: LocalConnection problem in IE

2016-08-03 Thread Clint M
Two things... 1. You're failing to understand how local connection works. You can't have two flash player's connect to the same named connection. 2. It's working (or rather not working) in Chrome because of this: https://helpx.adobe.com/flash-player/kb/unsandbox-localconnection-chrome.html On Wed

Re: LocalConnection problem in IE

2016-08-03 Thread Clint M
Or it apparently doesn't work at all now in Chrome? https://forums.adobe.com/thread/1045650?start=0&tstart=0 not sure why the helpx link is dead On Wed, Aug 3, 2016 at 9:40 AM, Clint M wrote: > Two things... > > 1. You're failing to understand how local connection work

Re: LocalConnection problem in IE

2016-08-03 Thread Clint M
Dug up the helpx link on the wayback. (from sep 8th of 2015) https://web.archive.org/web/20150908073329/https://helpx.adobe.com/flash-player/kb/unsandbox-localconnection-chrome.html On Wed, Aug 3, 2016 at 9:44 AM, Clint M wrote: > Or it apparently doesn't work at all now in Chrome?

Re: LocalConnection problem in IE

2016-08-03 Thread Clint M
ter, > but they can be running in different applications — for example, a file > running in a browser and a SWF file running in Adobe AIR. > > On Wed, Aug 3, 2016 at 11:40 AM Clint M wrote: > > > Two things... > > > > 1. You're failing to understand how l

Re: LocalConnection problem in IE

2016-08-03 Thread Clint M
gt; > On Wed, Aug 3, 2016 at 11:55 AM Clint M wrote: > > > Maybe try the tutorial here: > > > > > http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118666ade46-7c7e.html > > And the docs here: > > > > > http://help.adobe.com/en_US/Fl

Re: LocalConnection problem in IE

2016-08-03 Thread Clint M
connection-chrome.html > > On Wed, Aug 3, 2016 at 12:22 PM Clint M wrote: > > > didn't say that or mean that > > > > in one swf you call connect… while in the other swf you call send > > you don't call connect in both swfs > > > > > >

Re: Best Cross Platform Mobile App

2016-08-12 Thread Clint M
I just completed an evaluation of mobile technologies for a company that asked me the same question. The conclusion was https://facebook.github.io/react-native/ On Thu, Aug 11, 2016 at 6:13 PM, bilbosax wrote: > So I showed the app that you all have been helping me to optimize to many > people

Re: Best Cross Platform Mobile App

2016-08-12 Thread Clint M
yep… https://blogs.windows.com/buildingapps/2016/04/13/react-native-on-the-universal-windows-platform/ On Fri, Aug 12, 2016 at 10:46 AM, OmPrakash Muppirala wrote: > On Aug 12, 2016 10:36 AM, "Clint M" wrote: > > > > I just completed an evaluation of mobile techno

Re: Best Cross Platform Mobile App

2016-08-12 Thread Clint M
Here's a part of the document I was working on: https://docs.google.com/document/d/1qKwAXk0uCUdRbqfcQdUBwJjC3KGp7z6oP0BFkYQ5xOA/edit?usp=sharing It's incomplete… management chose react native after the initial draft. On Fri, Aug 12, 2016 at 11:27 AM, OK wrote: > Clint M wro

Re: Flex ASCII

2016-08-15 Thread Clint M
Does String.fromCharCode work? http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/String.html#fromCharCode() On Mon, Aug 15, 2016 at 10:53 AM, Matthew Weir < mattcomm...@yahoo.com.invalid> wrote: > Hi, > I'm just wondering if any of you have some insight into how the mx:Label > in

Re: Flex Mobile App To Desktop App

2016-08-19 Thread Clint M
try setting it to NaN On Fri, Aug 19, 2016 at 5:04 AM, Deepak MS wrote: > Yeah, tried that too. Still same behaviour : ( > > stage.scaleMode = StageScaleMode.NO_SCALE; > > stage.align = StageAlign.TOP_LEFT; > > *var* deviceSize:Rectangle = *new* Rectangle(0, 0, stage.fullScreenWidth, > stage.ful

Re: Flex Mobile App To Desktop App

2016-08-19 Thread Clint M
applicationDPI="{NaN}" On Fri, Aug 19, 2016 at 5:59 AM, Deepak MS wrote: > Yeah, I tried that. > > *protected* *function* addedToStageHandler(event:Event):*void* > > { > > stage.align = StageAlign.TOP_LEFT; > > stage.scaleMode = StageScaleMode.NO_SCALE; > > } > > > *protected* *function* > windo

Re: Flex mobile: prevent re-creating view when doing navigator.popView()

2016-08-25 Thread Clint M
destructionPolicy=”none” http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/View.html#destructionPolicy On Thu, Aug 25, 2016 at 6:03 AM, Christofer Dutz wrote: > Hi, > > > I am working on a little mobile application. Currently I have one view > which is sort of

Re: Flex mobile: prevent re-creating view when doing navigator.popView()

2016-08-25 Thread Clint M
er… i guess destructionPolicy="never" On Thu, Aug 25, 2016 at 6:42 AM, Clint M wrote: > destructionPolicy=”none” > > http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/ > components/View.html#destructionPolicy > > On Thu, Aug 25, 2016

Re: Flex mobile: prevent re-creating view when doing navigator.popView()

2016-08-25 Thread Clint M
tofer Dutz wrote: > Hi Clint, > > > thanks for that tip. > > > That sounds as if the view would remain in memory, even if it is "popped" > from the stack. I would not be expecting that. > > > But I'll give that a try. > > > Chris > > __

Re: Hot to get smooth transitions in a flex mobile app

2016-08-27 Thread Clint M
If you run Adobe Scout and set -advanced-telemetry in your compiler options you can see exactly what is dragging down the frame rate. My guess is that you're processing the data response (populating classes with data) while the animation is happening for longer than the framerate allows. Flash is

Re: Hot to get smooth transitions in a flex mobile app

2016-08-27 Thread Clint M
Here's an example that Alex did to get you started with what I mean: http://blogs.adobe.com/aharui/2008/01/threads_in_actionscript_3.html On Sat, Aug 27, 2016 at 2:56 AM, chris_d_k wrote: > Hi, > > our flex mobile app is using ViewNavigatorApplication and pure mvc. When we > change the view in m

Re: Flex mobile app - Read other native application storage data

2016-09-26 Thread Clint M
yes... if you know the file system path to the saved data for the other applications you can access it. On Sun, Sep 25, 2016 at 11:43 PM, Prabhu Moorthy < prabu.moor...@symphonysummit.com> wrote: > Hi, > > Is there anyway to read other native applications saved data(like Username, > Email id) fro

Re: SDK Installer not running

2016-10-04 Thread Clint M
I actually experienced this as well on my Mac. I manually installed Adobe AIR to work around it. https://get.adobe.com/air/ On Tue, Oct 4, 2016 at 9:22 AM, Alex Harui wrote: > Maybe this will help? https://forums.adobe.com/thread/1209430 > > -Alex > > On 10/4/16, 8:36 AM, "danishajaib" wrote:

Re: SDK Installer not running

2016-10-04 Thread Clint M
try this url https://get.adobe.com/air/download/?installer=Adobe_AIR_23.0_for_Win32&standalone=1 On Tue, Oct 4, 2016 at 11:47 AM, danishajaib wrote: > I tried to download Adobe AIR but the download button on > http://www.adobe.com/go/getair always take me to Adobe's homepage. > > > > -- > View t

Re: SDK Installer not running

2016-10-05 Thread Clint M
I can produce that error if I uninstall Adobe AIR. (i.e. if Adobe AIR is not installed) Maybe try uninstalling Adobe AIR via the command line: AdobeAIRInstaller.exe -uninstall You should see output like: C:\Users\clint\Downloads>Uninstalling Adobe AIR (all versions) done Then try reinstalling A

Re: Get mouse coordinates on high speed

2016-10-05 Thread Clint M
I think the simple answer to what you're asking is no. Try posting the code you're using to draw the curve though. Someone might spot something to help speed it up. On Wed, Oct 5, 2016 at 9:57 AM, Maxim Solodovnik wrote: > Hello, > > Recently I got request to capture hand drawing from pen devi

Re: Error handshaking for timestamp during AIR packaging

2016-10-05 Thread Clint M
Are you running Charles (or some other web proxy) with ssl proxying enabled that subs it's ssl cert for a valid one? As a workaround you can specify -tsa none as a compiler arg. http://help.adobe.com/en_US/air/build/WS5b3ccc516d4fbf351e63e3d118666ade46-7f72.html On Wed, Oct 5, 2016 at 10:57 AM,

Re: Error handshaking for timestamp during AIR packaging

2016-10-05 Thread Clint M
Builder interface. Is there any setting I might > be able to modify in Flash Builder UI to accomplish the same thing for > specifying a different timestamp URI? > > On Wed, Oct 5, 2016 at 11:14 AM, Clint M [via Apache Flex Users] < > ml-node+s246n13744...@n4.nabble.com> wr

Re: Error handshaking for timestamp during AIR packaging

2016-10-05 Thread Clint M
gt; > On Wed, Oct 5, 2016 at 11:42 AM, Clint M [via Apache Flex Users] < > ml-node+s246n13746...@n4.nabble.com> wrote: > > > Click the Customize Launch button in the export release dialog. > > > > You can click Add Parameter there to add the tsa param there. &g

Re: copylocale replacement

2016-10-10 Thread Clint M
still the same in $FLEX_HOME/bin/copylocale On Mon, Oct 10, 2016 at 7:58 AM, Philip Keiter wrote: > Hello, > > In the Adobe Flex SDK, to create a locale's "framework resources", we used > the copylocale utility included with the SDK. What is the correct > equivalent for adding framework resource

Re: disableAutoUpdate

2016-10-18 Thread Clint M
ya... with enableAutoUpdate() On Tue, Oct 18, 2016 at 8:36 AM, mark goldin wrote: > when I sort on some columns I > do ArrayCollection(gird.dataProvider).disableAutoUpdate();. Should I at > some point enable it back? > > Thanks >

Re: disableAutoUpdate

2016-10-18 Thread Clint M
sort is done and I can enable it? > > On Tue, Oct 18, 2016 at 10:42 AM Clint M wrote: > > > ya... with enableAutoUpdate() > > > > On Tue, Oct 18, 2016 at 8:36 AM, mark goldin > > wrote: > > > > > when I sort on some columns I > > > do

Re: Can't get custom component to size down properly

2016-10-18 Thread Clint M
Does this work for you? http://ns.adobe.com/mxml/2009"; xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" width="100%" height="100%"> On Tue, Oct 18, 2016 at 12:31 PM, kamcknig wrote: > I think it has something to do with the fact that I'm setting the >

Re: Updating data for List refreshes entire List and scrolls to the top

2016-10-24 Thread Clint M
Inline below On Mon, Oct 24, 2016 at 11:53 AM, Kyle McKnight wrote: > Hey everyone! > > I have a List that has enough items that one must scroll down to see them > all. > > When clicking an item, it updates the data for that ItemRenderer with a > quantity value. > How are you doing that. > >

Re: Adobe flex ios application ipa too large when deployed

2016-10-26 Thread Clint M
>> 106Mb which is refused by Apple for publication I'm not sure that's correct. http://stackoverflow.com/questions/4753100/max-size-of-an-ios-application > > -- > View this message in context: http://apache-flex-users. > 246.n4.nabble.com/Adobe-flex-ios-application-ipa-too- > large-when-depl

Re: Do ItemRenderer's get reused across different components?

2016-10-26 Thread Clint M
was able to reproduce... pretty gnarly... assigning a new XMLList with the same content multiple times yields different tilelayout arrangements. On Wed, Oct 26, 2016 at 4:33 AM, kamcknig wrote: > Test project attached. If you just click each of the buttons multiple > times, > as in "set 1" two o

Re: Application starts but then shows black screen

2016-11-01 Thread Clint M
Some ideas: - compile the app with -verbose-stacktraces=true - get them to install the debug player… it'll show a dialog when an error occurs - or you could trap the uncaughtErrorEvent and display a message ( http://stackoverflow.com/a/6597046/3384609) Sometimes a null pointer in flex's validatio

Re: Application starts but then shows black screen

2016-11-01 Thread Clint M
(imageArrayIndex < imagesToLoad.length) > { > PreloadImages(); > } > } > So, if a specific system cannot load images I am going to have a lot of > alerts because I am loading about 30 files. > What would you suggest? And why it mostly works? Definitely none of > computers r

Re: Application starts but then shows black screen

2016-11-01 Thread Clint M
Index < imagesToLoad.length) > { > PreloadImages(); > } > } > So, if a specific system cannot load images I am going to have a lot of > alerts because I am loading about 30 files. > What would you suggest? And why it mostly works? Definitely none of > computers runnin

Re: Help to steer me (please) on a Flash Pro 6 to Flex SDK compiler path

2016-11-01 Thread Clint M
Is/are the root app/s timeline based or does it have a root document class? (movieclip or sprite based) The mxmlc / compc compilers can only compile .as files not fla files. If there's a document class you'll be set. You can just point mxmlc at the document class + src + lib folders and it'll com

Re: Help to steer me (please) on a Flash Pro 6 to Flex SDK compiler path

2016-11-01 Thread Clint M
On Tue, Nov 1, 2016 at 3:44 PM, wrote: > Thank you @cmodien. > > Everything is class-based, starting from the document class of Main. > > Not one line of code in the App's timeline; > though there is some code within the swc-based UI components, > which *do* come from a .fla file. > > > > > The m

Re: Is AIR 24 Flex SDK available yet? need to test show stopper from Adobe

2016-11-02 Thread Clint M
Technically… there is no such thing as a AIR 24 Flex SDK. You can unzip/overlay the air 24 sdk into/onto any existing apache flex sdk to update the air sdk to 24. Here's some instructions... https://helpx.adobe.com/x-productkb/multi/how-overlay-air-sdk-flex-sdk.html On Wed, Nov 2, 2016 at 9:20

Re: Padding above a text in Mobile Air App

2016-11-03 Thread Clint M
It is most likely this: "The font size of text (not the text itself) is scaled to match the resolution." http://help.adobe.com/en_US/flex/mobileapps/WS19f279b149e7481c682e5a9412cf5976c17-8000.html On Thu, Nov 3, 2016 at 7:55 AM, chris_d_k wrote: > I have the case that a label has on one device a

Re: Padding above a text in Mobile Air App

2016-11-03 Thread Clint M
There are a lot of factors (more so on mobile devices because of dpi) that could affect the positioning of the label. If you can post a small example demonstrating the bug... that would help. On Thu, Nov 3, 2016 at 9:22 AM, chris_d_k wrote: > Sorry... I don't get what you want to say... > > The

Re: Download Flash Builder 4.7 trial

2016-11-03 Thread Clint M
Uninstall it first… should let you download it again. On Thu, Nov 3, 2016 at 9:59 AM, mark goldin wrote: > I am trying to download it but because I have it installed Creative Cloud > is not allowing me to download it again. > > Any idea? > > Thanks >

Re: Download Flash Builder 4.7 trial

2016-11-03 Thread Clint M
6 at 1:10 PM Clint M wrote: > > > Uninstall it first… should let you download it again. > > > > On Thu, Nov 3, 2016 at 9:59 AM, mark goldin > wrote: > > > > > I am trying to download it but because I have it installed Creative > Cloud > > >

Re: Less athen in MXML

2016-11-04 Thread Clint M
< On Fri, Nov 4, 2016 at 9:08 AM, scott matheson wrote: > hi >How to do write Less than in MXML i have a head black, to near the > weekend almost beer time :) > > > >

Re: Scout - What does this mean?

2016-11-15 Thread Clint M
Inline below On Tue, Nov 15, 2016 at 12:43 PM, bilbosax wrote: > The big question is do Exceptions take up time? > Yes. > > I am finally able to get some good data into Scout to profile my mobile > application, and I am quite confused. The compiler finds no errors, > debugging throws no erro

Re: Scout - What does this mean?

2016-11-18 Thread Clint M
If you can create a small app to reproduce the problem I'm sure someone here could spot the problem. On Fri, Nov 18, 2016 at 11:59 AM, bilbosax wrote: > I believe that everything was off by a factor of 2. What would be awesome > is > if regardless of screen resolution or DPI, I could always assu

Re: Prevent an item to be highlighted in TileList

2016-11-19 Thread Clint M
maybe this https://forums.adobe.com/thread/26219 [image: Gregory Lafrance] *Correct Answer*by Gregory Lafrance on Jan 12, 2009 9:50 AM MXML AS dg.setStyle("selectionColor", dg.getStyle("backgro

Re: Prevent an item to be highlighted in TileList

2016-11-19 Thread Clint M
or this http://www.m2websites.com/disable-list-item-highlighting-in-flex-3/ On Sat, Nov 19, 2016 at 12:35 PM, Clint M wrote: > maybe this https://forums.adobe.com/thread/26219 > > [image: Gregory Lafrance] > <https://forums.adobe.com/people/Greg%20Lafrance> > *Corr

Re: Trouble shooting Resources

2016-11-30 Thread Clint M
Does any text get assigned to the label property? On Tue, Nov 29, 2016 at 1:10 PM, mark goldin wrote: > I am using the following code to have a text for a label: > label="{resourceManager.getString('module_Alarms','CaseLibraryLabel')}" > > At the top of my mxml file I have this: > > [ResourceBu

Re: Trouble shooting Resources

2016-11-30 Thread Clint M
what get's assigned On Wed, Nov 30, 2016 at 9:36 AM, mark goldin wrote: > Yes, it does. > > On Wed, Nov 30, 2016 at 10:33 AM Clint M wrote: > > > Does any text get assigned to the label property? > > > > On Tue, Nov 29, 2016 at 1:10 PM, mark goldin

Re: Getting the exact screen density on AIR mobile

2016-12-08 Thread Clint M
Here's one for Android. Shouldn't be too difficult to adapt for iOS and/or Desktop. https://github.com/SamYStudiO/flair-physical-density-ane On Thu, Dec 8, 2016 at 2:05 AM, After24 wrote: > Hello, > > I'm working on a project for which I need to get the exact screen density > of > the device b

Re: AIR build error 105

2016-12-12 Thread Clint M
Quotes seem weird… try without maybe: assets/icon16x16.png assets/icon32x32.png assets/icon48x48.png assets/icon128x128.png On Mon, Dec 12, 2016 at 10:34 AM, Trevor Holman wrote: > Trying to do a simple build and my icons seem to be causing an issue. It > is telling me they c

Re: RPC on AS3 project

2017-01-03 Thread Clint M
Hmh… didn't know this was possible… what is the resulting size of the swf? (i.e. how much of the Flex framework did it suck in?) Should dump and post the link report with the compiler option -link-report=linkReport.xml Maybe just post the flex related stuff if you don't want us to see your class

Re: Chinese characters in PDF

2017-01-09 Thread Clint M
maybe this? http://stackoverflow.com/questions/17528896/alivepdf-unicode-character On Mon, Jan 9, 2017 at 8:53 AM, mark goldin wrote: > I have got to fix a project that use AlivePDF to export some data into a > PDF file. Works fine with English data but shows ??? for Chinese > characters. Can so

Re: Chinese characters in PDF

2017-01-11 Thread Clint M
they are talking about UnicodePDF() and isUnicode. Noe > is available for new PDF(). > > On Mon, Jan 9, 2017 at 11:09 AM Clint M wrote: > > > maybe this? > > http://stackoverflow.com/questions/17528896/alivepdf-unicode-character > > > > On Mon, Jan 9, 2017 at 8:53 AM

Re: Chinese characters in PDF

2017-01-11 Thread Clint M
up with something that > works. > > On Wed, Jan 11, 2017 at 11:35 AM Clint M wrote: > > > Wouldn't you need unicode to display Chinese characters? > > > > In the link I sent there are other links that talk specifically about > > Chinese characters at (

Re: SDK Installer certificate problem

2017-01-12 Thread Clint M
You might also want to uninstall an older version of the Apache Flex SDK installer. (If it's already installed.) On Thu, Jan 12, 2017 at 2:05 AM, Joseph Balderson wrote: > When I run the 4.15 installer (apache-flex-sdk-installer-3.2.0-bin.exe), > I get a > message which says > > "Sorry, an error

Re: log air crashes on android

2017-01-16 Thread Clint M
You can use: adb logcat https://developer.android.com/studio/command-line/logcat.html On Fri, Jan 13, 2017 at 10:13 PM, Frank Dahmen wrote: > Hi, > is there a way to log kind of a "crash-report" (stack trace) in air mobile > on android when running in live/release mode (not connected via usb etc

Re: AIR app problem on Google Play

2017-01-17 Thread Clint M
I think you need at least AIR 21. http://forum.starling-framework.org/topic/open-ssl-version-in-air On Tue, Jan 17, 2017 at 4:23 AM, Jairo wrote: > I´m trying to publish my app on Google Play but got the error above. > > "OpenSSL > The vulnerabilities were addressed in OpenSSL 1.02f/1.01r. To co

Re: Apache Flex SDK Installer and Air 24.0

2017-01-17 Thread Clint M
Seems like the answer is yes some one from the Apache Flex team just needs to update an xml file on a server. As a workaround you can download the Adobe AIR 24 SDK and unzip it then copy it over top of any existing Flex SDK to update it to AIR 24. Just make sure you're using a windows sdk on w

Re: air/flash 24 sdk, please update to release NOT beta

2017-01-18 Thread Clint M
released on the 10th… https://helpx.adobe.com/flash-player/release-note/fp_24_air_24_release_notes.html available here… http://www.adobe.com/devnet/air/air-sdk-download.html On Wed, Jan 18, 2017 at 11:04 AM, OmPrakash Muppirala wrote: > I think AIR 24 is still in beta. Thats what the labs page

Re: air/flash 24 sdk, please update to release NOT beta

2017-01-18 Thread Clint M
>> merging manually the sdk has some issue in osx with an indeterminate result. You can merge using the command line on osx… just do: cp where source_dir is the path to the air 24 sdk and dest_dir is the path to the flex sdk On Wed, Jan 18, 2017 at 2:28 AM, jaco wrote: > hi, > > just need to

Re: air/flash 24 sdk, please update to release NOT beta

2017-01-18 Thread Clint M
For a 24.x release maybe? 24.0.0 was released on the 10th Here's the air-sdk-description.xml from the downloaded dmg AIR 24.0.0 24.0.0 180 On Wed, Jan 18, 2017 at 11:21 AM, OmPrakash Muppirala wrote: > > But they refreshed their beta today. Note the date in the release notes: > http://fpd

Re: ViewNavigatorApplication // Surface // titleIcon

2017-01-19 Thread Clint M
Do you mean application icons? http://help.adobe.com/en_US/air/build/WS2d929364fa0b81374fa5df4f129dca62884-8000.html#WS2d929364fa0b81374fa5df4f129dca62884-7ff9 On Mon, Jan 2, 2017 at 1:14 PM, chris_d_k wrote: > I have a projct with a ViewNavigatorApplication which is using the mobile > theme an

Re: Catch Errors

2017-01-20 Thread Clint M
I think you want event.error. Also… if you compile with verbose-stacktraces=true and use the event.error.getStackTrace() to get the call stack. verbose-stacktraces will give you the stack trace even if you compile with debug=false On Fri, Jan 20, 2017 at 4:10 AM, Jairo wrote: > In my Apps I ca

Re: Paid AS3/Flex dev support

2017-02-02 Thread Clint M
Hi… wanted to follow up… I'm coming off of both my contracts and looking for work. Available to start anytime. On Wed, Dec 14, 2016 at 1:26 AM, Krüger, Olaf wrote: > Hi there, > our third baby was just born so I was and will be very inactive for a > while here on the list. > > Today I've a reque

Re: Upgrading web app to Flex 4.15

2017-02-03 Thread Clint M
override mx_internal function setSelectedIndex should be; override public function setSelectedIndex //it's public now ant build could be your java heap XMX… what's it set at? paste the command you're using to run mxmlc run ant with -d (e.g ant build -d) what's your java -version say? I'm runni

Re: failed to run installer 3.2 on my Mac OS Sierra

2017-02-04 Thread Clint M
Maybe try to repair disk permissions and try again. Also this, "you can't save「Apache Flex SDK Installer」,volume「4B486363-B090-4F61-8041-A0C076FE485A」is readonly。" might suggest that it might be a file mode problem or that the volume is locked. On Fri, Feb 3, 2017 at 10:04 PM, Davidfeng wrot

  1   2   >