ActionScript 1/2 :: How To Control Only Loop Movie Twice

Sep 6, 2009

I'm a very beginner and I have downloaded a movie script and but I cannot make the movie stop looping.How I can change this script and make it stop after looping twice.[code]

View 1 Replies


Similar Posts:


ActionScript 1/2 :: Control Only Loop The Movie Twice?

May 1, 2011

I have downloaded a movie script and but I cannot make the movie stop looping.How I can change this script and make it stop after looping twice.

the script as following:

time = "9";_root.star.circle_star._visible = 0;_root.star.circle_star.i = 1;_root.star.circle_star.onEnterFrame = function() {if (this.i%time == 1) {  this.duplicateMovieClip("circle_star"+this.i,this.i);} this.i++; if (this.i == 2) { exit;  }};
geraldinne.swf (25.5 K)

View 6 Replies

Flash :: Control Movie From JavaScript When Have No Control Over The Source?

Nov 4, 2009

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 to the movie).

View 1 Replies

Control A SWF Flash Loop?

Sep 19, 2011

We are going to make a lot of small flash animations with different messages, and put them on a big screen. They will be saved as SWF files.

Is there a framework or anything that enable us to make a easy controller for this, so we can control both a loop, but also play a specific clip when we want?

View 1 Replies

ActionScript 2.0 :: AttachMovie In A Loop - Have More Control Over X/y?

Feb 24, 2005

i've got an attachMovie in a for loop, that creates a number of buttons, depending on how many names are in an array. as of right now i have the buttons created vertically, and im controlling the x value, like this:

allNames = attachMovie("menuButton",myArray[e],depth,{_y:allNames._y+allNames._height+5});
allNames._x = 520;

i'd like to do two things that this won't let me do:

a. have more control over the Y coordinate, so when the loop starts i can say 'start making the buttons at x: 520, y: 350, instead of them just starting at y: 0 like they are now.

b. have a way to check if the amount of buttons reaches five in height, if so, the array starts a new column at x: 600 y: 350. im trying to have it do that about 3 times, as the amount of buttons will vary from 5-15.

View 1 Replies

ActionScript 3.0 :: For Loop To Control Buttons?

May 31, 2009

i tried to use for to control all the buttons i have but i get this error:1083: Syntax error: dot is unexpected.

