ActionScript 3.0 :: 2 Similar Pieces Of Code 1 Works 1 Doesnt?

Jan 21, 2010

i have here 2 very similar pieces of code, the first is supposed to make the movie clips larger on roll over and it does, the second, which is based on the first, is supposed to move the movie clips to the right on rollover, but it does not. the file names and class paths are not an issue, ive tested these pieces of code with copy and paste

Code:
package
{
import flash.display.MovieClip;
import flash.events.MouseEvent;

[Code]...

View 2 Replies


Similar Posts:


ActionScript 2.0 :: Right Button Code Works Perfectly, But When I Press Left It Doesnt Rotate?

Sep 24, 2008

I have a movieclip that will rotate by 10 right if the right button is pressed, or 10 left if the left button is pressed.Now, some genius tell me why the right button code works perfectly, but when i press left it doesnt rotate. It moves left, but no rotation to be found .heres the code

onClipEvent (enterFrame) {

if (Key.isDown(Key.LEFT)) {
xspeed -= power;[code].....

View 3 Replies

ActionScript 2.0 :: Game Pieces To Automatically Get Pushed Off To The Side Of The Other Puzzle Pieces

Apr 11, 2007

I have recently designed a children's educational game that is completed, however; it is a puzzle and the puzzle pieces can be dropped on top of each other and they hide behind eachother which I do not want to happen. I would like the game pieces to automatically get pushed off to the side of the other puzzle pieces that are in use...not stacked on top of each other. The game is complete except for this one problem.

View 1 Replies

ActionScript 2.0 :: Rollover Works, DragOver Doesnt?

May 18, 2010

I have the raster of dots on white background. I would like it when i DragOver EACH DOT it becomes white so it looks like you are actually drawing white line by erasing the dots. Ive somehow found the way how to do it by making it transparent when I rollover.But it doesnt work with dragover. Does anyone knows how to do it only when i hold down the mouse button and drag my mouse over the dots?his is the script assigned to MC with one black dot (I copied this MC with one dot into another MC and multiplied it to have the raster):

this.onRollOver = function () {
this._alpha = 0;
}

[code].....

View 1 Replies

ActionScript 3.0 :: Error 1009: One Button Works And The Other Doesnt?

Jun 26, 2009

I am experiencing an issue in AS3 that doesn't seem like it should be one at all...In my document class I have the following snippet of code...

Code:
package
{

[code].....

View 5 Replies

XML Gallery Works Fine Offline But Doesnt Work When Uploaded To Server?

Sep 1, 2009

I have decided to attempt making my sisters website. I have used an XML gallery in the website and all works well when viewing the website just in flash, .fla or the .swf file. My problem is, when i come to put it into dreamweaver ready to upload and I preview it in Firefox, or any other broswer, all the pages work but no the XML gallery? Im gettin very stressed out now as all my file routesetc are correct?I have googled the problem and all I have found out is that it could be something to do with security?Does anybody know how to resolve this problem

View 4 Replies

ActionScript 3.0 :: When Load Swf Into Another SWF / Click Event Works / MouseOver Doesnt Glow

Apr 27, 2010

I have an swf with a few images on it, the images glow on mouseOver, and trigger an event when clicked.However, when I load that swf into another SWF, the click event works but the mouseOver doesnt glow.

View 5 Replies

ActionScript 2.0 :: XML Gallery Works Fine Offline But Doesnt Work When Uploaded To Server?

Sep 1, 2009

Im in my first year studying a web design course, over the summer I have decided to attempt making my sisters website. I have used an XML gallery in the website and all works well when viewing the website just in flash, .fla or the .swf file. My problem is, when i come to put it into dreamweaver ready to upload and I preview it in Firefox, or any other broswer, all the pages work but no the XML gallery? Im gettin very stressed out now as all my file routesetc are correct?I have googled the problem and all I have found out is that it could be something to do with security?

View 1 Replies

ActionScript 3.0 :: Create A Character Selection Screen - Works Fine On PC Doesnt Work On Internet?

Apr 1, 2012

trying to create a character selection screen type thing works fine on my computer but when i load it to internet characters dont load up dont understand why? characters and profile images are external image files so i think that reason why its not working is because the swf is trying to display the image before its properly loaded up

im thinking perhaps if i add some sort of bytes total/bytes loaded script where its trying to load up and display the image it will check if the image is fully loaded before it tries to display the image.

View 1 Replies

ActionScript 3.0 :: Combine Similar Code Into One Function?

Oct 19, 2009

I have a project which uses very similar code for I think 12 or 13 different movieclips. I actually copy-pasted a good chunk of the code changing words and numbers here and there.[code]The main point of this part of the project is that each movieclip is a selector on a scrollbar. I just wanted the selectors to look nice, so they tween up and down on rollover and when they are clicked they change from black and white to color. Also when clicked they move a very long movie clip called customizing_forms_mc, into view on the stage. The code is inside a movieclip that contains all the selectors. There is a layer for each selector and on that layer is the code for that selector. I was thinking that there might be a way to call a fuction perhaps with the variables that are brought to the function being strings that i could substitute in for the names of the movieclips. I tried attatching the fla or an swf but they are both too large. For a more detailed look at the code on the stage:[code]As I previously said there is a scroller with the selector buttons and when clicked they bring a certain part of another movieclip into view. Of course, everything is masked so it looks nice.

View 1 Replies

ActionScript 3.0 :: Doesnt Code Execute Outside Of The Function?

Jan 3, 2011

I have unfinished code I'm working on. It has a listener event and a function. I notice when I put the for loop outside the function (it would be below the last line) it doesnt execute. Why doesnt the code I type outside of the function execute? I need to know for future reference

[Code]...

View 4 Replies

ActionScript 3.0 :: Repeated Code Doesnt Work?

Sep 27, 2009

ok, so i am doing a tutorial on external text sheets, but i cannot seem to implement the same code into my current project, it just doesn't seem to work.Its strange because im not getting any errors, but it still doesn't work.This is the example code:

Code:
var loader:URLLoader = new URLLoader(new URLRequest("my_text_file.txt"));
loader.addEventListener(Event.COMPLETE, completeHandler);

[code].....

View 5 Replies

ActionScript 3.0 :: Copy And Pasted Code, First Code Works, Second Doesn't?

Jun 9, 2011

I've literally been staring at this for 7 hours. I'm missing something.I have two movie clips on the stage. The instance name of the first is puzzleAK. The instance name of the second is pieceAK.The first is linked to a custom class called GeoPuzzle. The second is linked to a custom class called GeoPiece.The code compiles but throws an error (as explained).The code in the main timeline:

puzzleAK.fullName = "Alaska";puzzleAK.abbrev = "AK";puzzleAK.isLocked = false;trace ("made it through puzzle definitions: " + puzzleAK.fullName + " " + puzzleAK.abbrev + " " + puzzleAK.isLocked);

[code].....

View 7 Replies

ActionScript 3.0 :: Code Doesnt Work With My Flvplayback Component?

Jul 6, 2010

Ive just created my own custom scrubber using this tutorial, however, the code doesnt work with my flvplayback component.

View 4 Replies

ActionScript 2.0 :: Loaded External .swf Doesnt Act On Its Code, But Acts Proper Individually

Apr 17, 2011

I have a mainmc on the stage. I have another extarnal mc called buttons_mc. When i use loadMovie and load that external mc, the loaded mc's AS2 doesnt seem to run when playing within the mainmc.

Is it possible that a loaded mc looses all its variable values when it comes into a main clip ? Or is my problem lying in the fact that the root paths of all the clips inside button_mc have to be changed to suit the main clip's hierarchy ?

View 3 Replies

ActionScript 3.0 :: Code Works On One Frame But Not The Other?

Mar 8, 2011

I have 2 frames in my movie, 2 buttons and a video.  On the first frame there is code for button #1.  On the second frame i have code for button #2 but I'd also like to appear on the first frame. The problem is that when I put the code for the second button on the first frame, the video won't play.  so I can only have it on the second frame.  I can't figure out why the code, which works when its on frame 2, then won't work on frame 1.  When I put the code on frame 1 it breaks the functionality and the video won't play.

[Code]...

View 8 Replies

ActionScript 3.0 :: Code Only Works When Publish In Flash 6?

Sep 2, 2009

The following code only works when i publish in flash 6. I think you have to define the variables before they are used, but i can't for the life of me figure it out.

Code:
questionSetXML.onLoad = function(success) {
if (success) {

[code]......

View 3 Replies

ActionScript 2.0 :: Code Works, But Not Inside Of A Class?

Jun 26, 2005

i'm using "iloveitaly"s easing scrollbar class, and it works great. however, i added an effect that i want on my scrollbar, and it doesnt work quite how it should. what should happen is when u press the dragger, it should duplicate itself and then fade out, giving it kinda a "mouse trail" type effect i guess you can call it. anyway, here is the code for the part in the class that doesnt work:

Code:
private function onPress() {
startDrag(this, false, lockPos[0], lockPos[1], lockPos[2], lockPos[3])

[code].....

View 1 Replies

ActionScript 2.0 :: Javasript Code Works Just Sometimes From Flash?

Jun 19, 2004

I have a few buttons in the main movie. One of them loads a music player and an external file into the stage. Music player been loaded by javascripts.It works, but especially after using other buttons which do other jobs,it happens that the javascript code doesn't work.Should it be some optimization in addition to the code: ?

getURL("javascript: myFunction(parameter)");
[/AS]
mx-guest2004

View 2 Replies

ActionScript 2.0 :: Code Only Works After A Page Reload In Firefox 3?

Jan 20, 2009

I'm using Flash CS3, exporting for flash player 9 and having troubles with the code below only in Firefox 3 (flash player 9 or 10).In IE 6 & 7, all works OK.The code below should show small thumbnails of images. It does work on everything I tested except firefox 3. What is weird is that if I empty my cache and load the page online, it does not show any thumbnails or sometimes only one. However, if i reload the page without emptying my cache, it will then work perfectly.Here is my code :

Code:
System.security.allowDomain("http://www.translucidedesign.com");
var prefix = 'http://www.translucidedesign.com/kana/';[code]..........

View 16 Replies

ActionScript 2.0 :: KeyPress Not Working But Code Works On Button

Jan 28, 2009

[code]It works fine when I press the button but not when I press the enter key.Just to set the context I want users to be able to use enter to enter an answer into a grid before moving on to the next cell. My cells are all labelled A1, A2 etc so that I didn't get confused. As I am and will always be a newbie I couldn't figure out a function to do what I wanted so came up with what is probably a long winded way around: store the textfield instance name in an array and then call the item in the array in conjunction with setFocus - like I say it works when I click the button (which I intend to hide off screen).

View 10 Replies

ActionScript 2.0 :: Code On Buttons Works While On Movieclips It Doesn't

Dec 4, 2009

I've got several buttons in a tween (graphic) and a few movieclips in two of the buttons. They all have the same code

[Code]....

but this code works only on buttons, not on movieclips.

View 0 Replies

ActionScript 1/2 :: Preloader Not Previewing - Code Works Out A Value Between 0 And 1 Called 'loadVal'?

Jan 27, 2011

I've written a simple preloader which I've put in its own movie clip. The code is as follows:
 
[code]...
 
The code works out a value between 0 and 1 called 'loadVal' this is used to animate a masking object a distance defined by a variable called 'yShift'. loadVal is rounded up to give a whole number that is displayed in a text field showing the percentage of the movie which has loaded.The preloader seems to be running and it will trigger the move to play when it completes but I can't see the preloader previewing in the Bandwidth Profiler, even when I set the data speed to be very slow. I've noticed this issue before and it is annoying as I need to see how the preloader looks and works.

View 4 Replies

ActionScript 3.0 :: Loop OnMouseOver Code So It Works Like An OnEnterFrame Handler?

Sep 26, 2010

i have this code that should get a face (eyes, shape, etc) in motion on Mouse Over. The thing is i dont know how to loop this onMouseOver code so it works like an onEnterFrame handler (while onMouseOver).Another way to put it: as long as the mouse stays over the Mclip i want the code to loop. How can i do this?Here is my code:

Code:
package{
import flash.events.MouseEvent;
import flash.events.Event;[code].....

View 2 Replies

ActionScript 3.0 :: Unknown Error Optimizing Byte Code / Nothing Works!

Feb 24, 2011

I'm getting this error all of a sudden when I try to compile my flash file."5005: Unknown error optimizing byte code."url...Which seems to work for most people, but I am still getting this error. I'm also getting this message in the output window:"ReferenceError: Error #1065: Variable ComponentShim is not defined."It started happening after I created a new .as file that is about 43kb (holds data for a game level).Running Flash CS5 in Mac OSX Snow Leopard.

View 2 Replies

ActionScript 3.0 :: Use StartDrag In The Code And It Works. But When I Try StopDrag It Doesn't Stop To Drag?

Jan 30, 2009

I use startDrag in the code and it works. But when I try stopDrag it doesn't stop to drag.

View 1 Replies

ActionScript 3.0 :: Display List Referencing - Code No Longer Works And Get An Error?

Jul 16, 2009

I have a container movieclip called cont_mc then inside that I have a series of pins which are called pin1_mc then inside the pins I have a final movie clip the size of the pin head to act as the hit state.You can see what I talking about here: http:[url]... Before I had the pins in the container movie clip I was able to bump them to the top of the display list using this code in the on over function.this.setChildIndex(event.target.parent,this. numChildren-1); Now I have wrapped them in the container mc this code no longer works and I get an error, must be a child of the caller?How can I change this?

View 5 Replies

ActionScript 3.0 :: Code Works Fine Always On Top Layer - Bring It To Desired Level?

Oct 21, 2011

The following code works fine but always on Top Layer. How can I bring it down?

Code:
var mySwf1:SWFLoader = new SWFLoader("AnalogClock.swf", {width:225, height:225, container:this, onComplete:completeHandler1});
mySwf1.load();[code]....

View 8 Replies

ActionScript 3.0 :: Dynamic Borders - Code Works Great In Firefox But Fails Miserably In IE6?

Oct 9, 2009

migrating some of my code snippets over from AS2.I tried reproducing one of my most used bit of code - the dynamic border - in AS3, but I have run into a small problem.

PHP Code:
var sw:int = stage.stageWidth -1;
var sh:int = stage.stageHeight -1;[code].....

So this code works great in Firefox but fails miserably in IE6, Flash Player 9. So my question is does anybody have a workaround that works on IE6, Player 9?

View 2 Replies

ActionScript 3.0 :: Changed Default Linkage To Merged Into Code - Firefox No Longer Works?

Sep 17, 2010

Changed AS3 defualt linkage to merged into code, and now my flash file will not load into firefox. It works fine in Chrome, but IE8 and firefox site at frame 1 of my movie, and no code is executed. Works perfectly in chrome. What do I do?the reason i changed to merged into code is because i made an imbeded preloader, and using preloader method as custom preloader loop and setting default linkage to Runtime Shared Library (RSL) borks the file.

View 13 Replies







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