Actionscript 3 :: What Files Are Required To Deploy A Flex Application Swf

Jan 27, 2012

I haven't written anything in Flex in a couple years and much has changed since. I used Flash Builder 4.6 to build my app now I want to deploy it to a ASP.NET application. What files other than the swf do I need to deploy to ensure everything works for my users? I see in the bin-debug folder of the project it spits out a bunch of swfs (framework, rpx, playerProductInstall, spark, etc) and the swfobject.js. Do I need all these files deployed to the same location as my swf?

View 1 Replies


Similar Posts:


Java :: Deploy A Flex+blazeds Application?

Mar 23, 2010

I developed an application using flex+java+blazeds with tomcat that provide flex enviroment.I want to deploy my application using tomcat but I can't, how can I deploy my app?

View 2 Replies

Actionscript 3 :: Deploy Flex Application On The Web Using MS Azure

Dec 14, 2010

I plan to deploy my Flex Application on the web using MS Azure. Has anyone done this? provide pointers, reference links etc?

View 2 Replies

Flex :: Is Flexunit Is Really Required For Application

Oct 3, 2011

I have a doubt on Flex unit. Unit test cases are really required for flex application for displaying data.

View 1 Replies

ActionScript 3.0 :: Loading Required XML Files?

Sep 18, 2010

If I need to load XML files to gather data about what to do, does that mean my entire application is wrapped in the on complete loader handlers?

View 2 Replies

Flex :: Performance - Printing From AIR/Flex Application Causes Large Files Being Sent To Printer?

Oct 25, 2010

