Flex :: AS3 :: App That Makes / Exports SWFs

Jan 8, 2011

I want to make an app that allows the user to add their own content (pics, movie clips, songs) and then the app saves/exports the content as a SWF so that the users can use the exported swf wherever they like. Can this be done? What do I need to look into?

View 1 Replies


Similar Posts:


Actionscript 3 :: Flex - User Uploaded Audio Swfs Makes The Parent Application To Run At Higher Frame Rate

Feb 3, 2012

I had been developing one Flex application , in that users are allowed to upload there own swfs . The problem is, my application has a frame Rate of 11 , if the user tries to upload the swf with higher frame and audio with it( ie Framerate of 24 with AudioFLV ). this makes my application to run at the higher frame rate of that same user uploaded swf.

View 1 Replies

CS3 :: Library Exports Into A .swf?

Nov 20, 2010

Does everything even not used in a library exports into a .swf? If yes is there a easy way to delete not used stuff from library

View 2 Replies

Professional :: SWF Exports Freezing Completely?

Nov 20, 2010

I have a project I am working on, it has zero coding most all symbols are graphic because it seems the movie symbols don't export correctly. I export it to swf and it hands 100% of the time when it is at about 80% complete. I have gone back in and optimized tons of it, and it did not change a thing.

View 3 Replies

ActionScript 3.0 :: Drawing Program That Exports The SVG Coordinates To A .txt And Php?

Jan 27, 2009

I've created a drawing program that exports the SVG coordinates to a .txt and php loads the coordinates back in to flash. But is there a way to use the coordinates and have the drawing on the board?

Is there another way to do this instead of using the SVG coordinates?

View 2 Replies

Professional :: Flash - Exports The Movie Playback Component As Separate Swf?

Mar 7, 2010

I am importing a video (mp4 format) into Flash and selecting "Load external video with playback component". I am using one of the playback components that goes under the movieWhen I play the movie, everything looks like one, but when I export, the movie is one swf and the component is another swf file.

View 5 Replies

Flash :: Flex 4 - What Makes A GC Root

Apr 3, 2010

What are the rules for something to be a GC root in Flash? I'm using the Flash Builder 4 profiler, and I'm finding odd things are labeled as GC roots in the object reference details (e.g., an Image control that is no longer in the display list, nor static).

View 2 Replies

Flash :: Adding Components To Flex 4 App Makes Screen Go Blank?

Aug 2, 2010

I've been adding some components to a Flex 4 app (it was originally Flex 3 but has been ported). Some of these components make the app go blank when it loads. I'm not even able to see the loading progress bar. Just white.

For example, adding

<s:controlBarContent>
<s:Button label="Admin" />
</s:controlBarContent>

To the root tag causes this. I also was able to make it happen when I tried setting a custom components skin from my style sheet instead of from the skinClass property.

View 1 Replies

Flex :: Does The ScaleX ScaleY Makes The Width And Height Change

Aug 31, 2011

Am working in flex 4 the sample mxml is

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"

[code]....

on the perpendicular clicks it shows as like the second click. does the scaleX scaleY affects the width height?

View 2 Replies

Java :: Flex Compiler - Mxmlc - Makes 64bits JVM Crash (dcpr.dll)

Aug 12, 2010

I have a web application that converts SVG files into swf ones. In order to do so, there are 3 steps:

1 - Running through SVG Files in a folder

[Code]...

View 2 Replies

Flex :: Printing - Printed Data Grid Makes Huge Files?

Oct 29, 2010

I've an AIR app which prints a couple of DataGrids with approximately 3 pages worth of data each. I get great-looking printouts, but the printing is slow - I noticed that printing these 6 pages + a title page and a page of lightweight images was sent to the printer in a file of almost 50 MB (on Windows). Is this a normal size for a printed DataGrid? Is there anything I can do to make it smaller and faster?

View 1 Replies

WYSIWYG Text Editor For Hyper-links / Text Formatting That Exports To Swf?

Jun 12, 2009

Anyone know of a good program such as:WYSIWYG text editor for hyperlinks and text formatting that exports to swf.

View 2 Replies

ActionScript 2.0 :: CS3 Buttons In Loaded Swfs Loading Other External Swfs Into The Main Timeline?

Sep 11, 2009

I have a main fla file which loads an external swf into an empty movieclip on the main timeline which works fine but I want a button in the external swf to load another external swf into another empty movie clip on the main timeline.eg. start.swf loads UKEIAMap.swf into (empty movie clip within start.swf) MapLoader_mc then a button havant_b within UKEIAMap.swf needs to load HavantProjectSheet.swf into (empty movie clip within start.swf) ProjectSheetLoader_mc without unloading UKEIAMap.swf