Code:
var btnNum:Number = 6;
for (var i:Number = 1; i <= btnNum; i++) {
["L" + i + "_mc"].buttonMode = true;
["L" + i + "_mc"].addEventListener(MouseEvent.MOUSE_OVER, onOver, false, 0, true);

[code]....

View 3 Replies

ActionScript 3.0 :: Cannot Control Mcs Created By A Loop?

Aug 25, 2009

simplied version:(there's a mc of the Box class in the library)

Code:
for (var i:int=0; i<10; i++) {
var box:Box=new Box();[code]......

error: access of undefined property box2

View 13 Replies

ActionScript 2.0 :: Control Loop Of Extload Swf?

Aug 14, 2004

I've lost the original fla for my swf and i never put a stop on it before creating it. can i stop it's looping without access to it's original fla?

View 10 Replies

Actionscript 3 :: Control Over Index Of Foor Each Loop?

Oct 12, 2011

I have tried this:

PHP:
<?PHP
$link = mysql_connect("localhost","root","");
mysql_select_db("dbname");
$query = "SELECT * FROM dress where dress_type='shirts' AND sex='male'";
$results = mysql_query($query);

[Code]...

how to have control over the strings in the for each loop?

View 2 Replies

ActionScript 2.0 :: Three Main Keyframes - How To Control Loop Function

Jan 4, 2009

I have a flash piece with 3 main keyframes/story ("story1", "story2" & "story 3") that cycles (and loops) from story to story, and 3 buttons that stop the cycle and take you to one of the stories

So on my first frame I have:
_root.mainMC.playing = "true";
function playOn(frame) {
/gotoAndPlay(frame);
}

Then on each keyframe I have:
stop();
setTimeout(this,'playOn',2000,"whatever the next frame is")

Then on button I have:
on (press) {
_root.mainMC.playing = "false";
gotoAndStop("story3");
}

I think somehow I have to have the button clear the function because for example, if I am viewing story 1 during the cycle and click 3, it goes to 3 and then quickly goes back to 2 and then stops on 3.

View 9 Replies

ActionScript 2.0 :: Slider To Control Multiple Swf's With Loop Checking?

May 18, 2010

I have to create a slideshow that loads 16 different swf's into a container_mc. Each swf has an image with accompanying voiceover.

I have the basic next, previous, first, and last slide buttons working but they want to add a slider bar that plays and u can slide to a specific section of the slide show. The slidebar is where I am having troubles.

Here is what I have so far...

This is the code on the first frame for the buttons

Code:
nowPlaying = 1;
lastPlayed = 0;
playingNext = 2;
autoPlaySlides = false;

[Code]....

For the slider I need to create some kind of loop that checks where the dragger is. If it is between 1 and 6 slideLabel = "Go to slide 1"; If it is between 7 and 12 slideLabel = "Go to slide 2"; and so on up to 16... when the dragger is released on the slide the user wants to go to it needs to load specified .swf.

View 1 Replies

ActionScript 2.0 :: Volume Control - Specific Object For Loop

Oct 23, 2004

In a movie a have a sound object, that i make it through (for example)
Code:
musica = new Sound();
musica.attachSound("fondo");

I have many other sounds in the movie but this object is for a loop... The problem is that when I set the volume for that object, through:
Code:
_root.musica.setVolume(0);
Or whatever value, all the other sounds are set to that volume too. I just want to mute the loop but also the buttons sounds are muted...

View 4 Replies

ActionScript 2.0 :: Slider To Control Multiple Swf's With Loop Checking

May 18, 2010

I have to create a slideshow that loads 16 different swf's into a container_mc.
Each swf has an image with accompanying voiceover.

I have the basic next, previous, first, and last slide buttons working but they want to add a slider bar that plays and u can slide to a specific section of the slide show... The slidebar is where I am having troubles.

It is partially working now, just needs to be tweeked... It is reading the variables, and setting the slide label text to the correct label, BUT it is only doing this once when the mouse is pressed and does NOT update when the mouse is dragged. I tried so many different ways and can't figure this out.

Here is what I have so far...

This is the code on the first frame for the buttons

Code:
nowPlaying = 1;
lastPlayed = 0;
playingNext = 2;

[Code].....

For the slider I need to create some kind of loop that checks where the dragger is.
If it is between 1 and 6 slideLabel = "Go to slide 1"; If it is between 7 and 12 slideLabel = "Go to slide 2"; and so on up to 16... when the dragger is released on the slide the user wants to go to it needs to load specified .swf.

View 2 Replies

ActionScript 2.0 :: Control Dynamic Clips On Stage W/ Loop Function?

Feb 4, 2010

have a mc on stage ('sq') and it gets duplicated using the loop.have a simple Tween function for over state called 'over'how would I write so that when rollover on (for example) sq3,apply the over function to sq2 and sq4 as well (the ones next to the target)?[code]

View 3 Replies

Actionscript 2 :: Add Control Feature To A Flash Movie Built Of Compiled Movie Clips?

Oct 15, 2010

The movie was designed in several flash files, each has been combined into a single movie clip and then all the movie clips have been moved into the master document.

Each movie clip is on a single slide.

They play through and when a clip reached the end I have used the actionscript root.gotoAndPlay(x) where x is the slide number of the next clip in the sequence as such my timeline looks like this[code]...

View 1 Replies

ActionScript 2.0 :: Searched Forums - Progress Bar - Dynamically Loads The Movie.swf's Into Itself And Will Control The Movie

Apr 10, 2003

I modified the loadBar from one of the popular preload scripts out there. What I am making is a progressbar, sorta like the ones you see in movie previews. But it doesn't seem to o work quite right. Here's what I have: interface.swf - dynamically loads the movie.swf's into itself and will control the movie (when I get around to it). it has the loadBar object

[Code]....

View 6 Replies

ActionScript 2.0 :: Make A Flash Movie That Would Allow The User To Control The Framerate Of The Movie?

Apr 11, 2006

I have to make a flash movie that would allow the user to control the framerate of the movie. Unfortunately I'm not that good with flash and I don't know how that could be done ..I thought about something like

"on(press){
movieclip.increaseframerate(*2);
}"

View 3 Replies

Professional :: One Swf Movie Control The Content Of Another Swf Movie?

Jul 20, 2011

Is it possible to have one swf movie control the content of another swf movie?

View 3 Replies

ActionScript 2.0 :: Function For _root - Control A Movie Clips Current Frame By Another Movie Clips?

Sep 13, 2009

I'd like to control a movie clips current frame by another movie clips action script.I realise the following controls the outside (root) frame time line:

on(release){
_root.gotoAndStop(1);
}

but I'm not sure how to apply that to my other movie clip. I'm guessing it would be something like this:

on(release){
_*movie_clip_name*.gotoAndStop(1);
}

View 1 Replies

Control Flash Movie On PC1 From PC2?

Oct 14, 2010

i have a simple 2 frame movie on pc1, when it starts it goes to and stops at frame 1 , we need to be able to change to frame 2 when a user clicks a button on PC2 (can use php/VB etc). It's all on a closed lan so no security problems .

View 3 Replies

ActionScript 2.0 :: How To Do Movie Control

Jan 30, 2005

This time around I want to know how to script the controls for changing the quality of the swf movie. Anyone knows how to do that?

View 2 Replies

Actionscript 3.0 :: Movie To Loop - Movie Plays A Certain Number Of Times Then Plays The Opening Of A Screen Then Stops

Aug 30, 2011

I want my movie to loop. Would prefer an If/Else loop so that the movie plays a certain number of times then plays the opening of a screen then stops. This is a simple 4 screen ad I am doing for a school project. Can't get it to work. I tried containing my code in the proper loop syntax, didn't work. Then wrapping the loop in a function and calling that with a timer event, didn't work. My final solution was to call my whole movie in a timer event set to play once. Then calling the entire movie again in a second timer event set to play 20 times and set to start at an interval when the first movie ended. This did work but each time the movie plays thru function calls drop off making the movie degrade.

[Code]....

View 5 Replies

Professional :: Control The Movie Clip Mc_allPages From Within The Movie Clip Mc_buttonMenu?

Aug 20, 2010

I am making a web site in flash in which I have multiple movie clips.I have mc_buttonMenu on the main timeline.Inside of mc_buttonMenu, I have 3 buttons that are all button symbols.From the main timeline, I have a movie clip called mc_allPages.In this movie clip, I have a few layers.I have the content layer.This layer controls how my pages display.I have another layer called labels.I labeled frames 1 to 10 as 'home' and layers 11 to 20 as 'contactUs'.I have another layer in mc_allPages called actions.I put a stop(); on frame 10 and frame 20 on this layer.I want to be able to control the movie clip mc_allPages from within the movie clip mc_buttonMenu.I put some action script in various places, but it never worked.I tried this action script:
 
_root.btn_home.onPress()
{
Gotoandplay("home");[code]...........
 
I tried placing that code on the main timeline, inside mc_allPages, inside mc_buttonMenu and split up into both buttons appropriately for btn_home and btn_contactUs.Sometimes the animation would stop on frame 10 and sometimes it would just play through to frame 20 and ignore the stop(); I put on frame 10 inside the mc_allPages movie clip.However, whenever I pressed the button ( btn_contactUs ), it never went to the frame labeled "contactUs" in the allPages movie clip.

View 11 Replies

Actionscript :: Control Movie Without Having Access To It?

Oct 7, 2009

I work for an equipment planning firm and we subscribe to an organizational tool which allows us to build projects and add the items we are planning to buy to each project. The company who offers this product keeps all of the project data as well as the equipment library in a database on their servers. Up until recently, this information was displayed to us using a normal website using HTML and javascript and would access the database when it needed to.  Now they are upgrading to a flash based movie which is used as the interface and it still accesses the database to display the proper items for each project and to access the equipment library.  Since this is a 3rd party company, I do not have access to the actionscript they use but is there a way I can control the movie with some sort of programming.  In the past, I've used visual basic to send commands to the website and I could automate a huge list of tasks which would ordinarily take a long time.  Is there anything comparable to doing this in a flash movie?  It can be any programming language.

View 1 Replies

ActionScript 3.0 :: Control One Flash Movie With Another

Nov 11, 2011

I have a need to control one flash movie with another. For example: I have a graphical interface created in Flash AS3 which is simulating the control of machines on the ocean floor. I have 3D animations that will animate what is happening on the ocean floor when a control element is activated on the graphical interface. At the moment I have this happening all in one Flash player window that has been made to look like two windows. One which is the interface...one that is made to look like a small screen showing what looks like video coming in from a camera on the ocean floor.

What I need to be able to do is have the Control Screen as one window, and the animations to appear in another. In this way we can set up two monitors, have the control screen on one (computer monitor), the animations playing on the other (a large plasma connected to the same computer). The animations need to play within a flash shell and the control screen would need to play in a separate shell. So in essence I need to be able to double click on an .exe....two screen will activate showing one screen with buttons that port animations into the second screen which I have positions to play on the larger screen.

View 6 Replies

Asp.net :: Drag Control Over Flash Movie?

Sep 9, 2010

I'm using jquery to drag popup control around the page ,every things work fine but when the page has flash movie the popup doesn't appear over flash also when set z-index to 100 .

is there any work around this issue???

$('.modalPopup').ready(function() {
$('.modalPopup').draggable({ zIndex: 2700 });
});

View 1 Replies

ActionScript 3.0 :: Control A Movie Clip From Another?

Dec 10, 2009

I have a parent movieclip (present_content_mc) that has two nested movie clips, players_content_mov is the first one. It's on frame 6 of the parent clip. The second movie clip, bios_mc is on frame 7 of the parent clip.

Now, my problem is getting a button on frame 2 of players_content_mov to go to frame 18 of bios_mc on click. Here are the two types of coding i've tried[code]...

View 9 Replies

ActionScript 3.0 :: How To Control Flash Movie

Jul 29, 2010

My task is to create a TV with flash graphics and show a short flash movie embedded on the screen. In the task there must be some buttons to switch on/off and pause and continue play after pause.

View 0 Replies

ActionScript 2.0 :: How To Get Menu Control Throughout Whole Movie

Aug 13, 2004

I have a menu that controls my movie right, I was wondering how I could make a little sliding bar like on a media player. Where u slide it to a certain spot and it goes to a certain spot in the movie. How I could get my menu to stay throughout my whole movie?

View 5 Replies

ActionScript 2.0 :: Control Multiple Movie Clips?

May 15, 2009

I have 6 movies that i need controling. These are named hex1, hex2, hex3 etc. When the file opens i have some action script that needs to run something like this:

while (i<7) {
hex[i].gotoAndStop(1);
i=i+1;

[code].....

View 1 Replies







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