ActionScript 3.0 :: Button Is Not Working?

Jan 10, 2010

I have a movie clip for my graphic design site that is a slideshow of three images transitioning to one another. (to see it, go to [url].... - and no, that is not a deliberate plug I assure you.)Recently (though not uploaded to my site yet), I added a small little "play" button, where, once you click on it, it will go to the next slide. There's three slides: Print, Logos, and Web. If you click the play button when it's on the print slide, it will go to logos. If you click play when it's on logos, it will go to the web slide. If you click play on the web slide, it SHOULD go back to the print slide.However, on the web slide, mine replays the web slide instead of going back to the print slide.Here's my code:

Code:
slide_mc.addEventListener(MouseEvent.CLICK,portF);
play_mc.addEventListener(MouseEvent.CLICK,gotoNext);[code]....

I checked the syntax and there's no errors.Also, when I test the movie, no errors pop up. I think the problem is in the "else" part of my gotoNext function.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Take A Static Text Field, Convert It Into A Button, And Use It As A Button,but Button Not Working ?

Mar 7, 2010

I want to take a static text field, convert it into a button, and use it as a button. I need it static, because I changed orientation, and I do not know how to do that otherwise. The problem is, even though I converted it to a Button symbol, it does not work when I test the movie. It works fine with "Enable simple buttons", but when I test it, the button is not there, no change in mouse cursor, no reaction at all.So this is what I did:

Made text. // static, not selectable, Orientation: vertical left to right, / //rotated; Two filters: Drop Shadow and Glow;

Converted text field to Button - Symbol (scrollBT)

