AIR

2017-08-26 Thread Trevor Holman
I'm trying to set the contents of a DataGrid based on the selection of a drop down. I created a DatabaseManager class to handle all the sqlite communications however I can't seem to get the variable holding the ArrayCollection to set before it's called in my main file. So that makes each selection

Build AIR APP with AIR integrated inside

2015-08-17 Thread vijendra sainy
Hi All, Can anyone help me in creating a AIR build which default contain AIR inside it. I mean AIR app do not run where AIR is not installed. So I wanted to create a build which contain AIR and if that is not installed in a machine the build first install AIR then app. I do not want user to

[AIR - loadForCompatibility]

2014-09-23 Thread Frédéric THOMAS
Hi, Just was wondering if someone has a code example / sample on how to load from a AIR local-trusted sandbox, a remote swf where that swf could use all the AIR API (File, PDF, etc..) ? Thanks, Frédéric THOMAS

AIR SDK

2015-05-26 Thread Trevor Holman
I'm not sure how to point to the correct SDK folder in Flash Builder for AIR so I just replace what was in the folder it was already pointing to, wondering if I'm going to run into problems by doing that? It's reading correctly now the version I want. Trevor

AIR 3.4

2013-03-03 Thread Oliver Wiemer
Hy Guys, why is AIR 3.4 included and not AIR 3.6? Did these feature comes later, or is these also a probleme with the rights by adobe? best regards olli

AIR 23

2016-09-14 Thread engorila
Can you update Apache Flex SDK Installer to be compatible with Adobe AIR 23? Thanks so much!!! -- View this message in context: http://apache-flex-users.246.n4.nabble.com/AIR-23-tp13539.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: AIR

2017-08-26 Thread vincent
Bonjour, En congés jusqu'au 4 septembre, je prendrais connaissance de votre message à mon retour. Cordialement, Vincent/AFTER24

Re: AIR

2017-08-26 Thread Kyle McKnight
Don't set _myResults to a brand new ArrayCollection. 1. Instead, insure _myResults exists (maybe create an empty one when you instantiate your DataManager). 2. Set _myResults as the data provider on your DataGrid. 3. When you get your results, use the addItem method on _myResults to add the items

Re: AIR

2017-08-26 Thread Kyle McKnight
Or you can also just make sure to set it as the data provider after the results are received rather than before. Kyle Kyle McKnight Senior UI Engineer - Accesso 602.515.1444 (M) On Sat, Aug 26, 2017 at 12:35 PM, Kyle McKnight wrote: > Don't set _myResults to a brand new ArrayCollection. > > 1

RE: AIR

2017-08-26 Thread Trevor Holman
This is what I'm trying to do but I'm not sure how to do this so that the variable is set before I set the dataProvider... -Original Message- From: Kyle McKnight [mailto:kamck...@gmail.com] Sent: Saturday, August 26, 2017 11:38 AM To: Flex Users Group Subject: Re: AIR Or yo

Re: AIR

2017-08-26 Thread Kyle McKnight
Original Message- > From: Kyle McKnight [mailto:kamck...@gmail.com] > Sent: Saturday, August 26, 2017 11:38 AM > To: Flex Users Group > Subject: Re: AIR > > Or you can also just make sure to set it as the data provider after the > results are received rather than befo

Re: AIR

2017-08-26 Thread Kyle McKnight
Kyle McKnight [mailto:kamck...@gmail.com] >> Sent: Saturday, August 26, 2017 11:38 AM >> To: Flex Users Group >> Subject: Re: AIR >> >> Or you can also just make sure to set it as the data provider after the >> results are received rather than before. >&

RE: AIR

2017-08-26 Thread Trevor Holman
5:40 PM To: Flex Users Group Subject: Re: AIR There are many ways you could do it. Try dispatching a custom event, something like "itemCategoriesRecieved," from the data manager when the results are returned. In your class that contains the data grid, listen for that event on your da

Re: AIR