I am working on an Adobe AIR (2.0) application that contains a feature to allow users to print documents (such as salary slips). Those documents are originally in PDF format. Due to circumstances we cannot directly display those PDFs in the AIR application (for example using flash.html.HTMLLoader). Therefore we convert the PDFs to SWFs (using the pdf2swf tool, see The SWFs are loaded into the application using a mx.controls.SWFLoader, like so:

<mx:SWFLoader
id="salarySlipImage"
loaderContext="{someLoaderContext}"

[code].....

View 2 Replies

Flex :: How To Deploy Project Only For Windows PC Not For Mac

May 10, 2010

I want to deploy my project only for windows os not for Mac pc. The application is build up with flex. How can I deploy this only for window pc?

View 2 Replies

Flex :: Osx - Deploy App To MAMP Server

Jan 13, 2011

I created a Flex app in a Windows XP environment using Flex Builder 3.

From the menubar, I selected "Project->Export Build Release" and moved the files from /bin-release onto my local server (WAMP).

I have a PHP file that connects to a db and delivers some data via XML

Everything works right on my computer. Then I tried to move the app to a mac.

I installed MAMP with the default settings (localhost:8888)

I can connect to the PHP file and get the XML by hitting the appropriate URL on @ http://localhost:8888/...

Likewise, I can connect to the html template and the swf executes, but it doesn't seem to be getting the data back, and I don't get any debug info popping up.

Are there security settings enabled by default in Mac OS that would not allow a flex app to request data from a remote resource (i.e. http://localhost:8888/ in this case)?

View 2 Replies

Flex :: Builder - Deploy Flex App Using Different Web Service Urls?

Sep 28, 2011

Is there some sort of configuration settings in FlashBuilder 4.5 where you can easily switch between webservice urls? Right now I have to delete and recreate the web service every time I switch from local to production and vice versa.

View 2 Replies

Flex :: Deploy A Project In A Remote Webserver

Nov 25, 2011

I have coded my Flex / PHP project in a local machine. I have used AMFphp for remoting and I got to deploy and test this application in a remote server. How could I do this using Flashbuilder 4.5?

View 1 Replies

Flex :: Jsp - Caching Of Swf Files In Application

Aug 21, 2009

I've created a Flex application and the size of the swf file is ~900KB. My trouble is that the files are not getting cached. When I launch the application for the second time, the swf file is fetched again from the server. I'm including the swf file in a jsp, and I'm not modifying any HTTP Caching Headers. I assumed that the swf files will be cached automatically. Isn't it so? How do I forcefully cache the file? Do I need to provide anything in the MXML code or just a response.setHeader("Cache-Control","max-age=100"); is enough? Can anything be done from the flex side itself?

View 2 Replies

HTML :: How To Deploy SWF File Created Using Adobe Flex

Oct 16, 2009

I have a SWF file I created using Adobe Flex and I cannot seem to properly embed it inside an HTML page. If I take another SWF file and use it instead, it works all the time. My SWF file is pretty big (1 MB) while the other one is tiny (25 KB). However, I can wait 5-10 minutes and the server connection is super fast and it still will never load. Is there something I need to do to the SWF to have it start up properly? My SWF almost never runs.

View 1 Replies

Flex :: Image Scale Stopped Working After Deploy To Server?

Nov 18, 2009

I have some code to scale an image's width according to its height after the image is being loaded. It works fine on my development PC if I point to the wrapper html using local file system path. However, after I deploy the web application to JBoss AS 5.1, it stopped working - it always sets the image width to 0, causing it to disappear.

Code for scale image side:

private function scaleImage():void {
img.width = img.contentWidth;
}
<mx:Image id="img" updateComplete="callLater(scaleImage)" height="100%" />

View 1 Replies

Android :: Flex 4.5 Mobile - How To Deploy And Access Images / Data

Nov 8, 2011

I am working on a Flex 4.5 app tageting Android. In different views the app needs to load and display images which I have deployed as part of the app. Where do I put these images? And how do I load them? I am familiar with @Embed for images, but this doesn't seem to be the correct approach in this case. I also know how to load from the file system, but I really don't know how to include my images as part of the app for distribution.

View 1 Replies

Flex :: PenWithDefaultApplication Fails On Files In Application Folder

Oct 29, 2010

I'll ONLY recieve an "Error #3000: Illegal path name" if I try to open a file which is placed inside the app-folder of the air. If the file is somewhere else outside of the app-folder it works.

private var file:File = File.documentsDirectory;
public function download():void{
var pdfFilter:FileFilter = new FileFilter("PDF Files", "*.pdf");

[Code]....

When i try to get the same file and copy it to another place it's doing fine.

Why that? Something special to do if i wanna open files which are inside the appfolder? It also don't work in debug mode - bin-debug.

View 1 Replies

Flex :: Flash - Play SWF Files Inside Application?

Jan 5, 2011

Hey the think is, I need to play some swf file inside my flex 4 app, sometimes this swf file can be a Video, or just a object animated, I have a placeholder in my app which I want to play this swf file, how can I do this?

View 2 Replies

Flex :: AIR: Load Local Xml Files Outside The Application Folder?

Apr 22, 2011

I'm building an AIR application which will be used to edit slideshows for another app (also built by me, but not in AIR). The slideshows and other data are defined in several xml files which are in the other application's program folder. When trying to load these into my AIR app I get the following error:

fault(mx.messaging.messages::ErrorMessage)#0
body = ""
clientId = "DirectHTTPChannel0"

[code].....

View 1 Replies

Actionscript :: LoadMovieNum In Files Loaded Into An Air-based / Flex Application?

Aug 24, 2011

I am working with a very large number of legacy SWFs written in AS1 and AS2. These SWFs use loadMovieNum extensively.

I am trying to integrate these into a new Air-based app (written in either AS3 or Flex). However, loadMovieNum doesn't seem to work within the Air app.

For example, an AS2 SWF (file1.swf) may try to load another AS2 SWF using:

[Code]...

View 2 Replies

ActionScript 3.0 :: Delete Temp Files With Refreshing Flex Application?

Apr 12, 2011

I am using many external swf file in my flex application,but when i use the files which are in same name its not getting refreshing properly, so i need to delete my temp file without refreshing the application.

View 0 Replies

Actionscript 3 :: Reading Tiff Files In Adobe Flex Based Application

Jan 27, 2010

reading TIFF files at runtime in Flex/AS3 based applications?

View 2 Replies

Flex :: Build - Including Configuration Files While Compiling A Application With MXMLC

May 17, 2010

I'm using:

- Flex SDK 3.5.0
- Parsley 2.2.2.
- Flash Builder 4

Down in my src folder (which is configured as part of the source path in the Flash Builder), I have a logging.xml which I configure via Parsley:

[Code]....

View 1 Replies

Java :: Avoid Flex Application Store Temporary Internet Files?

Jan 12, 2012

I've programmed a Java application using BlazeDS and Flex, but i think the problem also occurs in any ajax style application. It's a monitoring application, so requests are made regularly to the server. The browser has stored a large amount of temporary internet files on the client pc even getting it saturated. How I can avoid this? I have seen some articles that say to include variables in the html header as:

[Code]...

View 1 Replies

Xml :: Get Required Tag Form XML And Required Children Tag?

Sep 13, 2011

I have a XML schema.I want to read only table tag and its geometery tag using action script3 code.Any Idea.

<table name="TableBase 1" id="TableBase3010" overflow="false" direction="lr-tb" suppress-empty-lines="false">
<style-ref name="default"/>
<geometry size="absolute" position="absolute">
<location left="117" top="102"/>

[code]....

View 2 Replies

Java :: Channel.connect.failed Error When Deploy Flex Project To Linux Redhat Server?

Jun 23, 2011

when i do this locally on tomcat server on local development machine it works fine when i brought it over to linux im getting this error.i dont know what to do anymore it should be straight forward but i'm having no luck. i do have a web.xml and i see a broker for my remote access so i just dont know what it could possibly be

View 1 Replies

Flash :: Adding New Files To Application Storage Directory With AIR Application Installer

Feb 4, 2011

I have an AIR app that gets bundled with XML files that the app needs. These get put into the APP Storage Directory, of course. Works great. But when I install a new version ( which includes new XML files) , the new files don't get added or overwrite the ones from the previous version. It seems that if that directory is there from a previous install, the installer will ignore the part where it moves included files.

View 1 Replies

Flex :: Older Version Of Flex SDK Really Required?

Sep 23, 2011

I am configuring one already done project on my system which uses old flex sdk. following is my POM [URL]...I have latest flex SDK the version for this flex is "Version 4.5.1 build 21328". I am getting compile time error. Does a flex Mojo is dependent on the version of flex SDK ? why even changing the above POM to following is not helping me resolve the error?[URL]..

View 1 Replies

Actionscript 3 :: Flex Embed Png, Meta Data Required?

Jul 19, 2010

this is a part of my code

[Embed(source='dmr/images/icones/icnPresenceInline.png')];
[Bindable]
private var presentAuBureau:Class;

View 3 Replies

Flex :: 3 - Whitespace Required Before Attribute Error In Code

Apr 18, 2011

In my flex code I am getting error whitespace required before attribute what may be problem below is code

[Code]...

Even on this code too I am getting error whitespace required before attribute below is code

[Code]...

View 2 Replies

Flex :: Create A Copy Of An Object Whose Constructor Has Required Parameters

Aug 26, 2011

When using ObjectUtil.copy() on my object, I get the following error

Argument count mismatch on foo.bar::MyObject(). Expected 1, got 0.

MyObject's constructor takes in one parameter. Is there a way for me to clone, or copy it?

View 2 Replies

Flex :: Builder Cannot Locate The Required Version Of Flash Player

Mar 3, 2012

I got an error when i tried to run the application as Flex Builder cannot locate the require version of flash player and saying you might need to install flash player 9.

I am using Flex Builder 3 with SDK 3.2 and having latest flash player of version 11.1.162

Even having latest version of flash player why i could not able to run the application?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved