ActionScript 3.0 :: Trigger Swf From Main Swf?
Jul 22, 2010
I have a longtail flash player setup to a rtmp server to stream live events using adobe flash encoder 3. In gerneral it works fine now the problem is content i have a second swf file within the same page that was a powerpoint presentation that is now converted to a swf.
What i need to do is somehow send a command from the longtail video player to the slide show to trigger a slide push. So lets say we are live and streaming away i would need to send some sort of command that will tell the second swf to change slides so that everything is in sync.
Currenty we are using Windows media enncoder and we just send out a command to a iframe within the encoder which changes the slide, the slides are JPG so its easy to do. In the testing stage we have a standalone slide controller that is linked to the iframe and we can push a slide from the contoller which push the slide on the iframe. This method works if i remove wmp and put in a flash place since it not going through a video stream, but i need it to go through the video stream and then tell either a swf to change a slide or an ifreame to change a slide.
Reason it has to go through the video stream is so we can record the video and the commands so they can be setup as archive, so video and slide will cue at the right areas. Just like how you can send out commands from within windows media encoder and archive them and they auto trigger once he video plays.
Well i just need a way that will sync video with slides i don't really care how its done just that its done. There has to be a way to record the slide push commands so they can be used again to play the video and so it advances the slides.
View 1 Replies
Similar Posts:
Jan 6, 2010
I do have xml file embed in the fla. I want to click on an image and change the frame number.I want to do simple gotoAndPlay(2) function.I bought so many versions from websites ,not single of them has an example or written code for tthis in AS3.
View 0 Replies
Oct 29, 2011
I've imported my animations into a single projector using loadmovie.When the external animations finish playing how do i get the main projector to recognise that the animation has finished and move onto the next scene ?
View 1 Replies
Nov 9, 2009
Im making different quizes and small games. I always use a Document Class when coding, and usually i call this Main.as. Usually the Main.as contains pointers to different classes like:
private var _menu:Menu;
private var _messageBoard:MessageBoard;
etc..
My question/scenario is this: In for example _menu, i have a button that has an event listener on it (example: "Start" button). When this event is triggered (ie user hits "Start") I want to trigger a function in Main.as. How is the most elegant way of doing it? The solution i use now, is that i send a reference pointer of Main.as to each new class i make. ie in Main I would do something like this:
[Code]....
View 3 Replies
May 31, 2009
I'm doing quite a complicated game with a lot of code but one thing I can't quite figure out is how to trigger a function on the main stage from a dynamically added object.I've tried using custom events, but it doesn't work and doesn't throw any errors either.Here's the code for the CustomEvent class:
Code:
package
{
import flash.events.Event;[code]....
Here's the code part in the dynamically added child(CustomEvent is imported):
Code:
this.parent.dispatchEvent(new CustomEvent(null));
and here's the main timeline part of the code:
Code:
stage.addEventListener(CustomEvent.CUSTOM, checkMoney);
//more code here
function checkMoney(e:CustomEvent)[code].....
All of the above seems to work, because it doesn't throw an error, but it doesn't trace money when the event is dispatched.Before you ask, the event IS being dispatched or at least the if method it's in is entered.Any other method to tell the stage it's time to run the function is welcome also
View 6 Replies
Apr 22, 2007
I am trying to get a nav button in one movie (main_nav.swf) to target a my main movie (index.swf) and load a sub nav movie (metals_subnav_infinite.swf) into it. The sub nav movie will do a similar task - loading a portfolio swf into main movie (index.swf). Here is the file breakdown of my working files:index.swf - main final movie which loads "main_nav_infinite3.swf" on startmain_nav_infinite3.swf - loads main nav "main_nav.swf" and scrolls it infinitely (infinite menu)main_nav.swf - main nav with buttons that trigger sub nav "metals_subnav_infinite.swf" to load into index.swfmetals_subnav_infinite.swf - loads sub nav "metals_subnav.swf" and scrolls it infinitelymetals_subnav.swf - sub nav with buttons that trigger "folio.swf" (have not created this file yet!) to load into "index.swf"The script I was focusing on is in main_nav.fla and it is:
metals_mc_bn.onRelease = function() {
reActivateMenu();
this.gotoAndStop(3);
[code].....
View 2 Replies
Aug 23, 2005
I have an application done in flash- on the main Scene Level, everything has only one frame but I have MCs and the like that are triggered by actionscript.There are quite a few nested functions on the main actions layer as well as an "onEnterFrame" function that reloads XML data in the background, etc... but that is not the problem.
The problem is, that at one point, I am calling a few MCs that kind of close up a section of the page like blinds- and then I want a text to appear ontop of that now closed area... but if I just write...
Code:
_root.TimelineFader.BlendeT1.gotoAndPlay(2);
_root.TimelineFader.BlendeT2.gotoAndPlay(2);
_root.TextAboveTimeline.theMessage_txt._visible = true;
...it all happens simultaneously, of course.I guess I could check for "BlendeT1"'s (or T2's) current frame (since it's an MC)... but how do I wait while that MC runs / until it reached a certain frame? How can I keep the rest of the actionscript in the main function from continuing?
View 5 Replies
Jan 17, 2012
I Have a flashmovie thats almost done and will soon hit the internet, but I want to add some animations into the website it�s two gears that I�m about to put at the bottom of the page and when a button releases in the main flashmovie the two bottom gears will turn a few frames and just stand still.These three movies are all separate (main movie, first gear and second gear).
It's a homepage designed in HTML and flash that has this "main flashmovie" in the middle of the screen, the size is about 1500(width)X800(height). And the gears is about 800wX200h placed at the left and right side bottom of the page. Dont worry the site is easy to apply to any screen resolution.I have been looking everywhere for any soul out there who suffering from the same problem but no success. Is it possible to script a button in the main movie to launch two separate movies in their own contents?
View 2 Replies
Jun 14, 2010
I added a website preloader in a separate scene to the main frame of my website and scripted it to go to and Play the main scene or frame of the website when finished loading. I then put a command in the first frame of the main scene for the movie to stop (); at that point. The problem is that now the buttons on the main page don't respond to any behaviour commands to go to and stop at other frames in the main scene. I'm not sure if this is a conflict between the stop(); command in the main scene and the button behaviour command to go to and stop at another frame or an error with the way I'm identifying the scene and frame.
View 5 Replies
Oct 16, 2009
I have 3 functions in my main document class that I want to execute when the main timeline reaches a particular frame number. how do I do that?
see the code and comments
public function mainClass()
{
//stage declaraction
stage.align = StageAlign.TOP_LEFT;
[Code]....
View 5 Replies
Oct 8, 2010
If I have a main.fla and main.as (where I written a Main class).
How can I access a public function (main.as) from main.fla?
View 4 Replies
Sep 24, 2004
I have a background swf that has been coded so that it scales with the browser. I want to load the main swf file (main.swf) on top of this bg so that it is always centred on the page.
View 2 Replies
Jun 17, 2009
I have a mc which moves right or left depending on my mouse movement.the code is
onClipEvent(enterFrame) {
_x+= ((_root._xmouse/1.000001)*-1-_x)/120;
}
When the mc reaches certain x positions lets say x<-1000 ,another mc (which i placed inside this first mc)starts to play and stops or fades out when reaches to x<-2000 The best example is www.3nokta.net.You will understand what i mean I just need the mclips play or stop depending on the first mc position.
View 1 Replies
Aug 17, 2010
I have some videos that I want to show on my website through selecting from a flash component.If I program them in one flash component, I'm sure it will lag a lot.I have an html site and I want to trigger videos from the flash component.
View 4 Replies
Mar 26, 2011
I'm trying to get initKeys to trigger. 'kiosk' is my base class.I'm getting error 1017: The definition of base class kiosk was not found.
project_folder/me/radbourne/kiosk.as
Code:
package me.radbourne {
import org.actionscript.*;
public class kiosk extends MovieClip {
[code]...
View 1 Replies
Jul 23, 2009
i have a mc of a fish swimming in the water. i have another mc of a fish jumping out of water. i want to click on fish in water and have it trigger the fish jump mcin AS3. can't get it to work. should they both be in same MC to begin with, or place them separately in main timeline.
View 1 Replies
Nov 29, 2010
I need to trigger 4 different functions when I move the mouse poiter over a movieclip; do I need to use 4 listeners or can I use only one to call all the 4 functions?
Now I do this
movieclip.addEventListener(MouseEvent.MOUSE.OVER, function1);
movieclip.addEventListener(MouseEvent.MOUSE.OVER, function2);
movieclip.addEventListener(MouseEvent.MOUSE.OVER, function3);
movieclip.addEventListener(MouseEvent.MOUSE.OVER, function4);
View 3 Replies
Apr 21, 2009
A website I am developing will have a small animation (say 5-10 seconds minor effect) on the logo at the top of the screen. The logo looks static but when you hover your mouse over it, the animation is played. (This is achieved using the 'button' symbol as the animation within flash).
The client now wants the website's plain text navigation, when hovered over, to trigger the animation to play again. I am a very BASIC user as flash but I believe it is possible to send a javascript call to the swf (i.e. each navigation link will include a "onmouseover=' restartFlashAnimation()'"where I need to define that js function) ...and the swf will recognise the function call and then replay the animation.
View 1 Replies
Nov 18, 2009
How to trigger thickbox from onRelease() event in flash.
View 1 Replies
Jan 10, 2004
Below is the code which is used to trigger the transitions. For reference 'home' is movieclip and 'homestate' is a button in the movieclip.
home.homestate.onRelease=function(){
if(_root.section!="home.swf"){
_root.section="home.swf";[code]....
I try incorporating these actions into the first script but I get an error.
home.homestate.onRelease=function(){
if(_root.section!="home.swf"){
_root.section="home.swf";[code]...
View 5 Replies
Feb 12, 2003
i have a function that loads a text file into a textbox
i call the function from a series of menu buttons (about us, clients etc...)
both the function and the textbox are on the main time line (the textbox is in an mc instance named "text_mc"
the function triggers when i click any button - but won't trigger again after that
button code:
on(press){
loadText("services.txt");
}
[Code]....
** if i put both bits of code behind each button it works fine (but i obviously don't want to do that)
View 1 Replies
Jun 6, 2007
I am working with a short vocal track and when the audio ends I would like a replay button to appear. The codes should work fine, no errors appear. Trace displays nothing...Here is some of the code:
var clip = "testClip.mp3";
//Create the Sound & SoundChannel Objs
var soundReq:URLRequest = new URLRequest(clip);
[code].....
View 5 Replies
Jan 7, 2011
In stage Number of MovieClips is there. and MovieClips inside some functions is there .iam giveing dynamic property to MovieClips same as function name.because iam click the MovieClip call the function.
mc.functionName="dosome()"
mc.addEventListener(MouseEvent.CLICK,call_inside_function)
function callinsidefunction(event:MouseEvent){
/// event.target.functionName
[code]....
View 3 Replies
Dec 23, 2004
I want to load six seperate .swf's into the main movie while the main movie loads too. So in simpler words, i want to be able to load all of the swf's the same time i am loading the main swf.
View 2 Replies
Jun 2, 2009
I'm having some problems switching from As 2.0 to As 3.0. How to make a variable trigger. in As 3.0? Lets say i have this on my time-line.
function onClick2(evt:MouseEvent):void{
var pagenumber = "pg03";
switch01.gotoAndStop("red");
gotoAndPlay (2);
}
How do I make a mc gotoAndPlay (_root.pagenumber) like we do in As 2.0?
View 6 Replies
Jul 17, 2009
How can I trigger a MouseEvent from a nested MC?
Basically I have a Sprite that contains a Shape. I'd like that Shape to trigger the listener I've attached to it however, Flash just thinks the container Sprite is being clicked every time.
View 1 Replies
Jul 23, 2009
I have an AS3 code (home_esp.as) that imports the class of another one (InternalCarousel.as)[code]...
View 2 Replies
Oct 6, 2009
I really just want to know how to trigger a function when my movie hits a certain frame.
I made a very simple flash show to try to illustrate my problem a little more clearly. I have a green and a gray button. Using the 'switch_buttons' command I turned the gray button invisible at the beginning. What I then want to happen is that on the 10th frame the green button will become invisible and the gray button will appear. But I haven't had any luck. It seems like I need to call a function to switch the buttons somehow.
View 3 Replies
Jun 22, 2011
Im looking for an event to trigger on a particular date. Does anyone have a code snippet of how that can be achieved?
View 2 Replies
Feb 17, 2008
I have this link in my html textfield. It sits ouside flash in an XML file. It works fine however I was wondering if there's a way to triger the tooltip on rollOver? Like regular javascript?
<a href="asfunction:com.widgets.ToolTip.create, This is a test"><sup>1</sup></a>
View 3 Replies