2017-08-26 Thread Kyle McKnight
set before I set the dataProvider... >>> >>> -Original Message- >>> From: Kyle McKnight [mailto:kamck...@gmail.com] >>> Sent: Saturday, August 26, 2017 11:38 AM >>> To: Flex Users Group >>> Subject: Re: AIR >>> >>>

RE: AIR

2017-08-26 Thread Trevor Holman
and I want to learn it. I can normally find what I need via google. -Original Message- From: Kyle McKnight [mailto:kamck...@gmail.com] Sent: Saturday, August 26, 2017 5:43 PM To: Flex Users Group Subject: Re: AIR Or just declare and define your _myresults variable at the same time.

Re: AIR

2017-08-26 Thread Kyle McKnight
rmally find what I need via google. > > -Original Message- > From: Kyle McKnight [mailto:kamck...@gmail.com] > Sent: Saturday, August 26, 2017 5:43 PM > To: Flex Users Group > Subject: Re: AIR > > Or just declare and define your _myresults variable at the same time. >

Re: AIR

2017-08-26 Thread Kyle McKnight
etty green when it comes to this and I want to >> learn it. I can normally find what I need via google. >> >> -Original Message- >> From: Kyle McKnight [mailto:kamck...@gmail.com] >> Sent: Saturday, August 26, 2017 5:43 PM >> To: Flex Users Group >> Sub

RE: AIR

2017-08-26 Thread Trevor Holman
th it some more. -Original Message- From: Kyle McKnight [mailto:kamck...@gmail.com] Sent: Saturday, August 26, 2017 6:24 PM To: Flex Users Group Subject: Re: AIR >From the limited code you've posted what looks like is happeing is that you >are setting the data provider befor

RE: AIR

2017-08-26 Thread Trevor Holman
(temp); _myResults.removeAll(); _myResults.addAll(listResult); } -Original Message- From: Kyle McKnight [mailto:kamck...@gmail.com] Sent: Saturday, August 26, 2017 6:29 PM To: Flex Users Group Subject: Re: AIR privat

RE: AIR

2017-08-26 Thread Kyle McKnight
- > From: Kyle McKnight [mailto:kamck...@gmail.com] > Sent: Saturday, August 26, 2017 6:29 PM > To: Flex Users Group > Subject: Re: AIR > > private var _myResults:ArrayCollection = new ArrayCollection(); > > private function resultsHandler(results:Object):void > { &g

AIR Versions

2020-06-25 Thread Paul Stearns
I took an application developed and running in Flex 3.6 and migrated it to AIR using Flashbuilder 4.6. It was surprisingly easy. I had a minor issue and thought I would upgrade the AIR compiler to v32. This caused many MX components to not be found. For example; mx:Button mx:Canvas mx:HBox

Re: Build AIR APP with AIR integrated inside

2015-08-17 Thread Philip Medlam
If you compile the Build as a *Captive Runtime* Package, then the App will have the AIR runtime included with it and users who download the App will *NOT* have to download AIR if they do not have it. Of course, this increases the App package size. Phil. On Mon, Aug 17, 2015 at 1:27 PM, vijendra

RE: Build AIR APP with AIR integrated inside

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

Re: Build AIR APP with AIR integrated inside

2015-08-17 Thread vijendra sainy
It will give me folder structure. Right. I want single installer file. That will install AIR first and then app. On Mon, Aug 17, 2015 at 6:40 PM, Kessler CTR Mark J < mark.kessler@usmc.mil> wrote: > You're looking for a captive runtime. Give this slightly older page a >

AW: Build AIR APP with AIR integrated inside

2015-08-17 Thread Christofer Dutz
y see "Adobe AIR" ... so better hide it ;-) In Flexmojos 7.1.0-SNAPSHOT I am working on allowing to build native applications with Maven there you can simply toggle the runtime embedding using a includeCaptiveRuntime config option. Hopefully I'll find the time to continue working

Re: Build AIR APP with AIR integrated inside

2015-08-18 Thread vijendra sainy
Can you send few from where I can refer all. I hope that will not let me loose the functionality of auto updating my AIR app. On Mon, Aug 17, 2015 at 7:21 PM, Christofer Dutz wrote: > No it's more like a simple standalone application. It will increase the > size of your applicati

