Re: Unique Device ID

2014-12-16 Thread Subscriptions
no problem :) btw, android info can be grabbed without an ANE - cant remember the details but theres an info file you can load and parse. Lee Burrows ActionScripter On 16/12/2014 18:04, Carlos Monteiro wrote: Thank you Lee ;) On 16 December 2014 at 15:14, Subscriptions wrote: maybe this

Re: Unique Device ID

2014-12-16 Thread Subscriptions
maybe this? https://github.com/freshplanet/ANE-DeviceId Lee Burrows ActionScripter On 16/12/2014 15:10, Carlos Monteiro wrote: Hi, Is it possible to get the Unique Device ID for Apple and Android devices?

Re: Top Apps List for 2014

2014-12-10 Thread Subscriptions
http://flex.apache.org/community-showcase.html Lee Burrows ActionScripter On 10/12/2014 17:58, Sean Thayne wrote: Is there a place on the Apache flex site to add a list of flex apps? I'm pretty sure Adobe use to have a showcase list of flex/air apps. On Dec 10, 2014 5:35 AM, "Seth." wrote: T

soft keyboard panning

2014-12-04 Thread Subscriptions
Hi All, For a mobile app, i have an editable TextArea within an ItemRenderer, within a list. It uses ScrollingStageTextSkin and app softKeyboard behaviour is set to "pan". Mostly it works fine, but occasionally the app does not pan when the soft keyboard opens for editing; leaving the TextAr

Re: Crash on AIR app

2014-12-04 Thread Subscriptions
the mobile? Thanks Angelo El Thu Dec 04 2014 at 13:44:18, Subscriptions () escribió: the [WARN] trace you are seeing is generated by the mobile TextInput/TextArea skins - seeing it doesnt necessarily mean there's a problem; i suspect its not related to your app crashing are you using any AN

Re: Crash on AIR app

2014-12-04 Thread Subscriptions
the [WARN] trace you are seeing is generated by the mobile TextInput/TextArea skins - seeing it doesnt necessarily mean there's a problem; i suspect its not related to your app crashing are you using any ANEs or 3rd party code? Lee Burrows ActionScripter On 03/12/2014 11:22, Angelo Lazzari wr

Re: Resource Bundles

2014-12-02 Thread Subscriptions
sounds like you need SharedObject (http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/SharedObject.html) Lee Burrows ActionScripter On 02/12/2014 08:56, Scott Matheson wrote: Hi My app works in schools for 8 plus My challenge is the users may crash the browser

Re: [ANNOUNCE] Apache Flex Tour De Flex 1.2

2014-12-01 Thread Subscriptions
A few people have made spark trees which work well (eg http://saturnboy.com/2011/09/spark-treelist/ or http://kachurovskiy.com/2010/spark-tree/) Lee Burrows ActionScripter On 01/12/2014 09:20, Fred Brunton wrote: No, thanks for asking. It's modeling software. The model is build by creating

Re: Flex SDK 4.13 & Air 15.0 - 'Invalid namespace' issue

2014-11-14 Thread Subscriptions
a shot in the dark... look for "swf.version" value and ensure it is set to "26" Lee Burrows ActionScripter On 14/11/2014 13:44, 4xy wrote: Hi, Eventually I'm ending up with migrating from Flex SDK 4.10 (Air 3.8) & Flexmojos 6.0.1 to Flex SDK 4.13 Air 15 & Flexmojos 7.0.1 I downloaded the Fle

Re: Math.pow in ActionScript

2014-11-11 Thread Subscriptions
presumably due to precision issues with large numbers (ie not your fault) eg: http://en.wikipedia.org/wiki/Floating_point#Accuracy_problems Lee Burrows ActionScripter On 11/11/2014 16:38, Devesh Mishra(NABFS00) wrote: Hi, I am using Math.pow(x,y) method in action script. But I am very surpris

Re: State of Flex?

2014-11-07 Thread Subscriptions
Re #1, ive built a few internal flash/flex apps for UK corps; i've never come across a corp that doesnt give its users Flash Player, but they always seem to ignore updates so have old versions installed (eg: 10.1 if youre lucky). Lee Burrows ActionScripter On 07/11/2014 17:26, Chris Martin wr

Re: Background color in custom renderer

2014-11-06 Thread Subscriptions
its expecting a uint, so converts string ("Red") to a uint (zero) Lee Burrows ActionScripter On 06/11/2014 18:09, mark goldin wrote: I am getting results I cannot comprehend. this.getTextField().setStyle("backgroundColor", "Red"); if (this.getTextField().backgroundColor != null) trace(this.getT

Re: Google Map ANE Issue on Flex AIR iPad App

2014-10-28 Thread Subscriptions
Assuming the viewport is a StageWebView (http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/StageWebView.html) there is no way to change the layout order (it always stays in front). A possible workaround would be to take a snapshot of the map (if thats possible with

Re: FLEX-34454 status

2014-10-28 Thread Subscriptions
Could you upload a simple project that demonstrates the issue? Lee Burrows ActionScripter On 28/10/2014 14:12, Cristina Constantinescu wrote: Hello, Can you please tell us what is the status for this issue: https://issues.apache.org/jira/browse/FLEX-34454 ? It can be reproduced also on our ap

Re: DateSpinner (spark.components)

2014-10-20 Thread Subscriptions
http://lmgtfy.com/?q=Flex+DateSpinner Lee Burrows ActionScripter On 20/10/2014 22:55, Paul Hardiman wrote: I am using Apache Flex 4.13. I am trying to use DateSpinner, but no joy. How does one use DateSpinner? Ciao, Paul Hardiman

Re: Decimal to Hex conversion.

2014-10-14 Thread Subscriptions
both are correct. see (eg) http://www.cs.cornell.edu/~tomf/notes/cps104/twoscomp.html Lee Burrows ActionScripter On 14/10/2014 15:49, Saju Thankathurai wrote: Hi, I need to convert a larger value *-214748364 *to hexa decimal value. Tried using the below code Number(*-214748364*).toString(1

Re: Flash Builder workspaces and global configuration

2014-10-09 Thread Subscriptions
You can export/import settings (but i havent tested whether debug configs get included). select export in file menu. expand general tab, and select preferences Lee Burrows ActionScripter On 09/10/2014 16:44, mark goldin wrote: I have a workspace where I have created debug configurations. When

Re: Simple Question

2014-10-02 Thread Subscriptions
short answer is no. code should run the same either way. Lee Burrows ActionScripter On 02/10/2014 12:09, Ronny Shibley wrote: Hello, stupid question but is there a difference between the following ? itemRenderer="com.codefish.components.containers.MultiTabMenuButtonRenderer" itemRenderer="{Mu

Re: Clickable images

2014-09-30 Thread Subscriptions
How about triggering a hotspot based on MouseEvent localX, localY properties? something like this... yourImage.addEventListener(MouseEvent.CLICK, mouseHandler); function mouseHandler(event:MouseEvent):void { for (var i:int=0;i The thing is I dont know up front how many hot spots I am going

flash player 15

2014-09-26 Thread Subscriptions
Hi All, Can anybody clear up my confusion over FP 15? Adobe blog, dated 9th September, announces release version of FP15 (see http://blogs.adobe.com/flashplayer/2014/09/flash-runtime-15-now-available-for-download.html) Adobe Labs, dated 24th September, announces beta version of FP15 (see htt

Re: nativePath

2014-09-23 Thread Subscriptions
if event.target.selectedItem is a File object, try event.target.selectedItem.url instead On 23/09/2014 22:52, Justin Ransom Dallas wrote: Are you sure you aren't dealing with a null event.target or selectedItem On Tuesday, September 23, 2014, Trevor Holman wrote: image.source = event.target

Re: straw poll - which platform do you publish to?

2014-09-17 Thread Subscriptions
. :) On 16/09/2014 22:11, Subscriptions wrote: Hi All, I was wondering which platforms most Flex developers are creating apps for? So i thought i'd try and find out with a straw poll. So are you primarily making apps for the desktop, mobile devices or browsers? My own answer is &q

straw poll - which platform do you publish to?

2014-09-16 Thread Subscriptions
Hi All, I was wondering which platforms most Flex developers are creating apps for? So i thought i'd try and find out with a straw poll. So are you primarily making apps for the desktop, mobile devices or browsers? My own answer is "all of them (in the same app, argh!)", but i wonder if

Re: New 3rd Party Flex Library

2014-09-16 Thread Subscriptions
Nice looking site+demo. Are components/skins suitable for mobile too? On 16/09/2014 21:36, Jake Knerr wrote: Hi Flex Community, Ardisia Labs has recently released a large component library. I invite everyone to check it out. http://www.ardisialabs.com/ -- Lee Burrows ActionScripter

compc

2014-09-15 Thread Subscriptions
Hi All, I've been having some issues compiling SWCs... When i run compc with incremental=false, everything works. But if incremental=true, none of the embedded assets are included. Assets are embedded in .as file like so: [Embed(source="/path/to/image.png")] public static const imageClass:Cl

flex pmd

2014-09-09 Thread Subscriptions
Hi All, Now that opensource.adobe.com is inaccessible, are there any plans for apache to provide flexPMD as an eclipse plugin? -- Lee Burrows ActionScripter

Re: Adobe 4.7 : cannot download

2014-08-26 Thread Subscriptions
I think you have to download it via creative cloud (free account) On 26/08/2014 18:42, Sanatkumar Dhir wrote: On Adobe website, when I try to download FB 4.7 premium trial... I get http 403 error; Anybody else is getting the same issue? I'm getting this error from quite sometime; is there any

Re: [ANNOUNCEMENT] Apache Flex TourDeFlex 1.0

2014-08-25 Thread Subscriptions
I would say view source is essential ...however, i won't be fixing it so who am i to talk :) On 25/08/2014 15:25, Justin Mclean wrote: While the view source is useful, it a bit of a pain to generate and the HTML it does generate is rather old fashioned. -- Lee Burrows ActionScripter

Re: [ANNOUNCEMENT] Apache Flex TourDeFlex 1.0

2014-08-25 Thread Subscriptions
It would be nice to have right-click view source for the examples eg: Search component in spark/techniques/custom components - there is no way to see code for the focus of the example; the SearchBox component I know we can download the project but thats not very user friendly for people who a

Re: SWF file tag info

2014-08-06 Thread Subscriptions
try this: http://labs.adobe.com/technologies/swfinvestigator/ On 06/08/2014 20:16, mark goldin wrote: I remember I saw somewhere detail info about swf file tags like version type. These tags can be seen in a hex editor. Does it ring any bell? Thanks -- Lee Burrows ActionScripter

Re: mobile NumericStepper

2014-08-04 Thread Subscriptions
Actually, TextInput is selectable - but soft keyboard doesnt open when its focused. On 04/08/2014 19:42, Subscriptions wrote: Hi All, I am using a NumericStepper in a mobile app; it works fine on Android, but on iOS the TextInput part is not selectable. Before i attempt to debug the SDK or

mobile NumericStepper

2014-08-04 Thread Subscriptions
Hi All, I am using a NumericStepper in a mobile app; it works fine on Android, but on iOS the TextInput part is not selectable. Before i attempt to debug the SDK or build a replacement component, has anybody else experienced this and found a workaround? Thanks for any help, PS: I know that

Re: How do I to access data from objects created with addElement ?

2014-08-01 Thread Subscriptions
try: if (currentElement*is* FormItem) On 01/08/2014 16:48, Irnbru wrote: So I have a very simple cutome component with two textInputs I create these as needed dynamically using siFormItem = new FormItem(); // Add formItem siFormAttrbt= new lpSiComp(); // Custom Component si

Re: Flex application Session Timeout

2014-07-21 Thread Subscriptions
you could also try URLRequestDefaults.idleTimeout http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/URLRequestDefaults.html#idleTimeout On 21/07/2014 16:58, Ahsan Akhtar wrote: Hi, I am getting below mentioned error for a process which takes 10 minutes to compl

Re: dynamic skin scale

2014-07-18 Thread Subscriptions
th no luck [Bindable] private var _buttonScale:int = hostComponent.scaleX; ]]> ____ From: Subscriptions [subscripti...@leeburrows.com] Sent:

Re: dynamic skin scale

2014-07-18 Thread Subscriptions
you should be able to read the scale with hostComponent.scaleX On 18/07/2014 13:35, Scott Matheson wrote: Hi i have a skin, that i need to scaleX, the skin needs to read the scale from the button definition i have used this approach before backgroundColor.down="{getStyle('color')

Re: Function is not ready

2014-07-14 Thread Subscriptions
do you get same error with someTypeChange() instead of someTypeChange.call() On 14/07/2014 18:07, mark goldin wrote: I have the following pseudo code: public function someTypeChange(event:IndexChangeEvent=null):void { someArrayCollection.filterFunction = someFilterFunction; someArrayCollection

Re: Spark CurrencyFormatter vs mx CurrencyFormatter

2014-07-09 Thread Subscriptions
online docs have all the info on seperators (groupingPattern,groupingSeperator,useGrouping), precision (fractionalDigits) and others: http://flex.apache.org/asdoc/spark/formatters/CurrencyFormatter.html#propertySummary On 09/07/2014 16:20, mark goldin wrote: Looks like Spark formatter does

Re: Components List

2014-07-07 Thread Subscriptions
not sure if it's available yet but (apache version of) tour de flex should fit your needs On 07/07/2014 18:04, Trevor Holman wrote: Yeah… On Jul 7, 2014, at 12:00 PM, Alex Harui wrote: Other than the doc? On 7/7/14 7:51 AM, "Trevor Holman" wrote: Is there a comprehensive list of comp

Re: Custom component similar to DatePicker

2014-07-02 Thread Subscriptions
Perhaps a DropDownList with a custom skin? On 02/07/2014 16:37, mark goldin wrote: I need to create a component that would consist of two controls: TextInput and an icon. Something looking and working similar to a DateField. But when I click on an icon I will show a list to choose some values fr

Re: hasOwnProperty with namespace

2014-06-24 Thread Subscriptions
describeType might do the job http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/utils/package.html#describeType() On 24/06/2014 16:46, Mihai Chira wrote: Is there a way to check if an object instance has a non-public property if you know its namespace? If you say object

Re: Air LMS Communication

2014-06-11 Thread Subscriptions
Flash Pro did have SCORM support back in the day. i don't know what the current state of affairs is, but as i remember it, i communicated with the API via URLLoader. If that's still the case, you're good to go. On 11/06/2014 21:15, Javier Guerrero García wrote: Well, like any other system in t

Re: AMF3 Serialization Benchmark (GraniteDS 3.1.0.M1 vs. BlazeDS 4.0.0)

2014-06-06 Thread Subscriptions
send a message to users-unsubscr...@flex.apache.org On 06/06/2014 13:35, Dana White wrote: What email address should I use to unsubscribe from the group? Cheers, Dana A. White On Jun 6, 2014, at 7:32 AM, Franck Wolff wrote: Nice ! I'm looking forw