ActionScript 2.0 :: Flash8 Simple Button Not Working Within Movieclip

Mar 2, 2010

I have a simple getURL button within a movieclip within another movieclip. Does anyone have any clue why this isn't working? The button is in the top layer of the child movieclip, and the child movieclip is in the top layer of the parent movieclip, so what am I missing here? I attached a simplified fla to show the issue. In the end, the main red box will be a country on a map and the popup box will contain info about the country and links to pictures and sites.

View 4 Replies


Similar Posts:


ActionScript 2.0 :: Flash8 Simple Game Score Not Working?

Mar 28, 2011

I'm following a tutorial to make a simple game. The aim of the game is for a player to evade a flying enemy ; the higher the score, the faster the enemy. The main elements in the game are the enemy the player and a score card.

However, from following the tutorial, and adding the dynamic text field etc....the score doesn't actually work.

This is the code that I was instructed to place on the first frame of the Scripts layer:

//Game Variables
enemySpeed = 5; //Set Enemy initial speed
numberEnemy = 4; //Change this to add more Enemies
score = 0; //Set initial score to 0

[Code].....

View 2 Replies

ActionScript 2.0 :: [Flash8] Game Score (A Simple Timer) Not Working?

Mar 28, 2011

I'm following a tutorial to make a simple game. The aim of the game is for a player to evade a flying enemy ; the higher the score, the faster the enemy. The main elements in the game are the enemy the player and a score card.However, from following the tutorial, and adding the dynamic text field etc....the score doesn't actually work.This is the code that I was instructed to place on the first frame of the Scripts layer:

//Game Variables
enemySpeed = 5; //Set Enemy initial speed
numberEnemy = 4; //Change this to add more Enemies
score = 0; //Set initial score to 0