Re: Build AIR APP with AIR integrated inside

2015-08-18 Thread Peter Ginneberge
You can not auto update (AIR update API) a Captive Runtime AIR application. http://help.adobe.com/en_US/air/build/WSfffb011ac560372f709e16db131e43659b9-8000.html And in case that matters, the installer is no longer cross platform. regards, Peter On 18/08/2015 10:04, vijendra sainy wrote

Re: Build AIR APP with AIR integrated inside

2015-08-18 Thread OmPrakash Muppirala
On Tue, Aug 18, 2015 at 1:30 AM, Peter Ginneberge wrote: > > You can not auto update (AIR update API) a Captive Runtime AIR application. > You can still auto-update a captive runtime AIR application, it is only a bit involved. http://www.adobe.com/devnet/air/articles/updating-air-ap

AW: Build AIR APP with AIR integrated inside

2015-08-18 Thread Christofer Dutz
But you have to update your application ... I think what peter was referring to was that if I package an application with the shared runtime, as soon as Adobe publishes a fixed AIR runtime, your application automatically benefits from this, if its a captive runtime, you have to rebuild your

Re: Build AIR APP with AIR integrated inside

2015-08-18 Thread OmPrakash Muppirala
On Tue, Aug 18, 2015 at 1:49 AM, Christofer Dutz wrote: > But you have to update your application ... I think what peter was > referring to was that if I package an application with the shared runtime, > as soon as Adobe publishes a fixed AIR runtime, your application > automatica

Re: Build AIR APP with AIR integrated inside

2015-08-18 Thread Peter Ginneberge
Right, but you mean it's a PITA :) On 18/08/2015 10:42, OmPrakash Muppirala wrote: On Tue, Aug 18, 2015 at 1:30 AM, Peter Ginneberge wrote: You can not auto update (AIR update API) a Captive Runtime AIR application. You can still auto-update a captive runtime AIR application, it is

Re: Build AIR APP with AIR integrated inside

2015-08-18 Thread OmPrakash Muppirala
way. Thanks, Om > > On 18/08/2015 10:42, OmPrakash Muppirala wrote: > >> On Tue, Aug 18, 2015 at 1:30 AM, Peter Ginneberge > > >> wrote: >> >> >>> You can not auto update (AIR update API) a Captive Runtime AIR >>> application. >>> >

AW: Build AIR APP with AIR integrated inside

2015-08-18 Thread Christofer Dutz
What I dislike most, but that's not only related to Air applications but widely spread. Every update seems to require a complete download of the application. I noticed uninstalling several applications that frequently forced me to download large amounts of data several times a month. I

Re: Build AIR APP with AIR integrated inside

2015-08-18 Thread vijendra sainy
OK. I got it. Now how can I repackage my application. I mean I want a single installer which will add icons in startup menu and desktop icon ? On Tue, Aug 18, 2015 at 2:35 PM, Christofer Dutz wrote: > What I dislike most, but that's not only related to Air applications but > wi

Re: Build AIR APP with AIR integrated inside

2015-08-18 Thread vijendra sainy
I think this will required more panic for me. I mean I need to change the way of application update as well. My problem will be solved if I can find some tool which wrap Adobe AIR and My app in single unit. When we run this unit it will check for Abode AIR in the machine and if it does not find it

Re: Build AIR APP with AIR integrated inside

2015-08-19 Thread Peter Ginneberge
> My problem will be solved if I can find some tool which wrap Adobe AIR and > My app in single unit. When we run this unit it will check for Abode AIR in > the machine and if it does not find it will first install Adobe AIR and > then my app. That all for me. I've done this

Re: Build AIR APP with AIR integrated inside

2015-08-19 Thread vijendra sainy
OK So here what I did to create a windows installer. I have download InnoSetup. Created a .bat file which first run AIR installer then my App. Now with the help of InnoSetup I create a package( whose output is .exe file) this setup create a package with AIRINSTALLER.exe and myAIRapp.air and

