Re: Multiple AIR executables in the same folder

2020-06-18 Thread Alex Harui
Are you trying to create a separate process for security or memory reasons?  
Otherwise, just load the SWF in another NativeWindow.

HTH,
-Alex

On 6/18/20, 8:12 AM, "Paul Stearns"  wrote:



I have an acceptable (mostly) work around. If I move the second application 
into a subfolder of the first I can easily run the second application. This 
however requires that I carry an extra ~36 MB of AIR executables with it.

Is there any way to tell a captive runtime executable where the AIR modules 
can be found?

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: "Paul Stearns" 
Sent: 6/18/20 8:32 AM
To: "users@flex.apache.org" 
Subject: Multiple AIR executables in the same folder
I would like to have multiple AIR executables (captive runtime) in the same 
folder. It appears that a captive runtime runs a standard executable which 
looks for a file .META-INF\AIR\application.xml which defines the actual swf 
file to run.

Will the executable accept as a parameter, the name of the 
"application.xml" file to use?

If so I could have two different files.

What I am trying to accomplish is to have one AIR application call another. 
and packaging them into the same folder would make my life easier.

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






Re: migrating to AIR when using url "POST" request

2020-06-18 Thread Alex Harui
Paul,

NativeProcess should let you launch the actual application if you know the path 
to the application.

Would that work for you?
-Alex

On 6/18/20, 5:40 AM, "Paul Stearns"  wrote:

Alex:

My goal is to receive the file on the client and open Excel.

For the moment i did;

//navigateToURL(u, "_blank");
   var objDownloadFile:FileReference = new FileReference;
   objDownloadFile.download(u,strFileName + ".xlsx");

which will allow the user to download the file. It would be nice to give 
them the option to open it from the application.

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: Alex Harui 
Sent: 6/18/20 12:04 AM
To: "users@flex.apache.org" , "pa...@compuace.com" 

Subject: Re: migrating to AIR when using url "POST" request
At a higher-level, what is the user goal? Can you open Excel itself or does 
it have to be a browser window?

-Alex

On 6/17/20, 10:53 AM, "Paul Stearns"  wrote:

In many places in our applications we use the navigateToURL method to load 
another browser window with Excel Spreadsheets and other items we generate from 
code on our website. We invariably use "POST" instead of "GET" for various 
reasons, some of which cannot be converted to "GET."

Where can I find information on how to convert;

var u:URLRequest = new URLRequest(_RootDomain + urlExcelExport);
u.data = variables;
u.method = "POST";

navigateToURL(u, "_blank");

to something which will work from AIR? Perhaps URLloader?

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






Re: Not able to install ipa in ipad.

2020-06-18 Thread Carlos Rovira
Hi

If you did it some years ago, it could be that Apple changed the process
many times since then. I guess you need to take all the new
requeriments and see what you could be missing. I suggest you start
checking all things until you reach the final step, and you should find the
problem.


El jue., 18 jun. 2020 a las 20:46, albertolo ()
escribió:

> Hi,
>
> I developed an IOS app with Flash Builder several years ago, It has been
> working until now,  I download the Apache Flex sdk with ant and installed
> on
> Flash Builder, I built the ipa and try to installed it but it wont.
>
> I do not know if I am missing some configuration for IOS when building the
> sdk from ant.
>
> Does anyone have any suggestions?
>
> Thanks
> Alberto
>
>
>
> --
> Sent from: http://apache-flex-users.246.n4.nabble.com/
>


-- 
Carlos Rovira
http://about.me/carlosrovira


Not able to install ipa in ipad.

2020-06-18 Thread albertolo
Hi, 

I developed an IOS app with Flash Builder several years ago, It has been
working until now,  I download the Apache Flex sdk with ant and installed on
Flash Builder, I built the ipa and try to installed it but it wont.  

I do not know if I am missing some configuration for IOS when building the
sdk from ant. 

Does anyone have any suggestions? 

Thanks 
Alberto  



--
Sent from: http://apache-flex-users.246.n4.nabble.com/


Re: Multiple AIR executables in the same folder

2020-06-18 Thread Paul Stearns


I have an acceptable (mostly) work around. If I move the second application 
into a subfolder of the first I can easily run the second application. This 
however requires that I carry an extra ~36 MB of AIR executables with it.

Is there any way to tell a captive runtime executable where the AIR modules can 
be found?

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: "Paul Stearns" 
Sent: 6/18/20 8:32 AM
To: "users@flex.apache.org" 
Subject: Multiple AIR executables in the same folder
I would like to have multiple AIR executables (captive runtime) in the same 
folder. It appears that a captive runtime runs a standard executable which 
looks for a file .META-INF\AIR\application.xml which defines the actual swf 
file to run.

Will the executable accept as a parameter, the name of the "application.xml" 
file to use?

If so I could have two different files.

What I am trying to accomplish is to have one AIR application call another. and 
packaging them into the same folder would make my life easier.

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




Re: migrating to AIR when using url "POST" request

2020-06-18 Thread Paul Stearns
Alex:

My goal is to receive the file on the client and open Excel.

For the moment i did;

//navigateToURL(u, "_blank");
   var objDownloadFile:FileReference = new FileReference;
   objDownloadFile.download(u,strFileName + ".xlsx");

which will allow the user to download the file. It would be nice to give them 
the option to open it from the application.

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: Alex Harui 
Sent: 6/18/20 12:04 AM
To: "users@flex.apache.org" , "pa...@compuace.com" 

Subject: Re: migrating to AIR when using url "POST" request
At a higher-level, what is the user goal? Can you open Excel itself or does it 
have to be a browser window?

-Alex

On 6/17/20, 10:53 AM, "Paul Stearns"  wrote:

In many places in our applications we use the navigateToURL method to load 
another browser window with Excel Spreadsheets and other items we generate from 
code on our website. We invariably use "POST" instead of "GET" for various 
reasons, some of which cannot be converted to "GET."

Where can I find information on how to convert;

var u:URLRequest = new URLRequest(_RootDomain + urlExcelExport);
u.data = variables;
u.method = "POST";

navigateToURL(u, "_blank");

to something which will work from AIR? Perhaps URLloader?

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




Multiple AIR executables in the same folder

2020-06-18 Thread Paul Stearns
I would like to have multiple AIR executables (captive runtime) in the same 
folder. It appears that a captive runtime runs a standard executable which 
looks for a file .META-INF\AIR\application.xml which defines the actual swf 
file to run.

Will the executable accept as a parameter, the name of the "application.xml" 
file to use?

If so I could have two different files.

What I am trying to accomplish is to have one AIR application call another. and 
packaging them into the same folder would make my life easier.

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




Is there any TLS/SSL compatible library to create an HTTPS server locally in AIR?

2020-06-18 Thread Ramazan Ergüder Bekrek
Greetings I would like to ask this question because I want to directly from AIR 
to create local HTTPS server
and past to it cert,key files so that any request coming from outside is 
secured.

Up until now I could not find any implementation and the as3crypto lib was 
never updated.

Does someone implemented that feature and forgot to share it with the Flex 
community?

Best Regards.