View 3 Replies

ActionScript 3.0 :: External Swfs Load - Remove The Swfs And Sound After A New Button Is Clicked

Nov 13, 2010

I am loading eight external swfs by way of eight buttons with actionscript to remove the swfs and sound after a new button is clicked. This works fine except that as soon as you get to the frame where the actionscript is all the swfs load at one time on top of each other. I don't want any to load until the button is clicked for the right one. MouseEvent listener works but only after all the swfs have loaded. How do I get the swfs to load only when the buttons are clicked. I can't figure out what I am doing wrong.

[Code]...

View 5 Replies

ActionScript 2.0 :: Access Local Swfs Using Remote Swfs?

Jan 5, 2010

Is it possible to access local swfs using a remote swf

View 1 Replies

Flex :: Share Code Between Swfs?

Sep 24, 2009

Lets say I have two swfs A and B, and at runtime, swf A loads swf B, and I wish to share code between them, to minimize file size and download times.

If swf B has some code (say. com.blah.HelloWorld), I tell the compiler to have swf B's source in swf A's classpath, but only do a compile-time link and not actually compile com.blah.HelloWorld into swf A

This works, and I have tried it, using a the -includes and -externs compiler options.

However, My problem is that I wish to do this the other way. i.e. swf A and B (and potentially swf C) all need com.blah.HelloWorld, but I want com.blah.HelloWorld to be compiled into just swf A, have it as an external reference in swf B ( and potentially C as well.)

I tried doing this using the externs and includes, but I get ReferenceErrors when I do this.

I want to do this without a having a separate rsl, so I can reduce the number of http requests.

View 3 Replies

Flex :: Sharing Code Between Swfs?

Jun 4, 2011

Lets say I have two swfs A and B, and at runtime, swf A loads swf B, and I wish to share code between them, to minimize file size and download times.If swf B has some code (say. com.blah.HelloWorld), I tell the compiler to have swf B's source in swf A's classpath, but only do a compile-time link and not actually compile com.blah.HelloWorld into swfThis works, and I have tried it, using a the -includes and -externs compiler options.However, My problem is that I wish to do this the other way. i.e. swf A and B (and potentially swf C) all need com.blah.HelloWorld, but I want com.blah.HelloWorld to be compiled into just swf A, have it as an external reference in swf B ( and potentially C as well.)I tried doing this using the externs and includes, but I get ReferenceErrors when I do this.

View 1 Replies

Actionscript 3 :: Flex SDK 3.5 Builds Bigger Swfs?

Mar 5, 2010

I have an application which is almost entirely in actionscript. When I build it using Flex SDK 3.5 its size is roughly 378 KB, While Flex SDK 3.0 outputs a swf with roughly 355 KB. What could the reason be?

View 1 Replies

Actionscript 2.0 :: Preload Swfs While Other Swfs Are Playing?

Sep 8, 2009

I am trying to find a way to preload swfs while other swfs are playing, i've found several scripts and tutorials, but none of them seem to work for my needs.

View 1 Replies

ActionScript 2.0 :: Loading Other Swfs From Loaded Swfs?

Aug 2, 2006

Flash - 8 : Above is an example of what I would like to do/have done. I've gotten as far as loading the "loaded.swf" into the "start.swf" but my problem is I'd love to use that little loading action I made earlier without copying and pasting into the new movie the same actions for a different link. So, how do I load "loaded2.swf" into "loaded.swf" via the link in "loaded.swf"?

View 1 Replies

Flex :: Application Interaction With Loaded Flash SWFs

Dec 14, 2009