[trusted Multi-versioned AIR app] (was RE: [AIR - loadForCompatibility])

2014-09-27 Thread Frédéric THOMAS
webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: [AIR - loadForCompatibility] > Date: Fri, 26 Sep 2014 09:50:11 +0100 > > And forgot to mention but both the loader and the application needs to be > compiled with -includes=mx.managers.systemClasses.MarshallingSupport >

Re: AW: Build AIR APP with AIR integrated inside

2015-08-18 Thread Peter Ginneberge
application ... I think what peter was referring to was that if I package an application with the shared runtime, as soon as Adobe publishes a fixed AIR runtime, your application automatically benefits from this, if its a captive runtime, you have to rebuild your application with the new

Re: AW: Build AIR APP with AIR integrated inside

2015-08-18 Thread Alex Harui
On 8/18/15, 2:05 AM, "Christofer Dutz" wrote: >What I dislike most, but that's not only related to Air applications but >widely spread. >Every update seems to require a complete download of the application. ... >I would really love to have more people publish

Start air app from another air app on android

2014-01-09 Thread whityfenix
Hello, I have two Air applications and I need to start one from another. I would like to know what is the best way to do it? I found the solution that use adobe.utils.ProductManager: http://apache-flex-users.246.n4.nabble.com/launch-parameters-td882.html#a898 http://blog.everythingflex.com

Multiple Air Instances

2014-04-01 Thread Saul Diaz
Do anyone have worked in make an air application run multiple times? I know changing the Application ID and the folder at compilation will archive this but I wanna be able to do it at execution Regards saul

VPN from air

2014-04-17 Thread Saul DIaz
Hey do anyone have worked with a vpn or openvpn from inside an air application? Regards saul

Air LMS Communication

2014-06-11 Thread chris_d_k
Hi, is there actually any chanche to communicate from a flex mobile app (Air) to a Learning Management System (via SCORM or the Experience API (xAPI))? Best regards, Christian -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Air-LMS-Communication-tp6816.html

Debuggin AIR Application

2014-08-05 Thread Devesh Mishra(NABFS00)
Hi, I am trying to debug an AIR application which is on production server. But it seems, flashlog.txt files doesn't updates. It only updates when I debug it at my local machine using Flash Builder. In mm.cfg file, I have written, ErrorReportingEnable=1 MaxWarnings

Re: [AIR - loadForCompatibility]

2014-09-23 Thread Alex Harui
was wondering if someone has a code example / sample on how to load >from a AIR local-trusted sandbox, a remote swf where that swf could use >all the AIR API (File, PDF, etc..) ? >Thanks, >Frédéric THOMAS

RE: [AIR - loadForCompatibility]

2014-09-23 Thread Frédéric THOMAS
Hi Alex, Thanks for the trick but indeed I need to do remote calls, I hadn't got the use case with AIR before and wonder why the security is so strict relative to FP. IIRC, from a sandboxed untrusted child app, there's no way to use the main AIR app API, I can only send and receive s

RE: [AIR - loadForCompatibility]

2014-09-23 Thread Frédéric THOMAS
I will still explore that way tomorrow :-) Thanks, Frédéric THOMAS > From: aha...@adobe.com > To: users@flex.apache.org > Subject: Re: [AIR - loadForCompatibility] > Date: Tue, 23 Sep 2014 18:54:57 + > > IIRC, you can load via URLLoader as a byte array and then use lo

Re: [AIR - loadForCompatibility]

2014-09-23 Thread Alex Harui
On 9/23/14 1:20 PM, "Frédéric THOMAS" wrote: >Hi Alex, > >Thanks for the trick but indeed I need to do remote calls, I hadn't got >the use case with AIR before and wonder why the security is so strict >relative to FP. Yeah, I agree that AIR should allow whiteli

RE: [AIR - loadForCompatibility]

2014-09-23 Thread Frédéric THOMAS
> Essentially, this trick makes remote content local. It can make remote > calls, but the headers will be the same as if you coded URLLoader in the > main AIR app not as if it was a web-app served by the domain's server. If it means the loaded swf is perceived as or is in the loc

