ActionScript 3.0 :: App Doesn't Stop Drawing

Jul 20, 2009

I am trying to create an app that lets the user draw on a stage. I can start drawing, but the app doesn't stop drawing. I don't know if this is an Action Script issue or if I have created a structure that just doesn't work. Here is my code:

[Code]....

View 5 Replies


Similar Posts:


ActionScript 2.0 :: Stop() Or _root.stop() Doesn't Stop?

Aug 26, 2009

I have a contact form for which I have a tween. That contact form consists of two keyframes, first the form, I tried putting the code stop(); in the first keyframe but it didn't stop. I then changed stop(); to _root.stop();, which didn't work either. I have to stop it because otherwise users would see a thank you note before they even enter their details. What can I do? Converting to movieclip didn't work either, besides it puts a funny character when I press AltGr

View 2 Replies

Actionscript 3.0 :: Movie Doesn't Stop At Any Of Stop Commands And Keeps Looping Through Itself Over And Over Again

Jan 5, 2010

Im attempting to make a preloader. I am very new to action script so this is what i have.

Code:
ifFrameLoaded ( "UC" ) {
gotoAndPlay ( "home" );
}

as simple as it gets, right? Wrong, the preloader works however is get this error 1087: Syntax error: extra characters found after end of program. The preloader it self works it plays and when the movie is loaded it begins the movie, however the movie doesnt stop at any of my stop commands and keeps looping through itself over and over again till i exit the window.

View 1 Replies

ActionScript 3.0 :: Stop Movieclip - SjunkBomb[x].stop(); Doesn't Work?

Aug 27, 2010

I have some bombs like this :

