Pathing within Action Script Problems

I have code that uses multiple button functions within different movie clips, here is a sample of the code in the last frame of the last movie clip:
stop();
var xmlholderNewsNetwork:URLLoader=new URLLoader(new URLRequest("NewsNetwork.xml"));
xmlholderNewsNetwork.addEventListener(Event.COMPLETE,onloadNewsNetwork);
function onloadNewsNetwork(e:Event):void {
    feed.text="";
     var xml:XML=new XML(xmlholderNewsNetwork.data);
     for (var i:Number=0; i<xml.story.length(); i++) {
         feed.appendText(xml.story[i].storyname+"\n"+xml.story[i].body+"\n\n");
topmenu.home.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerHomeNewsNetwork);
function mouseDownHandlerHomeNewsNetwork(event:MouseEvent){
     Content.ContentHome.gotoAndPlay(17);   
topmenu.Enlist.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerEnlistNewsNetwork);
function mouseDownHandlerEnlistNewsNetwork(event:MouseEvent){
         navigateToURL(new URLRequest("https://spreadsheets.google.com/viewform?key=psvc5aYhLuFoImejmLioWew&hl=en"));
     topmenu.Roster.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerRosterNewsNetwork);
function mouseDownHandlerRosterNewsNetwork(event:MouseEvent){
         Content.ContentRoster.gotoAndStop(36);   
     topmenu.Forums.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerForumsNewsNetwork);
function mouseDownHandlerForumsNewsNetwork(event:MouseEvent){
      navigateToURL(new URLRequest("http://fifthfleetforums.proboards.com/index.cgi"));
     topmenu.Commendations.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerCommenNewsNetwork);
function mouseDownHandlerCommenNewsNetwork(event:MouseEvent){
     Content.ContentCommendations.gotoAndStop(36);   
         topmenu.Forms.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandlerFormsNewsNetwork);
function mouseDownHandlerFormsNewsNetwork(event:MouseEvent){
     Content.ContentForms.gotoAndStop(36);   
    ect....
This code is in Scene1->Content (the instance name)->ContentNewsNetworkd(the instance name, it is a movie clip)
The path, as I think of it is, Scene1.Content.ContentNewsNetwork.  However I am getting errors saying that:
1120: Access of undefined property Content.
and
1120: Access of undefined property topmenu.
The buttons are contanted in Scene1->topmenu (instance name)-> then each button, is its own button.
Can someone help me, and if you are confused please tell me and I will try to explain better.
Thanks
Faedother

I'll whittle it down to one of each...
root - Content - ContentNewsNetwork <code is in this timeline>
root - Content - ContentHome
roott- topmenu - home
The least mind boggling way to command the ContentHome and home timelines/contents would be to use a root reference...
MovieClip(this.root).Content.ContentHome.gotoAndPlay(...
MovieClip(this.root).topmenu.home.alpha = ....
The next approach could be a little more relative to the current location...
MovieClip(this.parent).ContentHome.gotoAndStop(...
MovieClip(this.parent.parent).topmenu.home.visible = ....
And the more mind boggling/time consuming/oo-politically correct way would be to add event dispatchers and listeners so that you in no way utilize root or parent references in your code.  I'll spare you that one, but if you are interested, here's a link to learn a little more about it:  http://forums.adobe.com/thread/470135?tstart=120

Similar Messages

  • Action script problem for audio player

    i have made a introduction with a  audio and controller. I am facing one problem. I will like to play as  soon as some one enter the page but it does not.
    My action script is pasted below and kindly advise me for any changes that can be done
    var soundReq:URLRequest = new URLRequest("Sonu Nigam_Alka Yagnik - Suraj Hua M.mp3");
    var sound:Sound = new Sound();
    var soundControl:SoundChannel = new SoundChannel();
    var volumeControl:SoundTransform = new SoundTransform();
    var resumeTime:Number = 0;
    sound.load(soundReq); sound.addEventListener(Event.COMPLETE, onComplete);
    up_btn.addEventListener(MouseEvent.CLICK, increaseVolume);
    down_btn.addEventListener(MouseEvent.CLICK, decreaseVolume);
    function onComplete(event:Event):void
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    stop_btn.addEventListener(MouseEvent.CLICK, stopSound);
    function playSound(event:MouseEvent):void
    { soundControl = sound.play(resumeTime);
    pause_btn.visible = true;
    pause_btn.addEventListener(MouseEvent.CLICK, pauseSound);
    play_btn.visible = false; play_btn.removeEventListener(MouseEvent.CLICK, playSound);
    function pauseSound(event:MouseEvent):void {
    resumeTime = soundControl.position;
    soundControl.stop();
    play_btn.visible = true;
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    pause_btn.visible = false;
    pause_btn.removeEventListener(MouseEvent.CLICK, pauseSound);
    function stopSound(event:MouseEvent):void {
    soundControl.stop();
    play_btn.visible = true;
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    pause_btn.visible = false; pause_btn.removeEventListener(MouseEvent.CLICK, pauseSound);
    function increaseVolume(event:MouseEvent):void {
    volumeControl.volume += .5;
    soundControl.soundTransform = volumeControl;
    function decreaseVolume(event:MouseEvent):void {
    volumeControl.volume -= .5;
    soundControl.soundTransform = volumeControl;
    pause_btn.visible = false;

    i am having big problem with the coding below with the sound. As it we enter the site, the music auto start very loud which is not good at all for the ear drums. How do i adjust that?
    www.hitenkajal.co.uk
    var soundReq:URLRequest = new URLRequest("10 Kabhi Alvida Naa Kehna_0.mp3");
    var sound:Sound = new Sound();
    var soundControl:SoundChannel = new SoundChannel();
    var volumeControl:SoundTransform = new SoundTransform();
    var resumeTime:Number = 0;
    sound.load(soundReq);
    sound.addEventListener(Event.COMPLETE, onComplete);
    up_btn.addEventListener(MouseEvent.CLICK, increaseVolume);
    down_btn.addEventListener(MouseEvent.CLICK, decreaseVolume);
    function onComplete(event:Event):void
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    stop_btn.addEventListener(MouseEvent.CLICK, stopSound);
    function playSound(event:MouseEvent):void
    soundControl = sound.play(resumeTime);
    pause_btn.visible = true;
    pause_btn.addEventListener(MouseEvent.CLICK, pauseSound);
    play_btn.visible = false;
    play_btn.removeEventListener(MouseEvent.CLICK, playSound);
    function pauseSound(event:MouseEvent):void
    resumeTime = soundControl.position;
    soundControl.stop();
    play_btn.visible = true;
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    pause_btn.visible = false;
    pause_btn.removeEventListener(MouseEvent.CLICK, pauseSound);
    function stopSound(event:MouseEvent):void
    soundControl.stop();
    play_btn.visible = true;
    play_btn.addEventListener(MouseEvent.CLICK, playSound);
    pause_btn.visible = false;
    pause_btn.removeEventListener(MouseEvent.CLICK, pauseSound);
    function increaseVolume(event:MouseEvent):void
    volumeControl.volume = 1;
    soundControl.soundTransform = volumeControl;
    function decreaseVolume(event:MouseEvent):void
    volumeControl.volume = 0.1;
    soundControl.soundTransform = volumeControl;
    pause_btn.visible = false;
    playSound(null);

  • As2 form not working within action scripts

    this script is working on online but when i put this code within my project action scripts, its not working,,,
    stop();
    System.useCodepage = true;
    send_btn.onRelease = function() {
        my_vars = new LoadVars();
        my_vars.sender = email_box.text;
        my_vars.subject = subject_box.text;
        my_vars.message = message_box.text;
        if (my_vars.sender != "" and my_vars.subject != "" and my_vars.message != "") {
            my_vars.sendAndLoad("mailer.php", my_vars, "POST");
            gotoAndStop(72);
        } else {
            error_clip.gotoAndPlay(72);
        my_vars.onLoad = function() {
            gotoAndStop(73);
    email_box.onSetFocus = subject_box.onSetFocus=message_box.onSetFocus=function () {
        if (error_clip._currentframe != 1) {
            error_clip.gotoAndPlay(6);

    Are you testing on a server?  If not, do you have PHP installed to support trying to call upon a PHP file?

  • Scroll panel action script problem

    Hi, I have the following action script:
    and its giving me the following errors:
    Location: Scene 1, Layer 'action', Frame 1, Line 11
    Description: 1120: Access of undefined prperty _xmouse,
    Source: if(_xmouse<b.xMin || _xmouse>b.xMax || _ymouse
    <b.yMin || _ymouse>b.yMax) {
    Location: Scene 1, Layer 'action', Frame 1, Line 11
    Description: 1120: Access of undefined prperty _xmouse,
    Source: if(_xmouse<b.xMin || _xmouse>b.xMax || _ymouse
    <b.yMin || _ymouse>b.yMax) {
    Location: Scene 1, Layer 'action', Frame 1, Line 11
    Description: 1120: Access of undefined prperty _ymouse,
    Source: if(_xmouse<b.xMin || _xmouse>b.xMax || _ymouse
    <b.yMin || _ymouse>b.yMax) {
    Location: Scene 1, Layer 'action', Frame 1, Line 11
    Description: 1120: Access of undefined prperty _ymouse,
    Source: if(_xmouse<b.xMin || _xmouse>b.xMax || _ymouse
    <b.yMin || _ymouse>b.yMax) {
    Location: Scene 1, Layer 'action', Frame 1, Line 24
    Description: 1120: Access of undefined prperty _xmouse,
    Source: var xdist = _xmouse - 185;
    Location: Scene 1, Layer 'action', Frame 1, Line 8
    Description: 1120: Access of undefined prperty _root,
    Source: var b = stroke.getBounds(_root);
    Location: Scene 1, Layer 'action', Frame 1, Line 11
    Description: 1120: Access of undefined prperty _ymouse,
    Source: if(_xmouse<b.xMin || _xmouse>b.xMax || _ymouse
    <b.yMin || _ymouse>b.yMax) {
    HERE IS MY ACTION SCRIPT
    HERE IS MY FILE
    flash5.fla
    I used the following tutorial
    http://www.gotoandlearn.com/
    Scrolling Thumbnail Panel.
    Please help as to what I should do to fix it please.

    I can't be certain, because I don't have Flash CS3 on my
    computer, but it reads as though your publish settings are set to
    the wrong version of Actionscript. The code you have attached is
    Actionscript 2, and those errors sound like something that would be
    spit out if you are trying to publish to Actionscript 3. Check your
    publish settings, and change to AS2. If you are already on AS2,
    reply, and will look into further.
    Hope this helps.

  • Action Script problem with scrolling images

    doing a tutorial and got to the stage of action scripting mouse control for scrolling images.
    checked the script in Actions. And said it was ok...No errors found.
    Tested the movie and there were 2 compiler errors reported.
    Scene 1. layer 'action script', Frame 1, line 1: 1120:Access of undefined property _root. _root.onEnterFrame=funtion(){
    Scene 1. layer 'action script', Frame 1, line 2: 1120:Access of undefined property _root. _if(_root._xmouse<50){
    Scene 1. layer 'action script', Frame 1, line 1: Warning: 1058: Migration issue: The property _root.onEnterFrame=funtion(){
    Can anyone help me understand this.
    thanks

    It sounds like you are mixing up AS2 code with AS3 compiling.  You may need to change you publish settings to AS2.

  • Tower Defense Action Script Problem

    Hi, I've been working my way through a tutorial to create a tower defense game. I've ran into a slight problem with a bit of code:
    package{
              imporProxy-Connection: keep-alive
              Cache-Control: max-age=0
    I get an Identifier 1078 error, I was hoping that someone might be able to tell me a little more about what this is doing, and
    if anyone knows of a solution. Any help would be greatly appreciated!
    Here is the link for the tutorial
    http://www.flashgametuts.com/tutorials/as3/how-to-create-a-tower-defense-game-in-as3-part- 2/

    Remove the 2 lines. They're not AS.
    imporProxy-Connection: keep-alive
    Cache-Control: max-age=0

  • Action script problem

    I have an .as file with this code within it
    so when the send_pb button is pushed then onSendMessage
    causes the message to be sent.....I'd like the enter key on the
    keyboard to do the same thing. I tried various ways to do it within
    the .as file but nothing seems to work.

    Hi,
    Just try to add the listener Object for the KeyBoard
    And in the KeyPress Enter, you just check out the Focus,
    if it is in the target movieclip , you just call the same
    function what you have in the button on
    Release......function....

  • Tell which Script (or Action) you are running from within that script

    Is there a way within a script to tell the name of the javascript file you are running?
    For example, if I'm running "My Actions/clipOut.jsx" can I set a variable to return "My Actions/clipOut.jsx"?
    (or if I'm running action "Clip Out" of Action Set "My Actions", is there a way to return that info in a script?)
    thanks!!

    dgoldberg
    I'm sorry I wasn't clear in my question:
    As I work on a javascript file I keep my test version on my local machine and push out a final version to a server when my updates are complete.  Then other people access the version on the server to run their actions.  The problem is that I'd like my action to behave differently depending on whether it's the test version or the server version.  If I could get the name/path of the script I'm running (while running the script), I could build out different behaviors whether the version of the script was local or on the server.
    For example, my actions work in unison with many other actions.  It would be nice if my local actions only access other local actions, and server actions only accessed other server actions.
    Does that make sense?

  • Problem with action script from Schewe and Frasier book.

    I am working on a Photoshop CS3 action script to
    open raw files, do a couple of modifications
    in Camera Raw, exit camera raw and save
    the file as a jpeg.
    I think this should work, because I am working
    on an example out of "Camera raw with Adobe
    Photoshop CS3" by Schewe and Frasier which
    shows the step recorded.
    See page 344 of Schewe and Frasier.
    In figure 9-11 you see, after the open
    statement, 10 lines of details like
    "As camera raw"
    "Model:Canon 350d" etc.
    I get the file path and name line, but
    none of the other details reflecting
    actions in Camera Raw.
    The problem is that in setting up the action, none
    of the steps done in camera raw after I do the
    open get recorded.
    And it works in my old CS version !
    Out of frustration I repeated the action
    script creation in my old CS version and
    it worked fine.
    Any idea where I am screwing up ?

    Crappy format justification:
    I sometimes have a day of family
    type pictures that are in raw format
    that I want to put up on the internet
    quickly. I would like to be able to
    apply the "Auto" feature, as in general
    it seems to be pretty good for something
    quick.
    OK, it sorta works in CS, go here
    http://www.angelplace.net/photos/sample.jpg
    It sets up all of the details and gets the
    "As camera raw" but opens the .dng file
    rather than the Camera raw window.
    The point is, these important settings
    seem to be saved, which does not happen
    in CS3.

  • Offset Paths in Actions problem...

    Hi guys!
    I work in the printing industry and am trying to create an action that would automatically create a trap and pullback for a certain item. The action has been created and works well except for one thing.
    When I record the step where I offset a path by a negative amount (in this case -.0035), the action will work every time UNTIL I quit Illustrator and reopen. It will instead offset that path by positive .0035. I checked the action steps in TextEditor and it registers that I want it offset -.0035, but the step inside the Actions panel says .0035.
    The total action is to change the color from MYK to K set to darken, then offset -.0035. Then, it's to change that offset path from K to MY and then offset again to -.0065. That offset path is changed from MY back to MYK and set to normal. So I basically end up with 3 layers of the object each set to a different color and smaller than the previous.The entire action script is posted below.
    Has anyone else experienced this? I'm a novice when it comes to creating actions so please feel free to let me know if I've missed a step or done something wrong. Thanks so much!
    /version 3
    /name [ 5
        41646f6265
    /isOpen 1
    /actionCount 2
    /action-1 {
        /name [ 6
            4b6574746c65
        /keyIndex 0
        /colorIndex 0
        /isOpen 1
        /eventCount 11
        /event-1 {
            /useRulersIn1stQuadrant 0
            /internalName (adobe_ungroup)
            /localizedName [ 7
                556e67726f7570
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 0
        /event-2 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_setColor)
            /localizedName [ 9
                53657420636f6c6f72
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 7
            /parameter-1 {
                /key 1768186740
                /showInPalette 4294967295
                /type (ustring)
                /value [ 10
                    46696c6c20636f6c6f72
            /parameter-2 {
                /key 1718185068
                /showInPalette 4294967295
                /type (boolean)
                /value 1
            /parameter-3 {
                /key 1954115685
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 10
                    434d594b20636f6c6f72
                /value 4
            /parameter-4 {
                /key 1668899182
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-5 {
                /key 1835496545
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-6 {
                /key 2036690039
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-7 {
                /key 1651270507
                /showInPalette 4294967295
                /type (unit real)
                /value 82.0
                /unit 592474723
        /event-3 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_transparency)
            /localizedName [ 12
                5472616e73706172656e6379
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 1
            /parameter-1 {
                /key 1836016741
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 6
                    4461726b656e
                /value 8
        /event-4 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_offset)
            /localizedName [ 11
                4f66667365742050617468
            /isOpen 0
            /isOn 1
            /hasDialog 1
            /showDialog 0
            /parameterCount 3
            /parameter-1 {
                /key 1868985204
                /showInPalette 4294967295
                /type (unit real)
                /value -0.2520000041
                /unit 592476268
            /parameter-2 {
                /key 1835627634
                /showInPalette 4294967295
                /type (real)
                /value 4.0
            /parameter-3 {
                /key 1785623664
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 5
                    4d69746572
                /value 2
        /event-5 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_setColor)
            /localizedName [ 9
                53657420636f6c6f72
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 7
            /parameter-1 {
                /key 1768186740
                /showInPalette 4294967295
                /type (ustring)
                /value [ 10
                    46696c6c20636f6c6f72
            /parameter-2 {
                /key 1718185068
                /showInPalette 4294967295
                /type (boolean)
                /value 1
            /parameter-3 {
                /key 1954115685
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 10
                    434d594b20636f6c6f72
                /value 4
            /parameter-4 {
                /key 1668899182
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-5 {
                /key 1835496545
                /showInPalette 4294967295
                /type (unit real)
                /value 78.0
                /unit 592474723
            /parameter-6 {
                /key 2036690039
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-7 {
                /key 1651270507
                /showInPalette 4294967295
                /type (unit real)
                /value 82.0
                /unit 592474723
        /event-6 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_setColor)
            /localizedName [ 9
                53657420636f6c6f72
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 7
            /parameter-1 {
                /key 1768186740
                /showInPalette 4294967295
                /type (ustring)
                /value [ 10
                    46696c6c20636f6c6f72
            /parameter-2 {
                /key 1718185068
                /showInPalette 4294967295
                /type (boolean)
                /value 1
            /parameter-3 {
                /key 1954115685
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 10
                    434d594b20636f6c6f72
                /value 4
            /parameter-4 {
                /key 1668899182
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-5 {
                /key 1835496545
                /showInPalette 4294967295
                /type (unit real)
                /value 78.0
                /unit 592474723
            /parameter-6 {
                /key 2036690039
                /showInPalette 4294967295
                /type (unit real)
                /value 58.0
                /unit 592474723
            /parameter-7 {
                /key 1651270507
                /showInPalette 4294967295
                /type (unit real)
                /value 82.0
                /unit 592474723
        /event-7 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_setColor)
            /localizedName [ 9
                53657420636f6c6f72
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 7
            /parameter-1 {
                /key 1768186740
                /showInPalette 4294967295
                /type (ustring)
                /value [ 10
                    46696c6c20636f6c6f72
            /parameter-2 {
                /key 1718185068
                /showInPalette 4294967295
                /type (boolean)
                /value 1
            /parameter-3 {
                /key 1954115685
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 10
                    434d594b20636f6c6f72
                /value 4
            /parameter-4 {
                /key 1668899182
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-5 {
                /key 1835496545
                /showInPalette 4294967295
                /type (unit real)
                /value 78.0
                /unit 592474723
            /parameter-6 {
                /key 2036690039
                /showInPalette 4294967295
                /type (unit real)
                /value 58.0
                /unit 592474723
            /parameter-7 {
                /key 1651270507
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
        /event-8 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_offset)
            /localizedName [ 11
                4f66667365742050617468
            /isOpen 0
            /isOn 1
            /hasDialog 1
            /showDialog 0
            /parameterCount 3
            /parameter-1 {
                /key 1868985204
                /showInPalette 4294967295
                /type (unit real)
                /value -0.4679999948
                /unit 592476268
            /parameter-2 {
                /key 1835627634
                /showInPalette 4294967295
                /type (real)
                /value 4.0
            /parameter-3 {
                /key 1785623664
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 5
                    4d69746572
                /value 2
        /event-9 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_setColor)
            /localizedName [ 9
                53657420636f6c6f72
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 7
            /parameter-1 {
                /key 1768186740
                /showInPalette 4294967295
                /type (ustring)
                /value [ 10
                    46696c6c20636f6c6f72
            /parameter-2 {
                /key 1718185068
                /showInPalette 4294967295
                /type (boolean)
                /value 1
            /parameter-3 {
                /key 1954115685
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 10
                    434d594b20636f6c6f72
                /value 4
            /parameter-4 {
                /key 1668899182
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-5 {
                /key 1835496545
                /showInPalette 4294967295
                /type (unit real)
                /value 78.0
                /unit 592474723
            /parameter-6 {
                /key 2036690039
                /showInPalette 4294967295
                /type (unit real)
                /value 58.0
                /unit 592474723
            /parameter-7 {
                /key 1651270507
                /showInPalette 4294967295
                /type (unit real)
                /value 82.0
                /unit 592474723
        /event-10 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_transparency)
            /localizedName [ 12
                5472616e73706172656e6379
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 1
            /parameter-1 {
                /key 1836016741
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 6
                    4e6f726d616c
                /value 0
        /event-11 {
            /useRulersIn1stQuadrant 0
            /internalName (adobe_stop)
            /localizedName [ 4
                53746f70
            /isOpen 0
            /isOn 1
            /hasDialog 1
            /showDialog 1
            /parameterCount 2
            /parameter-1 {
                /key 1952807028
                /showInPalette 1
                /type (ustring)
                /value [ 25
                    50756c6c6261636b20616e6420547261702043726561746564
            /parameter-2 {
                /key 1668247156
                /showInPalette 4294967295
                /type (boolean)
                /value 0
    /action-2 {
        /name [ 13
            4f666673657420456666656374
        /keyIndex 39
        /colorIndex 0
        /isOpen 0
        /eventCount 13
        /event-1 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_setColor)
            /localizedName [ 9
                53657420636f6c6f72
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 7
            /parameter-1 {
                /key 1768186740
                /showInPalette 4294967295
                /type (ustring)
                /value [ 10
                    46696c6c20636f6c6f72
            /parameter-2 {
                /key 1718185068
                /showInPalette 4294967295
                /type (boolean)
                /value 1
            /parameter-3 {
                /key 1954115685
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 10
                    434d594b20636f6c6f72
                /value 4
            /parameter-4 {
                /key 1668899182
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-5 {
                /key 1835496545
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-6 {
                /key 2036690039
                /showInPalette 4294967295
                /type (unit real)
                /value 58.0
                /unit 592474723
            /parameter-7 {
                /key 1651270507
                /showInPalette 4294967295
                /type (unit real)
                /value 82.0
                /unit 592474723
        /event-2 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_setColor)
            /localizedName [ 9
                53657420636f6c6f72
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 7
            /parameter-1 {
                /key 1768186740
                /showInPalette 4294967295
                /type (ustring)
                /value [ 10
                    46696c6c20636f6c6f72
            /parameter-2 {
                /key 1718185068
                /showInPalette 4294967295
                /type (boolean)
                /value 1
            /parameter-3 {
                /key 1954115685
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 10
                    434d594b20636f6c6f72
                /value 4
            /parameter-4 {
                /key 1668899182
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-5 {
                /key 1835496545
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-6 {
                /key 2036690039
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-7 {
                /key 1651270507
                /showInPalette 4294967295
                /type (unit real)
                /value 82.0
                /unit 592474723
        /event-3 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_transparency)
            /localizedName [ 12
                5472616e73706172656e6379
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 1
            /parameter-1 {
                /key 1836016741
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 6
                    4461726b656e
                /value 8
        /event-4 {
            /useRulersIn1stQuadrant 0
            /internalName (adobe_copy)
            /localizedName [ 4
                436f7079
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 0
        /event-5 {
            /useRulersIn1stQuadrant 0
            /internalName (adobe_pasteInFront)
            /localizedName [ 14
                506173746520696e2046726f6e74
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 0
        /event-6 {
            /useRulersIn1stQuadrant 0
            /internalName (adobe_commandManager)
            /localizedName [ 16
                416363657373204d656e75204974656d
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 3
            /parameter-1 {
                /key 1769238125
                /showInPalette 4294967295
                /type (ustring)
                /value [ 16
                    4c697665204f66667365742050617468
            /parameter-2 {
                /key 1818455661
                /showInPalette 4294967295
                /type (ustring)
                /value [ 25
                    4566666563743a20506174683a204f66667365742050617468
            /parameter-3 {
                /key 1668114788
                /showInPalette 4294967295
                /type (integer)
                /value 2164261180
        /event-7 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_setColor)
            /localizedName [ 9
                53657420636f6c6f72
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 7
            /parameter-1 {
                /key 1768186740
                /showInPalette 4294967295
                /type (ustring)
                /value [ 10
                    46696c6c20636f6c6f72
            /parameter-2 {
                /key 1718185068
                /showInPalette 4294967295
                /type (boolean)
                /value 1
            /parameter-3 {
                /key 1954115685
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 10
                    434d594b20636f6c6f72
                /value 4
            /parameter-4 {
                /key 1668899182
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-5 {
                /key 1835496545
                /showInPalette 4294967295
                /type (unit real)
                /value 78.0
                /unit 592474723
            /parameter-6 {
                /key 2036690039
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-7 {
                /key 1651270507
                /showInPalette 4294967295
                /type (unit real)
                /value 82.0
                /unit 592474723
        /event-8 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_setColor)
            /localizedName [ 9
                53657420636f6c6f72
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 7
            /parameter-1 {
                /key 1768186740
                /showInPalette 4294967295
                /type (ustring)
                /value [ 10
                    46696c6c20636f6c6f72
            /parameter-2 {
                /key 1718185068
                /showInPalette 4294967295
                /type (boolean)
                /value 1
            /parameter-3 {
                /key 1954115685
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 10
                    434d594b20636f6c6f72
                /value 4
            /parameter-4 {
                /key 1668899182
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-5 {
                /key 1835496545
                /showInPalette 4294967295
                /type (unit real)
                /value 78.0
                /unit 592474723
            /parameter-6 {
                /key 2036690039
                /showInPalette 4294967295
                /type (unit real)
                /value 58.0
                /unit 592474723
            /parameter-7 {
                /key 1651270507
                /showInPalette 4294967295
                /type (unit real)
                /value 82.0
                /unit 592474723
        /event-9 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_setColor)
            /localizedName [ 9
                53657420636f6c6f72
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 7
            /parameter-1 {
                /key 1768186740
                /showInPalette 4294967295
                /type (ustring)
                /value [ 10
                    46696c6c20636f6c6f72
            /parameter-2 {
                /key 1718185068
                /showInPalette 4294967295
                /type (boolean)
                /value 1
            /parameter-3 {
                /key 1954115685
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 10
                    434d594b20636f6c6f72
                /value 4
            /parameter-4 {
                /key 1668899182
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-5 {
                /key 1835496545
                /showInPalette 4294967295
                /type (unit real)
                /value 78.0
                /unit 592474723
            /parameter-6 {
                /key 2036690039
                /showInPalette 4294967295
                /type (unit real)
                /value 58.0
                /unit 592474723
            /parameter-7 {
                /key 1651270507
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
        /event-10 {
            /useRulersIn1stQuadrant 0
            /internalName (adobe_copy)
            /localizedName [ 4
                436f7079
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 0
        /event-11 {
            /useRulersIn1stQuadrant 0
            /internalName (adobe_pasteInFront)
            /localizedName [ 14
                506173746520696e2046726f6e74
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 0
        /event-12 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_setColor)
            /localizedName [ 9
                53657420636f6c6f72
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 7
            /parameter-1 {
                /key 1768186740
                /showInPalette 4294967295
                /type (ustring)
                /value [ 10
                    46696c6c20636f6c6f72
            /parameter-2 {
                /key 1718185068
                /showInPalette 4294967295
                /type (boolean)
                /value 1
            /parameter-3 {
                /key 1954115685
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 10
                    434d594b20636f6c6f72
                /value 4
            /parameter-4 {
                /key 1668899182
                /showInPalette 4294967295
                /type (unit real)
                /value 0.0
                /unit 592474723
            /parameter-5 {
                /key 1835496545
                /showInPalette 4294967295
                /type (unit real)
                /value 78.0
                /unit 592474723
            /parameter-6 {
                /key 2036690039
                /showInPalette 4294967295
                /type (unit real)
                /value 58.0
                /unit 592474723
            /parameter-7 {
                /key 1651270507
                /showInPalette 4294967295
                /type (unit real)
                /value 82.0
                /unit 592474723
        /event-13 {
            /useRulersIn1stQuadrant 0
            /internalName (ai_plugin_transparency)
            /localizedName [ 12
                5472616e73706172656e6379
            /isOpen 0
            /isOn 1
            /hasDialog 0
            /parameterCount 1
            /parameter-1 {
                /key 1836016741
                /showInPalette 4294967295
                /type (enumerated)
                /name [ 6
                    4e6f726d616c
                /value 0

    Hi Sudheer,
    I think I am using the same method. the follwing seeting have been maintained for that action.
    Form name - SCMG_SMART_FORM_CASE
    Processing Class - CL_SAMPLE_PROCESSING_CLASS_PPF
    Processing Method - COPY_1_OF_EXEC_SMART_FORM
    Archive Mode - 1 Mail Only.
    Still the problem exist.
    Please help me resolve this issue.
    Best regards,
    Raghu ram

  • Maths Problem in Action Script 2.0

    Hi surfers,
    We have a problem in Action Script 2.0 to solve the maths equation given below:
    write a code in Action Script 2.0 to solve these two equation.
    Aim: To know the value of "a" in both different equations.
    1. 2a + 5 = 3a + 1
    2. 4a + 3 = 11
    Thanks in Advance.
    Pls give me ASAP, i'm struggle here.

    Hello, you are at the wrong forum. for AS 2.o questions, hop on there: http://forums.adobe.com/community/flash/flash_actionscript
    BTY, people answer when they can, not when you want...

  • CS4 Action Script display problems

    I've just used Flash CS4 for the first time after using CS3 for some time.  When using the Action Script window to write code I had the strangest problem.  When writing or pasting code in the AS window the last couple of letters or characters get cut off.  I checked my preferences and they were they same as they were in CS3 (just to be sure).  Both CS3 & CS4 both have the Monaco font as the default.  I solved the problem by changing the fint to Arial.  Now the AS displays properly.
    Wondered if anyone has seen this happen and if they knew if it was a bug or something?
    I'm using CS4 with a newer MacBook Pro and sing AS2 in this project.
    Thanks so much!
    BC

    first button is called Enter and it is btn1 in the libary, i would like that to navigate to scene 2 frame 1. this was a graphics and i converted it to a button have also tried making it a movie clip it still doesn't work. the second button is Autobiogtaphy and it is btn2, i would like that to be navigated to the frame 10 and the frame is called About. I have CS4 and i realised all the stop actions worked when i saved it in CS3 and opedned it back up so since then  i have been using that format. im also using AS3 if that makes any difference.
    So i realised i haven't been much help on details hope this helps

  • Problem with action script to button

    Hello all.
    I'm having a problem with my adobe flash CS3 action script. My button cant link to the other URL. I tried to put an action script but i fail. anyone can help me? here the attachment for my flash document.

    HELLO,
                  just check       navigateToURL()

  • Problems adding  url link to buttons in action Script 3

    each time I added it link 1 to the button on file i get these error messages-  
    1046: Type was not found or was not a compile-time constant: link1.
    1180: Call to a possibly undefined method link1.
    Warning: 3594: exec is not a recognized method of the dynamic class RegExp. var r:Object = p.exec(s);  
    This is the code I am using:   import flash.net.navigateToURL; import flash.net.URLRequest;  var link_one:link1;  link_one = new link1(); stage.addChild(link_one);  link_one.addEventListener(MouseEvent.CLICK, buttonClickHandler);  function buttonClickHandler(event:MouseEvent):void { var url:String = "http://www.masterpiececorp.com/ARMREF.htm"; var request:URLRequest = new URLRequest(url); navigateToURL(request); }    I have no other problems with link 3 or 4, just link 1  I still cannot get my urls link to movie clips on the flash  
    Can you upload flash here? if not I have a image capture I can use to have you look at my buttons  and action script code. i have been to every forum I know and not any have been helpful at all. This is my last hope.
    Very frustrated newbie  Gina T
    Message was edited by: gtaylor0406

    The way you had your code originally would be correct...
    var link_one:link1;
    link_one = new link1();
    addChild(link_one);
    The 1046 error is indicating it doesn't recognize the link1 class.  So the first thing you need to make sure of is that you have assigned the link1 class designation to whatever symbol that is in the library.

  • Action script with reference to root causing problems in Captivate

    Hi All,
    I just inserted an animation into Captivate and it seems to
    be working as intended; however, i receive a warning stating that
    action script referencing "root" may cause the Captivate project
    not to work properly or at all.
    Has anyone experienced such a problems coming from action
    script reference. It appears to be working fine, so I'd rather not
    touch it if I can get away with it.

    If you run into issues there is a technote on Adobe.com that
    will advise you
    on how to remove or work around using _root references.
    Ideally you would
    never refer to _root at all.
    Steve
    http://twitter.com/Stevehoward999
    Adobe Community Expert: eLearning, Mobile and Devices
    European eLearning Summit - EeLS
    Adobe-sponsored eLearning conference.
    http://www.elearningsummit.eu

Maybe you are looking for

  • Difference in select for update of - in Oracle Database 10g and 11g

    Hi, I found out that Oracle Database 10g and 11g treat the following PL/SQL block differently (I am using scott schema for convenience): DECLARE   v_ename bonus.ename%TYPE; BEGIN   SELECT b.ename     INTO v_ename     FROM bonus b     JOIN emp e ON b.

  • GRC CUP to disable mitigate option

    Hi, How can i disable mitigate option,when approver do risk analysis,we don't want approver to assign/create mitigate control .I know if i wouldn't put mitigation URL in mitigation can work.But, in SP14 if i remove mitigation URL. approver gets 500 s

  • Hi- I am having an issue- When I turn my computer on- I get the message "Bridge has encountered a pr

    Hi- I am having an issue- When I turn my computer on- I get the message  "Bridge has encountered a problem & is unable to read the cache- try  purging central cache in cache preferences to correct situation"   When  I open Photoshop CS5 it say "repou

  • Minimizing Discoverer Plus causes it to lock up

    We have a user who complains that when he minimizes Discoverer Plus for a long period of time and then tried to maximize it, it locks up and he has to do a ctl-alt_del. Has anyone ever encountered this before?

  • Capture NX 1.3.0+ iphoto 8 + OS X 10.4.11

    The round trip combination works. Saving the edited NEF when leaving NX retains the original plus the edits in the iPhoto library. However iPhoto displays a view of original not the NEF plus edit. Is there a workaround so that iPhoto displays the res