Re: [AIR - loadForCompatibility]

2014-09-23 Thread Alex Harui
On 9/23/14 1:56 PM, "Frédéric THOMAS" wrote: >> Essentially, this trick makes remote content local. It can make remote >> calls, but the headers will be the same as if you coded URLLoader in the >> main AIR app not as if it was a web-app served by the domain&

RE: [AIR - loadForCompatibility]

2014-09-23 Thread Frédéric THOMAS
Alight, thank you Alex Frédéric THOMAS > From: aha...@adobe.com > To: users@flex.apache.org > Subject: Re: [AIR - loadForCompatibility] > Date: Tue, 23 Sep 2014 21:03:39 + > > > > On 9/23/14 1:56 PM, "Frédéric THOMAS" wrote: > > >> Essential

RE: [AIR - loadForCompatibility]

2014-09-24 Thread Frédéric THOMAS
xmlns:s="library://ns.adobe.com/flex/spark"> Do you know why I can't reach ldr_completeHandler ?Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: [AIR - loadForCompatibility] > Date: Tue, 23 Sep 2014 22:20

RE: [AIR - loadForCompatibility]

2014-09-24 Thread Frédéric THOMAS
users@flex.apache.org > Subject: RE: [AIR - loadForCompatibility] > Date: Wed, 24 Sep 2014 11:37:46 +0100 > > Hi Alex, > So, I gave a try but I'm facing something weird, comment in code: > The Loader: > http://ns.adobe.com/mxml/2009"; > xm

RE: [AIR - loadForCompatibility]

2014-09-25 Thread Frédéric THOMAS
So, the trick to have an adobe AIR trusted remote multi-versioned application is as shown in this sample code: http://ns.adobe.com/mxml/2009"; xmlns:s="library://ns.adobe.com/flex/spark" preinitialize="

Re: [AIR - loadForCompatibility]

2014-09-25 Thread Alex Harui
omain" when the SWF is loaded in this way. -Alex On 9/25/14 8:34 AM, "Frédéric THOMAS" wrote: >So, the trick to have an adobe AIR trusted remote multi-versioned >application is as shown in this sample code: >xmlns:fx="http://ns.adobe.com/mxml/2009";

RE: [AIR - loadForCompatibility]

2014-09-26 Thread Frédéric THOMAS
Hi Alex, It works perfectly, remote calls and all the AIR APIs, my app loader is in the last version of the SDK / AIR, it loads the old AIR project SDK 4.6 which in turn loads modules, the goal was to be able to raise the SDK and libs versions avoiding re-installing the application on devices

RE: [AIR - loadForCompatibility]

2014-09-26 Thread Frédéric THOMAS
> Was the remote SWF able to make "secure" calls to the server? Remote calls yes, but we're not in https, so, I can't say. Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: [AIR - loadForCompatibility] > Date: Fri, 26 S

RE: [AIR - loadForCompatibility]

2014-09-26 Thread Frédéric THOMAS
And forgot to mention but both the loader and the application needs to be compiled with -includes=mx.managers.systemClasses.MarshallingSupport Frédéric THOMAS > From: webdoubl...@hotmail.com > To: users@flex.apache.org > Subject: RE: [AIR - loadForCompatibility] > Date: Fri, 26 Se

Flash to Air

2015-03-02 Thread Scott Matheson
Hi I have just completed my first Flash / Web app and all is running well, I need to now build an AIR version of the same app, is there an recommend approach/efficient , do I simply have 2 version of the app, or do I just need a new AIR project and some how reference the code for the Flex

Adobe AIR 17?

2015-04-08 Thread dfranzi
Adobe AIR 17 has been out for almost a month now. Is there any word on when the Apache Flex SDK Installer is going to be updated to support this new version? -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Adobe-AIR-17-tp10030.html Sent from the Apache Flex

Re: AIR SDK

2015-05-29 Thread douglowder
ot;. -- View this message in context: http://apache-flex-users.2333346.n4.nabble.com/AIR-SDK-tp10424p10452.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Testflight with AIR?