[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

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

Professional :: Simple Movieclip Click To URL Is NOT Working?

Jul 14, 2011

I've tried over 4 tutorials to make my movieclip link to a URL. It's just not working for some reason...
 
Here is my code.
  
ondemand.addEventListener(MouseEvent.CLICK,goThere);
function goThere(e:MouseEvent){
var request:URLRequest = new URLRequest("www.money.net");

[Code].... 
 
This should work!! There are no compilation errors...
 
No mouse cursor change on hover... just like nothing is there.

View 7 Replies

ActionScript 2.0 :: Flash8 - OnRelease Functions Not Working With Attached Button?

Jan 12, 2010

I'm loading an item to the stage and trying to apply a function to it but it doesn't seem to work.

Code:
_root.attachMovie("FullScreenBTN","FullScreenBTN",_root.getNextHighestDepth());
_root.FullScreenBTN.onRelease = function(){
trace("test")
}

When I press the button nothing happens, but when I remove the attach code and just put the button on the stage with the appropriate instance name it does work.

View 5 Replies

AS2 :: Get A Button Working With Simple GotoAndStop Frame

Jan 31, 2010

i can not seem to get a button working with simple gotoAndStop frame . its setup like _root > EMC_photos > photos_thumbs_ani now in photos_thumbs_ani i have several photo pages all setup every 100 frames with labels page 1, page 2 etc my button is within photos_thumb_ani as a movieclip with code inside this.onRelease = function(){ _root.EMC_photos.photos_thumb_ani.gotoAndStop("pag e2");} I have tried different variations to no sucess

View 2 Replies

ActionScript 2.0 :: CS4 - Simple Button Script Not Working?

Apr 14, 2010

I've got a really simple script that on a button click, changes the alpha of a set of mc's from 0 to 100, then on second click changes back to 0. The first click works fine but for some reason the second click isn't working. The button needs to stay "on" as well so I've got the buttons in a mc with named frames "on" and "off". Here's the code:

Code:
Actionscript Code:
ltBlueButton_mc.ltBlueOff_btn.onRelease = function(){ 

[code].....

View 3 Replies

ActionScript 2.0 :: Simple Button Script Not Working?

Apr 14, 2010

I've got a really simple script that on a button click, changes the alpha of a set of mc's from 0 to 100, then on second click changes back to 0. The first click works fine but for some reason the second click isn't working. The button needs to stay "on" as well so I've got the buttons in a mc with named frames "on" and "off". Here's the code:

Code:
ltBlueButton_mc.ltBlueOff_btn.onRelease = function(){
contentMain.page1_mc.Pg1LtBlue_mc._alpha = 100;
contentMain.page2_mc.Pg2LtBlue_mc._alpha = 100;

[Code].....

View 4 Replies

ActionScript 3.0 :: Simple Button OverState Not Working

Dec 23, 2010

I have programmatically created a simple button with a text field on top in a separate class extending a movie clip. The problem I am having is that the overState does not seem to be working and I don't know why. I have even tried removing the text field in hopes that would work, but it does not. The GameIntroduction class is called by another class which is the main class.

Here is my code for the class that calls the buttons:
ActionScript Code:
package {
import flash.display.*;
import flash.events.*;
public class GameIntroduction extends MovieClip {
private var introText:String = "";
[Code] .....

View 2 Replies

Flash8 :: Simple Sound On / Sound Off Button

Nov 10, 2011

basically i simply want to give the option of turning of the sound in my flash via a button (If you press it sound goes mute, press it again sound unmutes) I searched around in the tutorials but i could only find (for this purpose) complicated pan sound control stuff.

View 1 Replies

ActionScript 3.0 :: Simple Movieclip Control With Button

Sep 8, 2009

I'm used to AS1/2 and AS3 is STILL throwing me all over the place, a developer I am not.What code would I need for a simple rollover function on a button to skip a movieclip between two frames?[code]

View 9 Replies

ActionScript 2.0 :: Flash8 :: Button In A Movieclip Linking To Another Frame In A Parent Clip?

Sep 10, 2009

A movie clip called "Symbol_4" contains all of the navigation and frames of my movie.inside of Symbol_4 is a MC called "bottom scroller" which contains "imgbar" which contains "bar" which has a bunch of buttons in it.I want those buttons to link to different frames in the main "Symbol_4" MC.

I've tried putting code on a button like this

Quote:

on (release) {
tellTarget (this._parent._parent._parent) {
}

[code]....

There are no errors in any of this code, but nothing seems to work?!

View 2 Replies

ActionScript 3.0 :: Simple Show/hide Movieclip Via Button?

Sep 24, 2009

I've been looking on google, but I have found nothing at all on this, which is surprising as it is very simple to make (I have done it in AS2).I was to have a button that can hide a movieclip. Then another button which will show it again.

View 8 Replies

Flash8 :: Button Outside A Movieclip To "gotoandplay" Inside The Movieclip?

Aug 12, 2010

I have a frame with a movieclip in it (named "theclip" in the library and has the instance name of "guy"). The movieclip has two frames with stops on them. The second frame inside this movieclip has the label "guy2"

Now back in the basic frame i also have a button (outside the guy movieclip) that i'd like when i press it it jumps to the "guy2" frame of the "guy" movieclip.

Code:
on (release) {
gotoAndPlay("guy2");
}

what do i add to the script that makes it refer to the movieclip? Is there a line like the _root or _parent and so on?

View 1 Replies

Flash 8 :: Simple Button Navigation - Play / Pause MovieClip

Apr 15, 2010

I have a movieclip within the main clip called "playPause" which starts with the Pause button shown. When clicked the movie clip moves to show the play button and pauses the current parent movie with the AS "_parent.stop();" when the play button is then pressed the movie plays via "_parent.play();" and reverts back to showing the pause button.

Simple so far. What is getting me is if I add a movie clip within the parent (say some scrolling object) I cannot get the added clip to pause. For example say the "parent" movie clip the playPause moveclip is within is called "intro" and the moving object is called "introObject" which is embedded in a frame along with "playPause"

What I have setup for the playPause buttons is for pausing
_root.introObject.stop();
and playing
_root.introObject.play();

View 1 Replies

Flash8 :: Simple Text Masking?

Aug 17, 2009

I am using this tutorial and when I hit the play button the masking tween looks perfect on the stage.When I publish or use test movie however the gradient underlay shows up on top of the text.

View 7 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

ActionScript 2.0 :: Flash8 Tutorial: Simple Multi-Video Player

Mar 11, 2009

Having a bit of trouble with this. Even when I get it to work from my desktop, it still malfunctions when posted to my server.

View 1 Replies

ActionScript 2.0 :: Flash8 : Making A Simple Randomness Game - Use The On(dragover)?

Dec 16, 2009

How do i use the on(dragover), becuase i am making a simple randomness game,(to start off) because i have something that you can drag, and i want to make it if you drag the thing over it it takes you to a new keyframe.Here is the movie clip i want to be drug on: (nothing happens)

Code:
on(dragOver) {
gotoAndStop(3)
}

Heres the code that you can drag the item(works)

Code:
on(press) {
startDrag(this)[code].....

View 1 Replies

ActionScript 2.0 :: [Flash8] Simple Custom Scrollbar On Fullscreen Flash?

Aug 12, 2006

I've followed the "SimpleCustom Scrollbar" tutorial and it works great. Is there anyway to customize the AS so it'll snap to the right side of a fullscreen flash movie and function? I'm working on a fullscreen flash movie and I want the users to be able to resize the window and still be able to see the movie - just like a stock OS scrollbar.

View 2 Replies

ActionScript 3.0 :: Button In A Movieclip Not Working?

Jul 16, 2010

i have 2 movieclips, 1 with buttons and the other with the action.when i click the button nothing happens, why ????

menufilm = the movieclip with the buttons
band = the movieclip with the action
menufilm.contact.addEventListener(MouseEvent.CLICK , contact);[code]...

View 7 Replies

ActionScript 3.0 :: Button Under Movieclip Not Working

Nov 23, 2009

In AS2 you could put a button under a movieclip and it would still work so you had to put a disabled button above it to stop it working. It seems that in AS3, a movie clip will disable button rollovers underneath it but I need it work!I've done a very basic test to make sure my movie clip isn't set to buttonMode=true or anything like that but it still happens.

View 1 Replies

ActionScript 2.0 :: Can't Create A Working Button In Movieclip

Oct 14, 2010

I am trying to create a very basic concept for a program that it based around a WIMP style interface. I have created a few moving windows using movie clips and I now want to add a button inside these movieclips that would act as an exit button, but in theory just returning to the frame before these appear. The problem I am having is that anything I create inside the movie clip is not being recognised, as clicking on it just makes the program think you want to move the window. The code I have used in my actions layer to create the moving effect is[code]...

View 6 Replies

ActionScript 3.0 :: Swf Inside Movieclip Button Not Working?

Apr 7, 2010

I have four movieclip buttons inside my swf file.I have to add function on each movieclip. I tried it is not working.example code swf_name.butn1_mvc.addEventListener(MouseEvent.Cli ck, functionname);

View 4 Replies

Professional :: MovieClip Button Working But No Hand Icon

Jul 5, 2010

I am creating a somewhat elaborate (for me at least) navigation for my site. I have created a bunch of animated MC's to use as nav-buttons, and all that works great. The only issue is that when you mouse over the MC-buttons, the cursor stays as an arrow instead of turning into the little hand that always happens with links. The links work, but no little hand. Do I have to have a "hit area" defined in order to get the hand icon to popup or what?

View 7 Replies

ActionScript 2.0 :: Movieclip As Button HitTest Working Intermittent?

Jul 9, 2004

I was playing around last night trying to learn simple AS to make a movie clip act like a button. I wanted the button movie clip to reduce the alpha value of the other movie clip when you rollover the button and when you roll off the button the alpha of the movie clip goes back up. It works, but if you keep rolling over and out of the button movieclip sometimes the alpha gets stuck at a certain value for a bit, then does what its supposed to. I'm using onEnterFrame () to do the hitTest constantly.

Here's the SWF and FLA files for you to look through:

hitTest SWF
hitTest FLA

Here's the AS code I used in the frame to do this:

Code:
onEnterFrame = function() {
if ( background._alpha > 100 ) {
background._alpha = 100;

[code]....

View 12 Replies

Flash8 :: Achievements Appear Once Not Working?

Jan 18, 2010

I'm making an game which i want to intergrate acheivements, I've got everything working to an extent but I've isolated code and put it in a test to show my problem. I have a MC called "ach" (without ") and inside that i have another MC called a1 , a2 , a3. They are animated to disappear after say 45 frames. I've put my acheivements on buttons just to test them, but in my game you get them for say playing for 1 hour or collecting all items and some for clicking hidden buttons etc. but when I click the buttons again the acheive MC keeps appearing. I only want it to appear once.This is the code I have got that doesnt work.

Button Code :

Code:
on (release) {
_root.ach.gotoAndStop(3)
}

[code]....

View 1 Replies

Flash8 :: Preloader Isn't Actually Working?

Mar 15, 2010

my preloader isn't actually working,trying to load the page on a PC with quite slow internet... The story is following - my preloader animation plays, but only after the whole movie is loaded, cuz I noticed a huge delay before the preloader was actually played... And then I used that flash speed testing thing (sorry, but I don't know how it's called) and it proved my theory... That's the code on 1-st frame, where preloader is:

Actionscript Code:
stop();var loaded:Number = getBytesLoaded();var total:Number = getBytesTotal();var percent:Number = Math.floor((loaded*100)/total);if (loaded == total){gotoAndPlay (2);}else{    _preloader.gotoAndPlay(percent);    //loadBar.percentage.text = percent;}[code].....

View 5 Replies







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