ActionScript 2.0 :: Actions Outside The Symbol?
Sep 11, 2010
how can I make an action cause things to happen outside of a symbol?Suppose I have a button inside a movieclip. The frame that the movieclip is on has a stop(); action applied to it. I want to make it so that when the button is clicked, the frame which the movieclip is on gets "Un-stopped" how to do this?
View 1 Replies
Similar Posts:
Oct 2, 2009
I am an newbie trying to take an existing Flash game and modifying it for my own selfish goals. I am duplicating symbols and trying to preserve all of their actions so that I can then swap them out for my own symbols. When I swap, actions are preserved, but I have run out of symbols to swap, so now I am trying to duplicate the remaining symbol so I have more to swap with, but when I duplicate the actions are lost. I have adjusted the actions code to accommodate more symbols ( or at least I think I have)
View 8 Replies
Nov 16, 2009
I have created a symbol with its own timeline and actions.It works fine in a Scene test but as when taken into a scene and a movie test is carried out, none of the interactive features built into the symbol work.
View 2 Replies
Aug 9, 2011
this is a super newbie question, but i can't figure it out. I have a flash project(not mine), where i can find several symbol definitions in the Actions Frame. How to add symbol definitions there? I managed to create symbols by dragging (for example) items from library on stage and then pressing F8. I can get a reference on them in the Action Layer(frame 1) under Scene1, but i would like to know how to add these under Symbol Definition(s). Sorry for the question, but i am new to Flash Professional.
View 1 Replies
Sep 27, 2010
For some reason I can't add ActionScript actions to a timeline frame within a Button Symbol, like I normally would with MovieClip symbols or on the stage. The Actions panel shows this message:"In ActionScript 3.0, code cannot be placed directly on objects. Please select a frame..."even though I definetely have a frame selected.
EDIT: Screenshot as requested. As you can see, a frame is clearly selected...
View 1 Replies
Jun 19, 2011
I have a series of frames one the timeline. Each frame has a graphic and a mouse click leads to the next frame. Think Myst.
[Code]...
When the middle frame is returned to, clicks no longer change anything. I believe that the actions of the 'left' frame are replacing the one's in the middle frame so then it is told to gotoAndStop to itself.
I'd like to know if that is indeed what is happening and how I can make it stop.
View 1 Replies
Sep 29, 2010
1. Can i put another set of actions in frame 2 of the actions layer?i tested but it doesn't seem to work..it has 836 rows of code and it's getting annoying when tryin to search for a function..
2. I am not that familiar with classes, i usually put all the code into movieclips or in actions layer.. i am not sure if i can call a function from a actionscript class..
3.I am curios if there is any way i could specify an alternative for the if statement like in this pseudocode:
if ( apple is not clean BUT is tasty)
{
eat(apple)
}
View 5 Replies
Nov 22, 2011
I have a project in Flash Professional CS5 and ActionScript 3.
I have a movieclip symbol (referred herein as "background" with scripts on various keyframes inside of that symbol. I need to hide or show another symbol (referred herein as "object") sharing a stage with "background".
To put it another way, I need "object" to be hidden when "background" reaches a certain internal keyframe. However, as "object" and "background" are both children of the same stage, how do I do this?
View 1 Replies
Dec 25, 2004
what i want to do is, when certain button is clicked, replace a certain symbol(button) by another symbol(movieclip) stored in the library. i try things like loadmovie("","") to replace the symbol from a external jpg, but some how it does not align even both images are exact dimension. can i replace an image straight from the library?
View 1 Replies
Aug 5, 2011
I animated eyes blinking inside of a movie clip symbol and placed the symbol on a face outside of the symbol.The eyes are stuck on the first frame. I am using CS5. What do I do?
View 5 Replies
Sep 3, 2010
How do i get the hitTest() function to test if a certain symbol is hitting another symbol, but, only if drawn parts of the symbol are touching, not thier outer bounds.
View 2 Replies
May 16, 2011
Basically there's an object in a movieclip. I want to find the location of that object in relation to the movieclip, not of the object's symbol. So when i look at the x and y of it, it wont show 0, it will show the x and y location in the movieclip it's in.
View 2 Replies
Jul 10, 2010
I'm, trying to create a duplicate symbol and then be able to drag the symbol around the screen.I have an image - once converted to a button and on the stage as paddock_btn. The other converted to paddock_mc in the library, with a linkage identifier of "paddock".I want to be able to click the button, and create a duplicate, which can be dragged and placed on the screen.Unfortunately, I don't get any output errors here.
Code:
//create a function to duplicate paddock
function dupe_paddock():Void {
i = i + 1;
[code]....
View 4 Replies
Apr 24, 2005
I have a scrollout menu for my flash movie, but each of the buttons have to be movies symbols. I try to attach:
on (release) {
gotoand stop(4)
}
But I get the error that this script only works for buttons. Anyone able to lend some assist? I suck at actionscript.
View 1 Replies
Sep 25, 2009
So i've done SOME work with flash and AS3, right now i'm working on a website for my boss, he bought some template online which has stuff laid out and animated and everything already, now I just have to integrate our content.My issue is this, I've got 2 symbols on the screen, one of which contains alot of buttons that list our services as company, the second symbol contains the content (or descriptions) of those services, which on are separate keyframes.What I'm trying to accomplish is that when you hit the button in "symbol A", it affects the "symbol B" and goes to the corresponding keyframe.For example when I click "button 2" in "symbol A", "symbol B" goes to keyframe 2.Now if they were in the same symbol it would be something like
on(release){
goToAndStop(2);
}
[code]....
View 7 Replies
Feb 13, 2011
I am following this tutorial, [URL] and everything works until i actually try to place a graphic symbol into another symbol. I am trying to make a character walk across the stage. Flash tells me I cannot place a symbol within itself. Why not and how can i!!
View 1 Replies
Jul 13, 2003
I'm making something for my site where you can design your own character. I am trying to set it so when you select a hair style, it'll change the hair style on the person(I already know how to change the color and stuff). How do I do that?? I thought I could do it so it would switch the movie clip with the design of the button you press to get it to change the hair
View 11 Replies
Dec 9, 2010
Library symbol "Card" is linked to class "Card" which extends "MovieClip". Library symbol "Card" contains a card background image.Library symbol "Ace" is linked to class "Ace", which extends class "Card". Library symbol "Ace" contains a TextField with a big letter "A".So we have Ace extends Card which extends MovieClip. Ace therefore extends MovieClip, but does not DIRECTLY extend MovieClip.When I drop an instance of Ace on the stage and compile the clip, all that shows up is the big letter A. However, I expected the background image from Card to be included, since Ace extends Card, and the Card symbol contains the background.It seems like Flash ignores symbol content unless it belongs to the top-level class being instantiated.I think it's LAME that one symbol can't extend another. The IDE could easily draw Card as a non-editable background while I'm editing Ace which extends it, and it should instantiate Card's content and then Ace's content when an Ace is instantiated.
View 3 Replies
Nov 5, 2011
How do you view and edit a button symbol's instance name after you have made the button symbol?
View 3 Replies
Jun 8, 2010
Finally made some dropdown menus for my basic flash website, but now I don't know how to actionscript the symbol (the dropdown menu) within the symbol, which is my page. Because I need the options that come up from the inner symbol to dictate what frame you go to.So my question is, how do you actionscript a symbol within a symbol?
View 3 Replies
Aug 17, 2010
I got this early version of a sliding menu. See file "scrolling.fla". Its got four images that slides into place when you click on the small colored buttons. The thing is I want the movie to quit/shut down when I press the red button, AFTER the red image has moved back in place.The code for the red button is:
on (press) {
_root.xnew = _root.mask2._x+(-2-1)*458.5/2;
}
I added the following:
on (rollOut) {
_root.unloadMovie();
}
It works in a sense but I dont want to use "on (rollOut)", because you might shut down the slideshow involuntary moving the cursor on your way to the other buttons. So the question is, yet again, how to quit the movie after the red image is back in place?
View 6 Replies
Aug 6, 2011
I am trying to add some actions to artwork, is for a button, fox example the output says:
Scene=Scene 1, Layer=Actions, Frame=1: Line 1: Wrong number of parameters; set requires exactly 2.
set ("boxStatus"); = "0"
Scene=Scene 1, Layer=Layer 1, Frame=1: Line 1: Mouse events are permitted only for button instances
[code]....
View 3 Replies
Sep 30, 2009
i have a scrollbar that controls the action within a movieclip called "future". The code for this works just fine when it's placed in root, but when i put this in a movieclip by its own, a can't get it to snap and control anymore.I would like to but this code and movieclip and put in in a clip called "scroll". The for it to control the same thing as it does now ,_parent.future.gotoAndStop("a"); etc.[code]
View 1 Replies
Jul 23, 2010
I am trying to create a history of the actions, perhaps stored in an array, I make in flash so that I can have a button that allows the user to go back to a previous action
View 3 Replies
May 4, 2011
I'm using flash 8, I'm tired of having one monitor share the timeline, stage, actions and properties window. I'd like to detach my actions window and place it on my other monitor. Is this possible?
View 2 Replies
Oct 30, 2011
is it possible to add multiple actions to the same button.e.g.on stage theres only one button, on first click it should make mc1 visible , on second click it should make mc2 visible and so on.
View 3 Replies
May 31, 2009
Don't ask me how, but I've made my Actions Frame way too long and I can't drag it up high enough to size it correctly. Consequently, I'm not seeing the end of my code without adding a whole bunch of empty space.
View 3 Replies
Jun 29, 2009
I am unable to view the Actions Panel window in a document I've already done a lot of work in. It worked previously - I created an Actions Layer and was able to add action script, however, when I try to open it back up to edit the action script I wrote, neither the F9 shortcut nor the Windows>Actions pulls up the Actions Panel. In fact, when I try either method, nothing happens.
View 3 Replies
Apr 6, 2010
When creating a website in Flash, I have made the buttons but I am unable to add an action to the buttons. A message appears to say 'current selection cannot have actions applied to it'. I have followed the tutorial to the letter without any success - what am i missing?
View 1 Replies
Sep 30, 2011
After working fine for about a month, all of a sudden I can't type anything in the Actions box. I can select and enter code snippets, but if I try to edit the code, it disappears. If I start a new Flash file (doesn't matter which Actionscript version, 2.0 or 3.0), the cursor briefly flashes, and then disappears and I can't enter any code in the new file. I can create and edit .as files -- it's only the Actions box for .fla files that's problematic.
View 1 Replies