2015-06-12 Thread Jonathan Christian
I was reading about the new Build Number in AIR iOS with AIR 18 and noticed it talked about TestFlight right in the release notes. I have recently been uploading builds to the app store (usually with AIR 17) but my AIR apps are never been available for test flight testing in iTunes connect. Is

Re: AIR 3.4

2013-03-03 Thread Justin Mclean
Hi, > why is AIR 3.4 included and not AIR 3.6? At the time 4.9 was released AIR 3.6 had not been released and 4.9.1 was a minor update that didn't include 3.5. > Did these feature comes later, or is these also a probleme with the rights > by adobe? It's expected that AIR 3.6

Re: AIR 3.4

2013-03-03 Thread Oliver Wiemer
Thanks Justin, so I include 3.6 by myself. I think, the only thing what we must do is to change the installer? Am 03.03.13 19:51 schrieb "Justin Mclean" unter : >Hi, > >> why is AIR 3.4 included and not AIR 3.6? >At the time 4.9 was released AIR 3.6 had not been

Re: AIR 3.4

2013-03-03 Thread Antonio Guglielmo
gt; Am 03.03.13 19:51 schrieb "Justin Mclean" unter : > >> Hi, >> >>> why is AIR 3.4 included and not AIR 3.6? >> At the time 4.9 was released AIR 3.6 had not been released and 4.9.1 was >> a minor update that didn't include 3.5. >> >>>

Re: AIR 3.4

2013-03-03 Thread Justin Mclean
Hi, > so I include 3.6 by myself. > I think, the only thing what we must do is to change the installer? You can provide the installer with a custom config file (via the command line) that will make it use AIR 3.6. If you are on OSX there a script in the ide directory of the develop bra

Re: AIR 3.4

2013-03-03 Thread Justin Mclean
uilder: http://helpx.adobe.com/flash-builder/kb/overlay-air-sdk-flash-builder.html Be sure that you download the correct version of the AIR SDK ie the one without the old compiler that supports MXML. http://www.adobe.com/devnet/air/air-sdk-download.edu.html Be sure to click on the link after

Update AIR version

2013-07-05 Thread Tom Chiverton
I have a fresh install of the Apache Flex SDK, including AIR (3.4 ?), from the installer app. How do I update this to the latest AIR (3.7) release ? There are two downloads offered on http://www.adobe.com/devnet/air/air-sdk-download.html for instance, and I'm not clear which one I shou

IE in AIR

2016-04-30 Thread XOF.K-Net
Hello You know if someone has embedded IE in AIR using an ANE. XOF

AIR for Linux

2016-08-03 Thread Angelo Lazzari
Hi all, i need to install an AIR packaged app on a linux computer, but i see the air linux version is already discontinued...so, do i have another way to use that app on that linux pc? Thank you very much Angelo -- *Angelo Lazzari* REDTULP.com tlf. +34 683 137 087 angelo.lazz...@redtulp.com

Re: AIR 23

2016-09-14 Thread engorila
They have released it yesterday: http://www.adobe.com/devnet/air/air-sdk-download.html -- View this message in context: http://apache-flex-users.246.n4.nabble.com/AIR-23-tp13539p13540.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: AIR 23

2016-09-19 Thread engorila
Hi again! I need to use Apache Flex & Adobe AIR 23 to fix some bugs... Please can you update Apache Flex Installer with AIR 23? Thanks :) -- View this message in context: http://apache-flex-users.246.n4.nabble.com/AIR-23-tp13539p13566.html Sent from the Apache Flex Users mailing

Re: AIR 23