I am creating a Flex application with a component that displays various dynamically loaded SWFs, one at a time (kind of like a kiosk). These loaded SWFs are created in Flash IDE, not Flex. They will not be created by us (we will provide a .fla template but that's it), so I am loading them into a separate SecurityDomain.

My Questions:

I want the application to be able to call methods inside the loaded SWF. To do this, would I just call Security.allowDomain("domain original app was loaded from") in the startup process for the loaded SWF? I want the loaded SWF to be able to throw events that are caught by the application. Can I accomplish this through the SWFLoader.swfBridge property? I am defining an interface for the methods inside the loaded SWF. But, I don't want to leave the implementation up to the customer. Instead, I want to provide another SWF that contains the interface implementation and have it be a constraint that the customer includes it in their SWF. I am not very familiar with the Flash authoring environment, how would it work so that the interface implementation SWF exposes its methods in such a way to be accessible to Flex? Is there a way to sign the SWF so that the Flex application knows that it is dealing with the original, not a spoof? How would the Flex code pass in arguments, since it is across SecurityDomain boundary -- is there marshalling involved (say if I want to pass in a Dictionary or some kind of object graph)? The Flex application may load hundreds of these smaller other SWFs during its lifetime. How do I make sure it doesn't keep using up more memory? I plan on using SWFLoader.unloadAndStop() and clearing all references in the Flex object that refers to it. Is this enough? Will the AppDomain for the loaded SWF be torn down automatically so that the class definitions are no longer in memory?

View 2 Replies

Flex :: Keep A Loaded SWFs Stage Property Localized To That Swf?

May 24, 2010

Does anyone know of a workaround for loading an AS3 swf into an existing AIR/Flex (Flex 3) application and having the loaded SWF retain its own reference to its stage (not the loader's stage)?

I've tried the loadForCompatibility property on SWFLoader, but that isn't giving me the behavior I'm wanting. The loaded swf still has the main AIR app's stage set.

View 1 Replies

CSS :: Flex - How To Compile Multiple Files Into Individual SWFs

Jun 18, 2010

Right now I am using an apply task inside of an antrun execution.

<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.4</version>
<executions><execution>
<id>compile-default-theme-css</id>
[Code] .....

How do I do this in pure maven? Without the antrun plugin?

View 1 Replies

ActionScript 3.0 :: Flex With Sizes Of Imported Masked Swfs

Apr 7, 2010

I'm importing/loading external swfs into a program, but when I get or set the width/height- it using the entire, unmasked image, and not what is visible.That makes sense, but is there anyway to either discard the masked content(crop), or only get/set the value of size of the visible image?It could be any swf, and I can't control the swf's coming in.I am importing them using flex's mx.controls.image, but have also tried a normal as3 loader with the same problem.

View 2 Replies

Flex :: Load The Swfs Through Http So That The Client Browser Can Cache Them?

Dec 25, 2009

The client-side application is a Flex application and communicate with server-side java application using blazeds.As you know,most browsers don't cache SWFs loaded over https,but i want load the swfs through http so that the client brower can cache them and communicate with the server-side over https ?

View 2 Replies

ActionScript 3.0 :: [Flex] Workflow - Dynamically Choose Swfs / Swcs

Apr 16, 2010

I'm in the process of planning a banner project, where I want to being able to output all banner formats (about 10+ of them) from the same flex project. They will all contain pretty much the same content but with some variation, and because of the size limit I want to load only the necessary assets for each format.

I wonder if there's a way to dynamically load different assets (in form of swf or swc) depending on some setting? I can of course load different swf:s into the main swf but I want only one swf per format. How about launch configurations, is there a way to choose different swc:s there?

View 1 Replies

Flex :: Auto-mate Build Of Multiple Swfs From Flash Builder 4?

Jun 10, 2010

I'm working on a project that has a Main.fla and a Preload.fla. I am doing all the coding in Flash Builder 4. Each time I want to test I have to go to Flash CS5, publish Main.swf and then run Preload.swf. Is there a way to automate this process so I can just press the "Run Main" button inside Flash Builder 4 and all that is done automatically?

View 1 Replies

ActionScript 3.0 :: Flex 1 Swf Loader, Multiple Swfs Importing From Shared Library?

Dec 15, 2009

I'm using Flex builder 3 for my main application (web-based), and I need to load multiple swf files built in flash cs4 (AS3) at different times. The flash swfs import assets from a separate flash swf used as a shared library. I'm using 1 swf loader in flex to keep 1 flash swf loaded at a time.Loading the first swf works fine, but loading subsequent swfs generates an error in importing from the shared library swf.

Here's an example of an error:

"ReferenceError: Error #1065: Variable sharedApps is not defined."

View 3 Replies

ActionScript 2.0 :: Transitions Between External SWFs - Looks Crap As The Size Of External SWFs Grow?

Sep 2, 2006

[URL]regarding this tutorial I started my site [URL] to get some trasition effects but im getting somewhat different since the external SWFs take time to load. isn't it better to create "intro and outro" on the same time line instead of loading external SWFs bcos once the movie loaded as a whole will lead to smooth and contineous transitions.

View 1 Replies

Bug Makes Scripting Impossible?

May 6, 2009

This is sooo anoying! I can't type anything properly! The longer a line gets, the further the blinking line thing intersects with what you typed, and punctuation obstructs the text

View 3 Replies







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