var sjunkBomb:Array = new Array;
for (var i:int = 0; i < sjunkBombMaxAntal; i++) {
var bomb = new sjunkbomb;[code]....

Each movieclip sjunkBomb contains an animated movieclip. When the bombs reach the bottom I want to stop the inside animation.I guess it's better to stop them so they affect the rest of the game if there are a lot of bombs. I know how to hide them with sjunkBomb[x] .visible = false; but if I want to stop them? sjunkBomb[x].stop(); doesn't work!?

View 1 Replies

Professional :: Flashplayer Stop Doesn't Stop All Animations?

Nov 1, 2010

When my animations are playing in the flashplayer and you rightclick and uncheck the play command only the animations in the main timeline stop playing. All the child animations continue to play. How do I make it so they all will stop playing when play is unchecked?

Is there a event listener that monitors if the movie has been stopped?

View 11 Replies

Flex :: Drawing This Line At (0,0) Doesn't Really Draw It At (0,0)?

Apr 13, 2010

Update: Once and for all, how can I draw a line that goes from (0,0) to the opposite corner of the stage?Here is what I have:

package
{
import flash.display.Sprite;

[code].....

View 1 Replies

ActionScript 3.0 :: PHP XML Graph Drawing Tool - .swf Doesn't Seem To Accept The Xml Sheet

Jan 28, 2010

I am attempting to build a tool which creates a graph through data drawn from a MySQL database, however the .swf doesn't seem to accept the xml sheet that is created by the PHP. I was wondering if anyone had any thoughts on this?

View 13 Replies

ActionScript 2.0 :: Stop The Drawing API Overwriting?

Mar 6, 2006

I'm trying to make a little Flash Movie which randomly displays 3D cubes on the screen.

I've got a scene which consists of an array of shapes, each of which extends a basic shape class.

Then the camera has an array of shapes which it calls a scene.

You call the drawing method like this: camera_x.showScene(myScene);

The problem I have is that if there's more than one item in the scene array only one gets drawn. It's like the biggest thing is hiding all the rest.

View 1 Replies

ActionScript 3.0 :: Line Drawing Script On Stage Doesn't Work In MovieClip?

Jul 28, 2011

I have a little snippet of code that allows the user to create a line with the mouse, and clears the line if they end up touching the hitbox with the mouse, while they're drawing the line. It works fine when it's just thrown onto the main timeline. However, when I try to encapsulate it within a movie clip, it suddenly doesn't work. At all. Are there any suggestions as to why this is happening? Here's the code.

[Code]....

View 13 Replies

ActionScript 2.0 :: Drawing Board Stop Draw?

Jun 14, 2004

This code is from a drawing board, the problem is:

1- When you click outside the drawing area, a dot is drawn (thus you cant click anything except inside drawing area because it will result in undesired dots)

2- When you drag outside the drawing area the dot is drawn (bad), the pencil doesn't draw (good), but if you drag until reaching the drawing area draws (undesired, because it should only draw when you started to drag from inside the drawing area) how to tweak the code or simple add a "deselect" tool option ? That's a link to the fla file ziped, and that's the code of the drawing board: [URL]

Code:
_root.P = 0;
_root.level = 1000;
_root.tmpx = -1;

[code]...

View 6 Replies

ActionScript 3.0 :: Stop A Function In Drawing ( Painting ) App?

Jan 12, 2011

i have a problem with functions, i'm creating a painting app in flash as3. i want to draw two different style a pen and rectangle.

When i draw pen style in first frame there is no problem, but when i click rectangle style in second frame it is drawing with both style. How can i stop or kill other function?

How do I make both of the not drawing. And How can i undo my last action in drawing?

Fla is in the attachement (CS4 version)

in first frame drawing pen;

Code:
var clip : Shape = new Shape();
addChild (clip);
stage.addEventListener(MouseEvent.MOUSE_DOWN, _handleMouseEvent);

[Code]....

View 5 Replies

ActionScript 2.0 :: Drawing Board Stop Draw

Jun 14, 2004

This code is from a drawing board, the problem is:

1- When you click outside the drawing area, a dot is drawn (thus you cant click anything except inside drawing area because it will result in undesired dots)

2- When you drag outside the drawing area the dot is drawn (bad), the pencil doesn't draw (good), but if you drag until reaching the drawing area draws (undesired, because it should only draw when you started to drag from inside the drawing area)[code]...

View 6 Replies

ActionScript 2.0 :: Can't Stop Movieclip / Call Drawing Api Functions?

Jul 5, 2004

I made a movieclip with 5 frames inside. Well, outside, when i push a button stop, runs the code: this.movieclip_name.stop(); , but, doesn't stop.Inside these frames there is a enterframe function that call drawing api functions.

View 1 Replies

ActionScript 2.0 :: Stop Action At End Of Movie On Last Keyframe / But Movie Doesn't Stop

Nov 19, 2003

I put the "stop" action at the end of my movie on the last keyframe, but the movie doesn't stop!

View 14 Replies

ActionScript 3.0 :: FLV Sound Doesn't Stop?

Dec 22, 2008

I have a swf with 4 scenes, in each scene there's a FLVvideo. I have buttons going to prevScene and nextScene and when goback and forward I hear the sound of another FLV,?the code for the buttons (for example) is

button1.addEventListener(
MouseEvent.MOUSE_UP,
function(evt:MouseEvent):void {

[code].....

View 3 Replies

Sound Playback Doesn't Stop?

Oct 14, 2009

I'm experiencing difficulty when playing sound files. When I start the playback of the timelime using the enter/return button everything plays as it should. When I press it again to stop, the visuals stop but the sound file in the timeline just keeps playing until it reaches the end of the track- even if I have cut some out of the timeline. I used to use mx 2004 and never had the problem. Note: I am using this in college not on a personal computer.

View 1 Replies

ActionScript 3.0 :: Sound Doesn't Stop SOMETIMES?

Jul 14, 2010

I have movie clip buttons with a dynamic sound withing a slide show. Slide show consists of 3 movie clips connecting on frames 1, 300 and 900. The movie clip buttons with sound over are within the connecting movie clips. My problem is that although the sound and buttons work fine most of the time, sometimes, particularly if I mouse over the button wile it's transitioning on one of the connecting frames (300, 900), the sound doesn't stop... I'm sure I'm missing something in the Action Script?? Here's the script I'm using for the buttons:

stop();
import flash.display.MovieClip;
import flash.events.MouseEvent;

[code].....

View 3 Replies

ActionScript 3.0 :: Mc.stop Doesn't Work?

Mar 1, 2009

I have an animation with 11 layers, 4 of them have a regular time line, 4 others have a actionscript animation(moving left to right and replacing left when disappear(they are clouds)), 1 other is just a layers for actions, and the last 2 contains a MovieClip named "fond_mc" and "verdure_mc"(i'm french, in english: "background_mc" and "grass_mc").

[Code]...

View 1 Replies

IDE :: Stop Action Doesn't Work?

Dec 5, 2009

I have a stop(); action on the last frame of my main timeline, but it's not working. The movie just keeps on looping.

I've tried:

addEventListener(Event.ENTER_FRAME,myFunction);
function myFunction(event:Event) {
stop();
}

but that doesn't work either. Neither does this.stop();

View 3 Replies

ActionScript 2.0 :: Doesn't Stop When Going To Next Scene

Dec 20, 2009

I put an actionscript to make a "matrix effect" on the timeline, but it won't stop playing. It's just repeating over and over again. Even when I'm going to a next frame. Is there a way to stop the script from playing?

This is the code from the "matrix effect":

for (i=0; i<=463; i++) {
_root.attachMovie("digit","digit"+i,i);
this["digit"+i].the_depth = i;
}

[Code]....

View 4 Replies

Professional :: GotoAndStop('frame') Doesn't Stop?

Aug 29, 2011

I have been following Doug WInnie's tutorials on flash, and am up to ep17: http:[url]....He briefly mentions these functions at the end, but doesn't go into any detail: Add event listener and callback function for roll over of the

ballmyBall.addEventListener(MouseEvent.MOUSE_OVER, ballOver);function ballOver(e:MouseEvent)myBall.gotoAndStop('glow');}[code]...

When I tried doing this, I labelled one frame within the myBall movie clip 'normal' and the next one 'glow' and I added a filter glow to the ball on the glow frame.When I play it back, and mouse over the ball it flickers really quickly between glowing and not glowing, and when I mouse out it returns to normal and stops, but I thought it should stop on the glow frame as well.

View 11 Replies

Flash - Adobe Air Stop(); Doesn't Seem To Work

Dec 30, 2010

When I work on my Air Project, I used stop(); to stay in a frame(which is my menu), I built the .air for testing purposes and the frames keep looping, as in, it plays all the frames, and it won't stop as it's instructed to. I'm building my Application in Flash CS5, not Flex.

View 1 Replies

ActionScript 3.0 :: SoundChannel Doesn't Stop Properly

Oct 22, 2010

I made a few functions that should fade between tracks very simply. I start with track1, then call my initial function to fade to track2 -- works just fine. Then later when I want to call it to fade back to track1 it will fade track1 in but keep track2 playing (when the first time it properly fades the already playing track out) --Here is the code (all variables are defined earlier):

ActionScript Code:
/* trans is my SoundTransform
channel is my SoundChannel
newSong is a holding var*/

[code]....

View 1 Replies

ActionScript 3.0 :: Stop Function Doesn't Work

Oct 2, 2010

I am trying to stop a function in as3, I tried: delete.functionName - but it didn't work, I tried to achieve the same things using addEventListener and then removeEventListener, but that is not what I need that function has caurina tweener inside it and it has multiple tweens with multiple delays seconds, so all of the tweens are started and the seconds continue to tween but what I want is to simply stop that by stopping the function which holds the tweener so it should stop everything what is inside that function for example it could stop that function when it is mouse hovered on any object

View 11 Replies

ActionScript 3.0 :: Sound Loop Doesn't Stop Sometimes?

Feb 16, 2011

It stop sound sometimes and sometimes it doesnt

var soundReqTele:URLRequest = new URLRequest("sounds/telephone_ring.mp3");
var soundTele:Sound = new Sound();
var controller:SoundChannel = new SoundChannel();
soundTele.addEventListener(Event.COMPLETE, soundLoaded);

[Code]....

View 1 Replies

ActionScript 3.0 :: Debugger Starts But Doesn't Stop At Any Of The Breakpoints?

May 7, 2009

I'm trying to debug my as3 game, but no way, the debugger starts (with the different debug panels) but doesn't stop at any of the breakpoints so i created an empty as3 file (.fla) and put some simple code:

[Code]...

I put a breakpoint at line 2when i press Ctrl-Shift-Enter Or Debug>Debug Movie, it traces "Hello" 2 times without stopping when i right click on the new flash player window that opens, it shows DEBUG on the menu (not grayed), and i think that it means it's the flash player debug version that is running I'm running on Vista and I tried reinstalling Flash without success, but i've got another PC with windows XP and it works well on it,
Are there any restrictions on Vista or maybe services that should be started, or anything that should be activated / deactivated?

View 13 Replies

Professional :: Flash Debugger Doesn't Stop On Breakpoints?

Jun 11, 2009

I don't know why but i've got fla files that I can't debug.
 
I'm able to launch debugger and the swf file is correctly run when I do it, but if for instance I add a trace in my code and add a breakpoint on it, it will appear in the output but the debugger doesn't stop on the breakpoint.
 
It's a pretty big project that uses a quite numbers of external swc libraries, home produced for the most, and I can't figure where could this bug come from. All the more if I create a simple fla file with a simple document class attached to it the debugger works perfectly.

So if anyone already encountered the problem or got an idea over any reason that could make the debugger to not stop on breakpoint,

View 10 Replies

ActionScript 3.0 :: Stop() Doesn't Work When Saved To A USB Drive

Oct 28, 2009

Demonstarting basic AS3 to my Flash class tonight I discovered a strange anomoly. I created a scene with multiple frames and added a stop(); action on the first frame. Simple! But when i save the fla file to a USB drive and test the movie or even publish it to an exe, the stop command no longer functions. Save the fla to the hard drive and test/publish, it works fine. I tried this on multiple computers using CS4 with different USB drives and even different fla files created from scratch. The problem is consistent. gotoAndStop( ) also ceases functioning when the fla file is saved to the USB drive and then tested/published. (BTW, I also tried to do it with AS2 and the stop() command functions correctly on both the USB and hard drive).

View 12 Replies

ActionScript 3.0 :: Stop(); Doesn't Work On Master Timeline?

Jul 24, 2007

I've used the stop(); function on my actions frame, top layer, on all of my frames. I've tried using it on keyframes for all of the frames, and on one "master" actionscript frame (spans the movie).

stop(); won't stop my master timeline. I've traced it, and it isn't being activated--so that tells me that for some reason, the actions on the frames (not in the document class file) aren't being triggered.

Is it related to the fact that I have a custom document class? I can't think of anything in there that would cause this to happen, and I even put a stop(); in the beginning of the constructor function. (Didn't work so I took it out.)

This isn't a looping movie clip inside of my timeline, it is the master timeline itself.

View 6 Replies

Flash :: Flvplayback Component Doesn't Stop Playing Upon Exitframe

Apr 17, 2011

I have an instance of an flvplayback component on a frame (not the first frame) on a timeline in a flash AS3 flash app file. I would like to stop the movie when i exit that frame, either via gotoAndStop() or whatever else.s there a listener for this? Or any solution that people know of?

View 1 Replies







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