Editing the Button,I put the same content (the static text field) in all four frames: No luck, not working. without the Hit frame filled (which I think doesn't really make a difference): No luck, not working.Tried again, converting the static text field in the button into a Graphic Symbol: No luck, not working.Tried again, and put some differences in the frames for "ON" and "OVER" etc.: No luck, not working.Tried again, duplicating a similar, working button, edited it, and: No luck, not working.

To the button itself and the AS: The button will be a scroll-button for a text field, with different scroll speeds on rollover and press, but nothing else. The code for that I have (I think). It's something like (and please excuse my incorrect syntax here, but I'm typing from memory; still, I use the Script-Assistant and my syntax is apparently correct; it's also working with other buttons):

on {rollOver} {
function (scroll) {
textfieldtxt.scroll - = 1;}[code]....

I'm at the end of my wits. The only difference I can tell from other (working) buttons I did the same way, is that the scrollBt does not do anything except scrolling, while all of the others have frame actions (gotoAndplay etc.) associated with them.

View 1 Replies

Professional :: Button Link Not Working In Safari, But Working In Firefox?

Apr 18, 2011

[URL]
 
The ad on the bottom right of the screen (the one with lightning flashing) has an invisible button in its Flash file (CS5) linking to [URL]. This file is imported as SWF in Dreamweaver CS5.
 
The hyperlink works in Firefox, but not in Safari. Maybe it is just my computer.

View 1 Replies

When Create A Button Within Movieclip Layer / Button Is Not Working

Sep 15, 2009

I am having a problem where my buttons on main timeline are working fine. When I create a button within a movieclip layer (a page importeded from  Photoshop as a movieclip) the button is not working once I leave. It doesn't show as a working button when I select Enable simple buttons, when I preview or publish as HTML. The thing is, it is a button, it has an instance name, is that weird blue color... and it works fine when I am double clicked into that movieclip layer. I also tried common library buttons and they work fine until I leave that layer as well, also tried it within other layers and creating a new file and doing it... all no success!

View 5 Replies

Close Button Not Working

Jan 31, 2008

I have a picture with an invisible button, once clicked on the button runs a movieclip with an instance - box1, once its opened a close button appeared, called closeBtn1 and the idea is when thats clicked, for box1 to gotoAndPlay frame 80, but no matter where I put the code it doesnt seem to let the closeBtn work! Even trace actions aren't getting recognised![code]as u can see I'm trying to trace even if the closeBtn gets rolled over but to no avail.I have also tried it from scene level and still no joy.

View 7 Replies

ActionScript 2.0 :: One Button From A Set Off Four Not Working?

Mar 16, 2009

I have created a flash menu using flash cs3 and actionscript 2.0 I have used the geturl script for my buttons have exported added the file to my site but one i goo to use the button links three of them work fine but one just won't work. Really haven't a clue what I am doing wron the code is identical for all the buttons (minus the url).

View 3 Replies

Button States Not Working?

Jul 25, 2009

I work with Flash all day at work, and I've made a million buttons. But today, I decided to make a few at home for my personal website. I made a rectangle, turned it into a button symbol, and made keyframes on each state. When I tested it, it didn't work. If I go to Control -> enable simple buttons, it works just fine, but either testing it with ctrl-enter or opening up the SWF gives me a dead button with only the up state.

I uploaded the fla. How could something so simple not work?

It was created in flash CS4, but I saved it down to CS3/Flash player 9 for the sake of compatibility.

View 1 Replies

Mute Button Not Working?

Aug 9, 2009

This is a simple mute toggle button for an mp3 player.
 
I first var sound: Sound 
Then I have the function 
//mute the current sound
function muteSound ()

[Code]...

View 3 Replies

ActionScript 3.0 :: 'Esc' Button Not Working

Nov 9, 2009

What I'm trying to do is to close the pup op flash in the flash by click the ESCAPE btn.[code]...

View 4 Replies

ActionScript 3.0 :: New Button Is Not Working?

May 13, 2010

This is a virtual tour of the school I am making. You start on a map and click a specific entrance. I have 16 paths you can take (arranged by 8 backwards and forwards (a#=forwards b#=backwards)) each arranged in an array.

stop();
var b2Array:Array = new Array("Walkthrough Pictures/b2/01.jpg", "Walkthrough Pictures/b2/02.jpg", "Walkthrough Pictures/b2/03.jpg", "Walkthrough Pictures/b2/04.jpg", "Walkthrough Pictures/b2/05.jpg", "Walkthrough Pictures/b2/06.jpg", "Walkthrough Pictures/b2/07.jpg",[code].....

Some of the functionsadd two or three more EventListeners cause you can turn left or right in the tour. The pictures are arranged as you see in the array (in folders).I attempted to create new buttons each time a function is run so that they do not get covered by the new picture... This isn't working. I also have two more buttons that need to be always present to lead back to the start.

View 28 Replies

IDE :: One Button Stops Working?

Oct 16, 2009

I have some movie clips that hold the contents. (ie I have a movie clip to hold my navigation buttons and another to hold the actual content.) I wrote some action script on a separate layer that is outside of the movie clips, the AS adds event listeners and a few simple functions. All my navigational buttons work prefectly, I have a button that I use for email, this works the first the frame is loaded. If I go to another frame (another page of the website), and then go back, the button no longer works, I tested with just using trace("the email button was clicked"); oh, I thought I might add that each page of the website is a different frame, that is inside my content movie clip. my AS looks like this:

stop();
navigation_mc.home_btn.addEventListener(MouseEvent .CLICK, homeClickF);
navigation_mc.rates_btn.addEventListener(MouseEven t.CLICK, ratesClickF);

[code].....

View 3 Replies

ActionScript 2.0 :: Button Inside MC Not Working?

Feb 20, 2009

I have a weird problem... I have a button inside a movieclip and actionscript on root frame. I know whats the problem, just cant understand how to solve it.I have this script for the movieclip:

Code:
setColor.onRollOver = function(){
setColor.gotoAndStop(2);

[code]....

View 1 Replies

ActionScript 2.0 :: Button Not Working In IE But Does In Firefox?

Feb 28, 2009

Quote:

on (release) {getURL("http://paulmillichip.com/1stop/transferprem1.php?pos=GK&playerid=premGK1&playerou tfield=premGK1value","_self","GET");
}

That's my code.. how come it works in Firefox but not IE?

View 1 Replies

ActionScript 2.0 :: External .swf Button Not Working.

Mar 18, 2009

Ok here is what I have.

randomLoader.swf - It has two layers. One being movieclip layer for loading the external .swf files to. The other is the script layer with the following code:

Code:
filename = ["random1.swf", "random2.swf"];
path = "http://www.domain.com/random/";
i = filename.length;

[Code].....

Now if I just embed randomX.swf into HTML they work fine. But if I embed randomLoader.swf in the HTML to load a different randomX.swf file everytime the page loads/refreshes the button seems to show up but does not function. I get the hand but clicking it does not take you to the URL.

Should I be using Java or PHP instead to load the randomX.swf files? I like how well what I have already is working and I don't have to touch the page to update it to show new randomX.swf files. Just need to get Z buttons to work

View 4 Replies

Reset Button On Form Not Working?

Mar 20, 2009

I am working on a flash site that was done by someone else. I have never used actionscript before so I am sooo new at this. There is a reset button on the form so when people accidentally type in something, they can just click on the "reset" button and it clears all fields. The problem is that it's not clearing.This is what I have in the code for the button:

on (release) {
fullName = "";
address = "";
message = "";
}

The three (fullName, address and message) are the names of my variable when you select each input field. Where am I going wrong with this? Nothing happens when I click it.

View 2 Replies

ActionScript 3.0 :: Quality Button Not Working?

Jul 19, 2009

When I click the quality button, the listener responds (I get the "quality altered" trace), but the quality doesn't change. I don't see a problem in the code, the quality is bound to change because it has to be set as one of the four. What am I doing wrong?

Code:
gameStats.qualityButton.addEventListener(MouseEvent.CLICK, alterQuality)
function alterQuality(event:MouseEvent)
{[code].........

View 2 Replies

ActionScript 2.0 :: Print Button Not Working In OS X?

Aug 25, 2009

why this script in action script 2.0 is not working on OS X but works fine on Windows.

mcFinalPrintMaterial.mcWhiteBkgnd._visible = false;
trace(mcFinalPrintMaterial.mcWhiteBkgnd._visible);
printBtn.onRelease = function()

[Code].....

View 1 Replies

ActionScript 3.0 :: Simple Button Not Working In CS4?

Sep 21, 2009

I have got a simple button in the first frame of my flash file, but its not wokring. Here is the code I am trying.

Code:
Btn.addEventListener (MouseEvent.CLICK, myFunction);
function myFunction (e:MouseEvent):void {
trace("working");
}

It gives this error: "The class or interface 'MouseEvent' could not be loaded"

View 3 Replies

Mc.visible = True Button Not Working?

Jan 2, 2010

I'm using Flash Cs4 with As3 to make a project. In part of it I have an object which is invisible, but when a button is pressed is made visible. Only problem is, it won't make it visible.

Heres my code

PHP Code:

import flash.events.Event;import flash.events.MouseEvent;aSettings.visible = falsevar setVisible:Boolean = false;buttonVisibility.addEventListener(MouseEvent.MOUSE_DOWN,function():void

[Code]....

I'm not receiving any errors at all, but whenever I click the button the output says "false", so I know that its not changing it to true.

View 2 Replies

ActionScript 3.0 :: Button Not Working For Go To Next Scene?

May 2, 2011

In Scene 1, I have some buttons which I want to lead to Scene 2, Scene 3, and Scene 4. However, I can't make the buttons work! I have tried this code:
btn_1.onRelease = function (){
gotoAndStop("Scene 2", 1);
};

It gives me these errors:
1120: Access of undefined property btn_1.
1067: Implicit coercion of a value of type int to an unrelated type String.
And I wind up with a looping flash movie of scene 1 and scene 2, even though I put a stop() on the timeline of Scene 1.

View 2 Replies

ActionScript 1/2 :: Restart Button Not Working?

May 4, 2009

I have a number of scenes and would like to set up a restart button on the last scene to go back to scene 1  and restart.

View 4 Replies

Working With Movie Clip As Button

Jun 5, 2009

I am creating a button with a 20 frame disolve into a page upon entry.I want the button to play a 20 frame disolve back to it's original state when the user rolls out.I want the movie clip to play from frame 21 to the end of the mc and then become inactive.I can get the button to disolve out but the user will not be able to use it after that first roll over.I was thinking of trying to add a time delay from when the first action of the rollout occurs to when the disolve is complete.How do I include a 20 frame delay in the roll out sequence?[code]

View 7 Replies

ActionScript 1/2 :: Health += 10; Not Working (on A Button)?

Aug 19, 2009

Here is my code on a button, when you click the button it takes you to a certain frame and plays, it is meant to add 10 health. When I have it it 52 health, it doesnt go to 62 it goes to 92. When It is at 30 it doesnt go to 40 it goes to 100. why? please help.
 
on (release) {    onEnterFrame = function () {        if (_root.health <=90) {            gotoAndPlay("use");            _root.health += 10; // I have tried it so this bit of code is in the frame ("use") so it adds 10 health when it lands on that frame, didnt work.        } ////////////// only pay attention to the above.//////////////        if (_root.health<=100)

[code]...

View 4 Replies

Simple Button Hit Zone Not Working

Nov 4, 2009

I am somewhat new to Flash CS4 andt am having a problem making simple buttons in Flash CS4 on a Macintosh: I have made a few buttons with a graphic and can go into them and successfully create the Up, Over and Down stages of the graphic. Then when I create a new box for the hit state (which is larger than the graphic and I have deleted the graphic itself from the hit state) it doesn't want to appear correctly when I test the movie. When I test the movie, the hit state is correct everywhere around the graphic (to the bounds of my hit state box), but is not active where the graphic is.

When I go under the Control menu, down to Enable Simple Buttons, the hit zone looks great right in my Flash file, but when I preview it or publish it and look it on different browsers (PC and Mac), I don't get my pointer right over the actual graphic, but get it everywhere around the graphic to the boundaries of my hit box. Why can't I get the actual graphic to be a hot spot in this situation? I have tried leaving the graphic in the hit timeline, and tried putting both the larger box and the graphic in the hit timeline, and still can't get them to respond correctly with the pointer in the browser window.

View 2 Replies

Hyperlink Not Working When Button Clicked?

Dec 8, 2009

I have a button symbol on the top layer in a flash file. I have it fade in and on the last frame of the tween, I placed an action of:
on (release) {
getURL("[URL]", "_blank");
}
I copied that frame and pasted it on the last frame of the movie. When I play the movie, I get the mouse-over for the button, but when I click, nothing happens. How do I get the url to work?

View 1 Replies

ActionScript 1/2 :: Button Instancing Not Working?

Sep 17, 2010

TheProfileRoot = _root.menus.ProfileMenu.ProfileInnerMenu;

TheProfileRoot.GoLeft.onRollOver = function() {
trace("hi");
TheProfileRoot.BadgesDisplay.BadgeDisplay_1._x -= 1;
}

I have a button in a movieclip.. in a movieclip.. in a movieclip, etc.. and when I roll over it, nothing happens.. This has also been happening with a few of my other buttons.. Does anyone know why this could be happening and how it can be fixed?

View 1 Replies

ActionScript 1/2 :: Mute Button Is Not Working?

Oct 9, 2010

I tried using a form of "volume = 0" kind of code but one thing it doesn't mute is the sounds I have in buttons (or symbols). Those seem to continue playing even when the mute is active.So whats a form of code I could use to shut off all volume?If there isn't a solution then what can I do to mute symbol sounds?

View 1 Replies

ActionScript 1/2 :: Button Is Not Working On 2nd Load?

Feb 8, 2011

I have a main swf that loads movies into a clip movieHolder. It loads one movie initially and a button is selected then plays to a frame which loads another movie once a button is pressed in this movie it plays to a frame and at this point / frame I have this code:

stop();_parent.movieHolder.loadMovie("Q_1.swf");_parent.attachMovie("title_foundational", "ttl_foundational", 1, {_x: 217, _y: 5});_parent.attachMovie("buttonblank", "butt_blank", 2, {_x: 22, _y: 5});  _parent.butt_blank.gotoAndStop (1);  _parent.butt_blank._alpha

[code].....

View 15 Replies

Professional :: Button Hit State Not Working

Jul 28, 2011

I made a few buttons for my .fla and all the states are working but the hit state. So just to see what the problem was I made a new button, which is only text at each stage, so for up i wrote up, down down etc, all the states work but hit, what gives??? hit is after someone clicks it it should be at the hit state correct?

View 2 Replies

Professional :: Home Button Not Working

Aug 25, 2011

I've developed a small portfolio website, and have created a "home" button, but I can't get it to program correctly. I've tried using the Action Script to Go To and Stop at Frame feature, but it doesn't work. I need the "Home" button, whenever pressed to take the viewer BACK to frame 10.

View 3 Replies







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