2016-09-19 Thread chris_d_k
Hi engorilla, you can download the *air23 sdk for flex* (http://www.adobe.com/devnet/air/air-sdk-download.html) and just extract(unzip) into another sdk (f.e. flex 4.15/air22) you downloaded through the Apache Flex Installer and override changes... see https://helpx.adobe.com/x-productkb/multi

Re: AIR 23

2016-09-19 Thread Alex Harui
I just tried to add it. Let me know if it works or not. Adding a new version requires downloading both the Mac and Win AIR SDKs twice each, so I have to find the "right time" to do it. -Alex On 9/19/16, 12:17 AM, "engorila" wrote: >Hi again! > >I need to use Apac

Re: RE: AIR

2017-08-26 Thread vincent
Bonjour, En congés jusqu'au 4 septembre, je prendrais connaissance de votre message à mon retour. Cordialement, Vincent/AFTER24

AIR Version Requirements

2018-07-23 Thread Diogo Vieira
Hi everyone, I wonder if I can run applications built with current AIR versions for iOS7. Is there a minimum requirement for iOS version? Att, Diogo

Air Mentor needed

2019-04-01 Thread Scott Matheson
Hi We have an existing Flex app deployed over the web, we are looking at shifting elements of the app to iPad/ android, we looking for a paid mentor to kick start our project, this would be 1 hour at a time over a few weeks Our weakness is the whole App Store models development issue, we been

Flash app -> AIR

2019-06-22 Thread Blake McBride
Greetings, I have a large Flex(3.5)/Flash app that (obviously) runs under a browser. Since the Flash player is going away, I am wondering if I should consider AIR. What are my other options? What's easiest? Thanks. Blake McBride

Catalina and AIR

2019-12-07 Thread Tucsonjhall
Users of my program who have converted to Catalina on Mac are pretty consistently running into a message about the AIR framework being damaged. In the Adobe forums I did find the command to take the AIR framework out of quarantine sudo xattr -r -d com.apple.quarantine ./Adobe\ AIR.framework Is

Deploying AIR applications

2020-06-13 Thread Paul Stearns
Where can I find information on how to make an AIR application deployable? I would prefer an option which would check if an acceptable version of AIR is already installed, and install AIR if not. The end goal would be to create an item on a web site where the user clicks, if the app is already

Adobe Air launcher

2020-06-15 Thread Paul Stearns
Is there a way of stopping execution of application "A" and transferring control to application "B" in AIR? Or will I need to create an OS command procedure? My thought is to write an application whose only purpose is to verify that my "real" application is up t

Re: AIR Versions

2020-06-25 Thread Paulus de B.
Hi Paul, MX components should normally not be a problem. Are you sure you have the mx namespace defined? Like this e.g. in a spark VGroup that uses mx components (the xmlns:mx part): http://ns.adobe.com/mxml/2009"; xmlns:s="library://ns.adobe.com/flex/spark"

Re: AIR Versions

2020-06-25 Thread Paul Stearns
idth="1280" height="720" scriptTimeLimit="60"> Paul R. Stearns Advanced Consulting Enterprises, Inc. 15280 NW 79th Ct. Suite 250 Miami Lakes, Fl 33016 Voice: (305)623-0360 x107 Fax: (305)623-4588 From: "Paulus de B."

Re: AIR Versions

2020-06-25 Thread Paul Stearns
earns" Sent: 6/25/20 5:50 PM To: , Subject: Re: AIR Versions Paulus: Here is my application tag; http://ns.adobe.com/mxml/2009"; xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:ext="Classes.panel.*&qu

Re: AIR Versions

2020-06-25 Thread Alex Harui
Depending on how you upgraded, you could have overwritten the default Flex configs with the default AIR configs and that could cause these symptoms. Flex has an air-config.xml with different library-path than standard AIR SDK. IMO, re-installing with the right AIR version has been used more

Re: AIR Versions

2020-06-25 Thread Paul Stearns
I am running FlashBuilder 4.6. I created a folder C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\sdks\4.16.1 I copied in the 4.16 Flex SDK I then copied the AIR compiler v32 on top of that (overwriting files as needed). This is what I found as the proper way to do the upgrade from

Re: AIR Versions

2020-06-25 Thread Alex Harui
Did you download the AIR SDK for Flex users or the main one from the “Download Now” button? You need the one for Flex users and even then, I don’t know if this suggestion will work with recent AIR SDKs. HTH, -Alex From: Paul Stearns Reply-To: "pa...@compuace.com" Date: Thursda

Re: AIR Versions

2020-06-26 Thread Paul Stearns
From: Alex Harui Sent: 6/25/20 6:24 PM To: "pa...@compuace.com" , "users@flex.apache.org" Subject: Re: AIR Versions Did you download the AIR SDK for Flex users or the main one from the “Download Now” button? You need the one for Flex users and even then,

AIR to Royale

2020-11-04 Thread bilbosax
Hi everyone, I need a little info. I have written a mobile real estate app in Adobe AIR that I also modified to run on the desktop, and now I am interested in making a web presence with it. But I hate coding in html/javascript/css and won't even attempt that route. So I wanted to ask

Compiling AIR app

2021-06-03 Thread Harbs
For the first time in a while I’m trying to compile a Flex app for AIR. Nothing seems to work. When I try to build a release build from Flash Builder, the app quits on me. When I try to compile using VS Code and Josh’s extension, I keep getting certificate errors. Does anyone have a tried and

Re: Start air app from another air app on android

2014-01-09 Thread Jonathan Campos
AM, whityfenix wrote: > Hello, > > I have two Air applications and I need to start one from another. > I would like to know what is the best way to do it? > > I found the solution that use adobe.utils.ProductManager: > > http://apache-flex-users.246.n4.nabble.com/lau

Re: Start air app from another air app on android

2014-01-09 Thread whityfenix
you've added > an app prefix. Then you just > > navigateToUrl(new URLRequest("yourappprefix://whatever,vars,you,need")); -- View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Start-air-app-from-another-air-app-on-android-tp4409p4427.html

Re: Start air app from another air app on android

2014-01-10 Thread whityfenix
. (There is also no difference how to specify the scheme with or w/o slashes). I put into android part of xml descriptor all the necessary (as I think) stuff like: The only thing that works is: It's really sad that Air doesn't allow to communicate between applications in convenien

Upgrading from Flex 4.16.0 AIR 24 to Flex 4.16.1 AIR 29

2018-04-16 Thread fhassani
I am upgrading from Flex 4.16.0 AIR 24 to Flex 4.16.1 AIR 29. I created Assets.car file using this website: http://www.appuploader.net/appuploader/icontool.php and I added it to my project in the same place as default-5...@2x.png. I also added Assets.car to myproject-app.xml. I am using iOS8.1

RE: Multiple Air Instances

2014-04-01 Thread Alex Harui
Do you really need separate processes? Otherwise, just open a new window on each Invoke event. -Alex From: Saul Diaz [cripito...@gmail.com] Sent: Tuesday, April 1, 2014 5:29 PM To: users@flex.apache.org Subject: Multiple Air Instances Do anyone have

Re: Multiple Air Instances

2014-04-02 Thread Nemi
Maybe this can help: https://github.com/chrisdeely/AirAppDuplicator -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Multiple-Air-Instances-tp5884p5904.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

RE: Multiple Air Instances

2014-04-02 Thread Saul Diaz
...@gmail.com] Sent: Wednesday, April 2, 2014 6:32 AM To: users@flex.apache.org Subject: Re: Multiple Air Instances Maybe this can help: https://github.com/chrisdeely/AirAppDuplicator -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Multiple-Air-Instances-tp5884 p5904

Re: VPN from air

2014-04-17 Thread Sean Thayne
As far as I know, the way that openvpn works, it takes over the entire network interface. So you can launch it from AIR using NativeProccess. And control it through there. -Sean Thayne On Thu, Apr 17, 2014 at 7:17 AM, Saul DIaz wrote: > Hey > > > > do anyone have worked with a

Re: Air LMS Communication

2014-06-11 Thread Javier Guerrero García
;is a car able to drive through a road?" :) On Wed, Jun 11, 2014 at 9:44 PM, chris_d_k wrote: > Hi, > > is there actually any chanche to communicate from a flex mobile app (Air) > to > a Learning Management System (via SCORM or the Experience API (xAPI))? > &

  1   2   3   4   5   6   7   8   9   10   >