Hi,
I've multiple videos stored as MovieClip objects and would like to merge them into a single MovieClip video object in order to play all of them in sequence (so that a user thinks it's a single video).
Thanks a lot!
EDIT: I want to do it programmatically in ActionScript inside the Flash Player.
...
I'm scaling onstage MovieClips via AS properties "scaleX" or "scaleY", which kills any kind of animation the clips have within their container MovieClip, be it Classic or Motion Tweens. When I don't scale the MovieClips, they animate fine. I'm able to tell the clips to "gotoAndStop" on their own internal frames, and that doesn't affect t...
I'm trying to setup VIM for editing Actionscript 3 for some upcoming Flash projects. I dislike working in an IDE and prefer VIM. Right now, I know that I want:
Omnicomplete (with tab completion)
Syntax highlighting (there is an actionscript.vim file on vim.org but the highlighting is not as good as other syntax files)
AS3 compiler acce...
Does anyone have suggestions for a good method to manage the display list in an actionscript 3 project? I'm building an application at the moment and keeping track of all the modules which need to be displayed and reordering them has become unwieldy.
I have loaded swfs and instantiated classes that also load in swfs, images and video.....
Does flash actionscript allow you to contact an arbitrary server on a specific port?
I would like to stream some images live from a server using a proprietary protocol.
Or does the browser disallow this for security reasons?
...
Is it possible to control a Flash movie from JS when you have no control over the source?
I have decompiled the movie to see its inner workings, but I know nothing about Flash, so I'm mostly in the dark.
I found this resource, Interaction with JavaScript, but it's not working for me (probably because I don't know what message to send t...
Hello there,
I have been looking over the internet for a while about this, but it doesn't seem like there is any information available specifically related to captcah and flash.
My purpose is to create an image up-loader on flash, and implement "recaptcha" on it, so the upload is controlled.
I know that some people will say, "well you...
Hi,
How can I create and control Captivate Playback Skin in Flash with my custom layout and script?
...
If you have an flv of 20mb, does Flash fully load it before starting to play it? And if not, what's the difference then with streaming video?
...
I need to call function in flash using javascript. For this purpose I use ExternalInterface class(example described in the end of http://help.adobe.com/ru%5FRU/AS3LCR/Flash%5F10.0/flash/external/ExternalInterface.html). But it does not work for me.
swf declared in html page as:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-4445535400...
I am developing a client in Flash and using http req/resp to communicate with the server. For a while the session works fine and then the connection is terminated by the server. I did a wireshark sniff at the server and the last message which it sends is a RST packet. Also it happens only when I'm using IE and the server and client are i...
I am using swfin to embed a swf object (video player) and it loads fine in all browsers, but in firefox it won't "start". I have to right click on the movie area and "start" is unchecked so I click on "start" and it will start just fine. Yet, in chrome and IE (haven't moved to a mac for testing yet) it fires up and starts just as I exp...
Hi.
I have a Main.fla (controlled by Main.as) that has a child named Slide (a Movieclip controlled by another class, Slide.as).
Sometimes, my Slide object have to call the method "nextSlide" on his father, Main object. To do this I tried "this.parent.nextSlide()", but I got this error:
1061: Call to a possibly undefined method nextSli...
Hi,
in my mxml file I have images declared like this:
<mx:Image x="0" y="0" source="assets/bigpicture.png" id="picture1"/>
and at some event I do:
picture1.source = "assets/bigpicture2.png";
However this results in flex removing the picture, and when it has loaded it will show it again.
How can I make the mx:image make so that it...
Im doing an app that runs both in the web and on AIR, to avoid copying code arround, I figured I should do 3 kinds of proyects on flex builder: Library, Web and AIR proyects.
So all my code is on the Library proyect.
I have accessData.as that extends EventDispatcher to fetch web services and return them as an event, I plan on using thi...
I have a site the runs in flash. IE7 will not reload the vars in flash, the vars set by flash in the swf. when the page is reloaded. The thing that bugs me out is refreshing the page actually refreshed the page. The flash started how it was supposed to except the variables in flash didn't reset.
This only happens when the "Temporary Int...
I am trying to dynamically tween some movieclips in my SWF but have problems with their dynamically created names. Here is the code
function slidePhoto(e:TimerEvent):void {
i = "i3";
movieClip = i as Object;
Tweener.addTween(movieClip,{x:0, y:0, transition:"easeInOutQuint", time:1, onComplete:waitMe, onCompleteParams:[4000, ...
Hi,
We use sifr3 throughout our website and it tends to crash more often than what I have seen on other sites with comparable usage.
Our URL is www.liquidcomma.com and if any one has any suggestions as to why this might be happening they would be greatly appreciated.
Thank you
...
Hi,
I built a class that parses JSON data, stores it in an array, and now I want to return that data so that it can be stores in an array in my root AS file. I'm eventually trying to pass the returned array to another class. My class looks like this:
package com.src
{
import flash.display.Sprite;
import flash.net.URLRequest;
import ...
I'm working on reducing the memory requirements of my AS3 app. I understand that once there are no remaining references to an object, it is flagged as being a candidate for garbage collection.
Is it even worth it to try to remove references to Loaders that are no longer actively in use? My first thought is that it is not worth it.
He...