Accessing an Array in a duplicated movie clip

I have a movie clip that has a script declaration of:
var myCGroup:Array = Array();
in the first frame.
(I've also tried var myCGroup:Array; var myCGroup:Array = new
Array(); and var myCGroup:Array = []; )
I duplicate this movie clip multiple times. I'm having
trouble targeting the variable myCGroup from elsewhere in the
timeline. Other non-array variables that are declared in the same
place are fully accessible.
The only code I've been able to write that writes to this
variable is:
eval(targetThumb).myCGroup = prodFlush[2].childNodes;
which actually takes the childnodes and creates an array with
them.
However, reading them back out from a separate function later
is impossible:
trace("colors to target =====" +
eval(masterProds[sm]).myCGroup);
returns nothing. I can read and write to other variables from
the same function using the same targeting.
(yes, materProds[sm] == targetThumb)
Also, the following code results in an undefined array:
// for(cg=0;cg<cGroupArray.length;cg++){
eval(targetThumb).myCGroup.push(cGroupArray[cg].firstChild.nodeValue);
// trace("time: " + cg + " || adding this color group " +
cGroupArray[cg].firstChild.nodeValue + " to product: "+ targetThumb
+ "===== " + eval(targetThumb).myCGroup)
Is this a bug, or a documented local vs. global variable
option that I'm unaware about regarding arrays?
Any other thoughts? I'm at my wits end.
Thanks in advance.
-r

question[i] =  questionSet.getString(i);Try:
question[i] =  questionSet.getString(1);Or better still:
question[i] =  questionSet.getString("QUESTION");or "ANSWER" for the anser record set.
ResultSet.getString(int) looks up the value in a column (starting at index 1) in a result set.
getString(String) looks up the value in a column by column name.

Similar Messages

  • How to detect  collssion for random or Duplicated movie clips

    Hey guys .. i am back with set of query..till now .. key
    press movement a rocket (mc) is moving left right up down in a
    defined stage area. and i am able to generate some fire balls
    randomize falling from top. this is just i am duplicating the movie
    clip(fireball_mc) .... now i want incase or when the rocket (mc)
    touch the fire ball programm shold detect the collsion and generate
    a score board. well for this i have tried a script for two movie
    clips ... wchich is working but ..i don know or i m not gettng the
    logic how to detect the collission for duplicated movie clips...
    well i m just giving the script for oinly 2 movie clips
    coliding...can any one tell me how to do it with randmize or
    duplkicated mcs??
    for 2 movie clip ...
    _root.mc1.onEnterFrame = function() {
    if(this.hitTest(_root.egg)) {
    _root.result="Oh no..... we are dead";
    } else {
    _root.result="we are going fine";
    (this is happening ..but let me know how can i get the same
    result for ranndom mcs)
    hope someone can help me out ...
    i appriciate ur valuable time to read this..
    thanking you

    Hey thx for ur suggestion...but as i said m very much new to
    actionscript (more designer) so i don have much idea... most of the
    things i m doing for this game i m going through lots of references
    then i tried to understand te codes m implmenting them to my
    need..can u explain me little more about arrays u haves asked for
    loops u asked me to use the hittest function..please /.. i will be
    greatfull to u... thx

  • Referencing duplicated movie clips

    I am using the following script to duplicate the movie clips
    pixel.duplicateMovieClip("pixel"+i,
    this.getNextHighestDepth(), {_x
    , _y:m});
    how can I get the x and y values for the duplicated clips, I
    tried assigning a text box with variable xget an d wrote the
    script:
    xget = pixel+i._x
    how should I be scripting this?

    you could do something like:
    xget = eval("pixel" + i +"._x");
    -or-
    xget = this["pixel" + i]._x;
    Either one could work...

  • Duplicating Movie Clips

    Hello,
    I this is probably a very simple thing to do but I cant find
    anything which seems to a duplicate movie clip and maybe this
    function has been completely removed and not recreated at all
    within the new AS3 where it was available in AS2.
    I am wondering if someone can help me with this.
    I have attached a snippet of my code below which defines what
    I am attempting, any help would be appreciated.
    Basically all I want to do is duplicate a movieclip in a for
    loop and have them placed side by side with each other.
    Here is my code:
    for (i=0; i<10; i++)
    addChild (_brick);
    _brick.x = brick.width * i;
    Many thanks in advance
    Lee

    Lee,
    You have to assign each new brick to an instance, then add
    that child to the stage. There may be a more proper coding way to
    do it, but based on your code, you would need to turn on linking of
    your brick movie clip and make sure it's named "_brick". Then, this
    should work.
    for (var i=0; i<10; i++) {
    var myBrick = new _brick();
    addChild(myBrick);
    myBrick.x = myBrick.width * i;
    }

  • Duplicating Movie clips:  Can't access duplicate's children

    This code had been working when I was using flex 3, but now with framework 4.1 I can't get this to work:
    var TargetClass:Class;
    var instance:MovieClip;
    var rv:TextField;
    TargetClass =  Object(baseSwf_mc.getChildByName(instanceName)).constructor;
    instance = new TargetClass();
    instance.x = baseSwf_mc.getChildByName(instanceName).x;
    instance.y = baseSwf_mc.getChildByName(instanceName).y;
    rv = TextField(instance.getChildByName("word"));
    rv.autoSize = TextFieldAutoSize.LEFT;  //on this line I get a null object reference error.  rv is undefined.
    when I debug, instance has 0 children, though the movieClip referred to by "baseSwf_mc.getChildByName(instanceName)" definatly has a child TextField with the instance name "word".  Any ideas why this wouldn't be working any more?
    Dan

    Yeah, there are many trailer links within iTunes that I still can't access and it's been months. Star Trek from Paramount is one example.
    The only way I can get around it is to see if trailers.apple.com has it and download it that way.
    I hope they fix it soon or hope that they are even aware of the problem ...

  • Using an array to assign movie clips to buttons

    Thanks in advance for any help you can give me!!
    I've got 5 movie clip buttons.  When a user rolls over a button, I want one movie clip to play. When a user clicks on that button, an alternate movie clip plays. I'm trying to use an array to assign certain movie clips to certain buttons and actions, but I'm not doing something quite right. I can get one button to work correctly, but then am having issues getting the other buttons to work.
    Here is the code I have:
    var currentPage:MovieClip;
    var currentScreen:MovieClip;
    var prevPage:MovieClip;
    var currentButton:MovieClip;
    var arrNavigation:Array = [{button:m1_mcButton, page:m1_mc, screen:s1_mc},
       {button:m2_mcButton, page:m2_mc, screen:s2_mc}]
    for(var i=0;i<arrNavigation.length;i++){
    arrNavigation[i].button.buttonMode=true;
    arrNavigation[i].button.addEventListener(MouseEvent.ROLL_OVER, onButtonOver);
    arrNavigation[i].button.addEventListener(MouseEvent.ROLL_OUT, onButtonOut);
    arrNavigation[i].button.addEventListener(MouseEvent.CLICK, onButtonClick);
    function onButtonOver(e:MouseEvent):void
    for(i=0;i<arrNavigation.length;i++) {
    if(arrNavigation[i].button == e.currentTarget)
    currentPage = arrNavigation[i].page;
    currentPage.gotoAndStop("over");
    function onButtonOut(e:MouseEvent):void{
    currentPage.gotoAndStop("out");
    function onButtonClick(e:MouseEvent):void{
    for(i=0;i<arrNavigation.length;i++) {
    if(arrNavigation[i].button == e.currentTarget)
    currentScreen = arrNavigation[i].screen;
    arrNavigation[i].screen.gotoAndPlay("over");

    if your buttons are movieclips, use:
    var currentPage:MovieClip;
    var currentScreen:MovieClip;
    var prevPage:MovieClip;
    var currentButton:MovieClip;
    var arrNavigation:Array = [{button:m1_mcButton, page:m1_mc, screen:s1_mc},
       {button:m2_mcButton, page:m2_mc, screen:s2_mc}]
    for(var i=0;i<arrNavigation.length;i++){
    arrNavigation[i].button.buttonMode=true;
    arrNavigation[i].button.addEventListener(MouseEvent.ROLL_OVER, onButtonOver);
    arrNavigation[i].button.addEventListener(MouseEvent.ROLL_OUT, onButtonOut);
    arrNavigation[i].button.addEventListener(MouseEvent.CLICK, onButtonClick);
    arrNavigation[i].button.ivar=i;
    function onButtonOver(e:MouseEvent):void
    currentPage = arrNavigation[e.currentTarget.ivar].page;
    currentPage.gotoAndStop("over");
    function onButtonOut(e:MouseEvent):void{
    currentPage.gotoAndStop("out");
    function onButtonClick(e:MouseEvent):void{
    currentScreen = arrNavigation[e.currentTarget.ivar].screen;
    currentScreen.gotoAndPlay("over");

  • Dynamic text in looping movie clip

    Hi,
    I am looping a movie clip which has a dynamic text box. I
    need to call data from XML and place the same in the Dynamic text
    box as per the duplicated movie clip. how do i do that.
    Thanks,
    Ayush

    on (release) {
    _parent.frontFields.topTextArch.ph2TopTextBrush._visible =
    false;
    That is the script attached to my button. I can see the text
    flash for a second when I push the button but it does'nt go away
    because the looping movie clip just continually goes back to the
    first frame and makes the ph2TopTextBrush text field visible again.
    I think I know what your saying. Your saying to attach a
    script to the first frame of the looping movie clip that would
    check to see which of the 3 dynamic text fields are visible. That
    would be perfect but I'm not sure how to do it.
    What would the script that I place on my button look like?
    What would the script in the first frame of the looping movie clip
    look like?

  • Building an array of movie clips

    Hi
    I have a main document class and an array class (amongst others).
    I am not sure how to build the array though. Below is my attempt up to now. But I get the following error code.
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at LetterArray/initLetters()
        at LetterArray()
        at BugGoopFSGame() //This is my main document class.
    What am I doing wrong?
    Thanks
    Charine
    //in main document class
    public var letterArray:LetterArray = new LetterArray(stage);
    //in array class
    package
        import flash.display.MovieClip;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.display.Stage;
        public class LetterArray extends MovieClip
            private var _stage:Stage;
            /*The following are movie clips that need to go into an array so that they can be manipulated togehter.
            Their classes A, F, G, H, I, N, O, S  and T were all dynamically created by flash.*/
    //Do I even need these here?
            public var a:A;
            public var f:F;
            public var g:G;
            public var h:H;
            public var i:I;
            public var n:N;
            public var o:O;
            public var s:S;
            public var t:T;
             public function LetterArray(s:Stage)
                _stage = stage;
                initLetters();
            private function initLetters():void
                var LetterArray:Array = new Array[a,f,g,h,i,n,o,s,t];
    //rest not relevant

    You declare a bunch of objects but you do not instaintiate them.
    public var a:A;  // declare but does not yet exist
    public var a:A = new A();   // declared and exists

  • Trying to access a specific movie clip with a string

    Ok, what I am trying to do is create as many movie clips as I
    need and then access those movie clips using string values. These
    string values are stored in an array and coincide with a given
    movie clips instance name. Check out the following code:
    I think my problem is that Flash is trying to call movie clip
    methods on a string instance. I'm not sure how to type cast in
    Flash, or even if it is possible, but how would I access the
    strings as movie clips?

    DuhChamp,
    > I think my problem is that Flash is trying to call movie
    > clip methods on a string instance.
    Bingo.
    > I'm not sure how to type cast in Flash, or even if it is
    > possible, but how would I access the strings as movie
    > clips?
    Use eval() or the array access operator, []. Details here
    http://www.quip.net/blog/2006/flash/actionscript-20/reference-objects-dynamically
    David
    stiller (at) quip (dot) net
    Dev essays:
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Accessing a Movie Clip in a parent Scene.

    Setup:
    *Scene 1:
      - MovieClip1
      *Inside MovieClip1:
       - Actions:
         stop();
         next_btn.addEventListener(MouseEvent.CLICK, onNextButtonClicked);
         previous_btn.addEventListener(MouseEvent.CLICK, onPreviousButtonClicked);
         function onNextButtonClicked(e:MouseEvent):void {
         if (currentFrame == totalFrames) {
         gotoAndStop(1);
         } else {
         nextFrame();
         function onPreviousButtonClicked(e:MouseEvent):void {
         if (currentFrame == 1) {
         gotoAndStop(totalFrames);
         } else {
         prevFrame();
        (THIS CODE IS FOR MY NEXT AND PREV BUTTON TO CYCLE THROUGH MY PIECES OF WORK)
       Then I have...
      - Pieces of work Layer:
        This includes each piece on a single frame, with a label name. (5 total frames on this layer)
        Then I have....
        - Next and Prev buttons on a layer
        And Finally....
       - The last layer in this scene has a background frame.
    ***** Now inside each frame containing each piece of work there is:
           1st Layer = Actions
           Containing this code: stop();
           2nd Layer = This is the movie Clip that Fades my pieces of work in.
       ****** Inside this movie Clip of the piece of work fading in will contain:
               1st Layer = Actions
               Containing this code:
    stop();
    function openLabel(event:MouseEvent):void {
    switch (event.currentTarget) {
    case identity_cplogo_btn :
    gotoAndPlay("cplogo_lv");
    break;
    identity_cplogo_btn.addEventListener(MouseEvent.CLICK, openLabel);
    2nd Layer = 1st frame blank, then frame 2-10 contains a movieclip with a label of cplogo_lv. This movie clip is the clip that has a large view of the image popup and darken the background. (Like a lightbox effect)
    3rd layer = the logo which is a BUTTON. THis is located on the first frame and is called "identity_cplogo_btn." So when this is clicked it opens the large view.
    *****Now....
    When I click inside the movieclip that is the lightbox effect and go inside of it there is.....
    1st Layer = Actions with the code of:
    stop();
    function openLabel(event:MouseEvent):void {
    switch (event.currentTarget) {
    case lv_close_btn :
    gotoAndPlay("return");
    lv_close_btn.addEventListener(MouseEvent.CLICK, openLabel);
    ****After the actions keyframe, which is locate on frame 10, there is a label called "return" from frame 11-24. It is a blank label meaning there is nothing on it but the label name.
    2nd Layer = the "Close" button which appears when the large view is opened and is located on frame 10 right underneath the action code.
    3rd Layer = This contains the Large view of the logo, which I have made a movie clip for making it fade in then I paste reverse frames after right underneath the "return" label making it fade out.
    4th Layer = Contains the Dark background that pops up which also fades in then underneath the "return" label it has its' reverse frames which are making it fade out.
    SO... I have the code making it so that when the "Close" button is clicked it is going to the "return" label which is making everything fade out.
    ***************************** NOW WHAT I NEED TO FIGURE OUT *************************************
    I need to know the code to be in the last movie clip I just explained and when I click the close button and it plays everything underneath the "return" label, THEN i need it to access the movie clip with the logo fading in so that it appears to go back to BEFORE clicking on the logo and expanding the view.
    I understand that this code will be places right after the "return" label so that when the return phase plays it will then play the code making it go to this movie clip then it will stop.
    I have tried
    MovieClip(parent.parent).gotoAndPlay("return_2");
    stop();
    And giving the movieclip that has the logo fading in the "return_2" label name. THis allows it to go to that movie clip, however, it doesnt play it is just blank on the screen.
    I also have tried accessing the movie clip after giving it an instance name, but it was doing the same thing.
    Help PLEASE!

    I actually tried a post earlier that was simplified, but I think the setup of scenes might be important....anyways, here it is.
    Setup:
    Scene 1 > MovieClip1 > MovieClip2 > MovieClip3 > MovieClip4
    Explanation:
    I am in MovieClip4, in which I have a "Close_btn" that when clicked, it takes you to label "return" (still inside MovieClip4), which then plays the movie clips in the layers below label "return." What I want it to do is....Once label "return" plays, I need the code to make it go into "MovieClip2" and play a movie clip with the "Instance" Name of "Logo_1."
    I have tried this by setting a label name above the movie clip and referencing the label, however, it does access that movie clip, but it doesnt play it...It is just blank.
    Hope this is understandable.

  • Access Button contained in a movie clip

    This is for beginners or those not familiar or having
    diffculty with getting embedded buttons to work.
    This is a how to on using actionscript in your main time line
    that listens for events for button(s) located inside of a
    movieclip.
    I spent hours trying to figure out why I could not access my
    button that was inside of a movie clip from the main ROOT or
    _level0 of my scene. When I placed the AS inside the movieclip that
    the button was inside of, the button worked but when I put the same
    code, no changes, on the main timeline nothing happened.
    myMovie_mc.myButton_btn.onRelease = function() {
    trace("The Button Works!");
    Your can also use onPress, onRollOver or any of the button
    actions you would if you created the AS on the button itself.
    myMovie_mc.myButton_btn.onRelease = function() {
    function() part of the code can also be function():Void
    First you tell flash where the button is located. Starting
    from the main timeline you start with the name of the movie. This
    is where I had trouble and why my buttons did not work. This part
    of the code is the INSTANCE name NOT the label you named the movie
    that displays in the library.
    CREATE AN INSTANCE NAME on the movie clip. Select the movie,
    in the properties bar you will see a field where you place the
    instance name. I always end the name with _mc, or _btn to tell me
    that it is a movie or a button so when I go back through the AS I
    know what that object is that is being referenced.
    myMovie_mc <-- This is the INSTANCE NAME of the movie clip
    myButton_btn <-- This is the name of the button INSTANCE
    NAME that resides inside the myMovie_mc movie clip
    onRelease <-- This is the event listened for, it could
    also be onPress, onRollOver or any other button events
    = function() <-- This is needed and tells flash that this
    code is treated as a function so that when the event happens, in
    this case onRelease, the code inside the { } is executed. This
    could also be = function():Void
    All the parts before the set to symbol or the = sign needs to
    be seperated with a period, though NOT between the event listened
    for and the set to symbol or = sign.
    myMovie_mc.myButton_btn.onRelease = function():Void
    Put your code here that you want performed when button is
    Released...
    The reason my code didn't work was because I did not give an
    instance name to the movie clip. You must give instance names to
    ANYTHING you call within AS code. Including buttons, MC's, symbols
    etc... or else nothing will happen.
    Now, if you are having same problem I had, the AS worked on
    the same time line level as the button was on but NOT when placed
    in parent or main time line, you now know how to fix it.
    This works in AS2, Flash8 and Flash9. I don't have AS3 yet
    but the code should work in AS3 also.
    Hope this helps someone, I searched for this info in the
    forums and could NOT find it. I stumbled upon my error after many
    hours of trial and error. So next time if I have this problem
    again, a forum search will bring this post up in the results. LOL
    Thanks.

    Nice post. One small addition to this is that you can also
    just specify a function name instead of using "=function() {".
    For example:
    myMovie_mc.myButton_btn.onRelease = myFunction;
    function myFunction():Void
    Put your code here that you want performed when button is
    Released...
    This could be used in a couple of ways. First, the way you
    mentioned in your post. Second, you can use this method to have the
    program simulate a button press (even if the user does not click on
    the button). Since the function will execute even if you just call
    it like: myFunction();
    Just my 2 cents.
    Tim

  • Removing movie clips in arrays

    Hi there
    I have this code in my Flash file:
    for(bubble in bubbleArray){
         bubbleArray[bubble]._y -= 3;
         if(bubbleArray[bubble]._y < 370){
              bubbleArray[bubble].removeMovieClip();
    I'm wondering, when I remove the movie clips should I also be popping them from the array?
    I have an onEnterFrame function that attaches the movie clips and pushes them into the array, so I'm worried that if I don't pop them the array will continue to increase in size and slow down the movie. Is this the case, or will they be automatically removed from the array by the removeMovieClip() method above?

    Looks like I spoke too soon. I imagined that removing them from the array would be easy, but I'm struggling.
    The movie clip that is removed from its parent clip and should be removed from the array will not always be the first element in the array, and I'll need to remove multiple clips at a time. I've put in a trace action to trace the length of my array, and after about ten seconds it contains about 2500 elements, most of which have already been removed using the removeMovieClip() method. I'm worried this will slow down the movie.
    So to clarify: How can I remove these elements from my array when I remove them from the stage?
    I tried to include something like:
    while(bubbleArray[0] == undefined){
         bubbleArray.shift();
    but it caused Flash Player to freeze up. Also, if I trace bubbleArray[0] it is only "undefined" before something is pushed into the array. Once the clip has been removed from the stage, the trace just returns a blank line, not "undefined".
    I'd appreciate any help.
    Here is all my code:
    stop();
    splash.stop();
    var i:Number;
    var j:Number = 0;
    var minBubbles:Number = 10;
    var maxBubbles:Number = 20;
    var bottomBubbleLimit:Number = 0;
    var topBubbleLimit:Number = 1;
    var bubbleNumber:Number;
    var bubbleX:Number;
    var bubbleY:Number;
    var bubbleScale:Number;
    var bubbleMinScale:Number = 30;
    var bubbleMaxScale:Number = 100;
    var fewerBubbles:Number;
    var ring:String;
    var ringArray:Array = [ringAnimation.ring1, ringAnimation.ring2];
    var bubbleArray:Array = [];
    ringAnimation.onEnterFrame = function(){
        for(ring in ringArray){
            if(ringArray[ring]._y > 370){
                bubbleNumber = (minBubbles + (Math.random() * (maxBubbles - minBubbles)));
                for(i = 0; i < bubbleNumber; i++){
                    bubbleX = ((ringArray[ring]._x - (ringArray[ring]._width / 2)) + (Math.random() * ringArray[ring]._width));
                    bubbleY = ((ringArray[ring]._y - (ringArray[ring]._height / 2)) + (Math.random() * ringArray[ring]._height));
                    bubbleScale = bubbleMinScale + (Math.random() * (bubbleMaxScale - bubbleMinScale));
                    ringAnimation.attachMovie("bubble", "bubble" + String(j), this.getNextHighestDepth(), {_x:bubbleX, _y:bubbleY, _xscale:bubbleScale, _yscale:bubbleScale});
                    bubbleArray.push(ringAnimation["bubble" + String(j)]);
                    j++;
        for(bubble in bubbleArray){
            bubbleArray[bubble]._y -= 3;
            if(bubbleArray[bubble]._y < 370){
                bubbleArray[bubble].removeMovieClip();
        trace(bubbleArray.length);
        if(ringAnimation._currentFrame == 6){
            splash.gotoAndPlay(1);
        }else if(ringAnimation._currentFrame == 12){
            splash.gotoAndPlay(1);
    fewerBubbles = setInterval(reduceBubbles, 600);
    function reduceBubbles(){
        if(minBubbles > bottomBubbleLimit){
            minBubbles--;
        if(maxBubbles > topBubbleLimit){
            maxBubbles--;
        if(minBubbles == bottomBubbleLimit && maxBubbles == topBubbleLimit){
            clearInterval(fewerBubbles);

  • OOP and movie clips in arrays

    I have a number of movieclips in a game that needs to all appear at a certain x;y co-ordinate at the same alpha value and move at a dynamically produced path and basically have the same behaviour up to a point. Flash has created links to .as files for eachEach movie clip.
    I want to put them all in an array to code once. My question - Must this array be in the main class .as file or can I have a seperate .as file written especially for this array.
    Thanks
    Charine
    Facebook: buggoop

    you can pass a reference from your main class to your array class. eg,
    // in document class
    var arrayClass:ArrayClass=new ArrayClass(stage);
    // ArrayClass
    package{
    public class ArrayClass{
    private var _stage:Stage;
    public function ArrayClass(s:Stage){
    _stage=stage;
    dowhatever();
    private function dowhatever():void{

  • Accessing a scene from a Movie Clip

    Hi, I'm using Flash CS3 and am writing action script inside
    of one of my movie elements and I want to access an element that's
    on my main scene, "Home". How can I reference my main form that
    hosts the element video form my movie clip?

    if "Home" is on the main timeline you can reference it from
    any timeline using:

  • How to access dynamic movie clips in a loaded swf

    Hello,
    I have a main movie file that loads a swf through loadclip.
    There are several dynamic movie clips in the library of the
    loaded swf (all set to export in first frame).
    I'm trying to create a popup window (using the Window
    component) by using code in the main movie to popup content that is
    in a dynamic movie clip within the swf loaded by loadclip.
    So far, I can create the popup without any problem as long as
    the contentPath refers to a linkage identifier of a library item in
    the main movie, but it won't work for a library item in the loaded
    movie. Is there a way to make this work? Is there a special way to
    reference library items in loaded movies?
    Here's my code to create the window:
    myWin = mx.managers.PopUpManager.createPopUp(this,
    mx.containers.Window, true, {title:mytitle, contentPath:myref,
    closeButton:true});
    where myref is a string containing the linkage identifier for
    the library item within the loaded swf.
    Thanks in advance for any assistance,
    Julia

    I have found out that I can access a dynamic mc from the
    loaded library (using attachMovie), but cannot use that same
    dynamic mc as the contentpath for a popup window.
    Any ideas why?

Maybe you are looking for

  • ITunes 7.4 won't recognize my library files

    I have all my music on an external hard drive and just changed from set playlists to smart playlists. I upgraded to 7.4 tonight and 1) It wouldn't import my library.XML file 2) Couldn't find my iTunes folder on the external hard drive 3) Erased all m

  • Iweb - harddrive crashed - need to access old project

    My hard drive crashed and I can't get to my old project from the newly loaded software - help.

  • Clone Stamp Freakout in CS4-Mac

    Hi, I am using PhotoShop CS4 on a Mac Pro (2x2.8Ghz Quad Core, 4Gb RAM, NVIDIA GeForce 8800 GT) running 10.5 My CS4 is up to date. I use a Wacom Intuos3 6x11 tablet with stylus; it is also up to date. I am retouching a large (1.88GB) PSD file with mu

  • How to enhance BUPA_DELETION standard BAPI

    Hi All, I need to create an implementation for this standard badi BUPA_DELETION. But does not have any export/changing parameters for any of its methods. Could you please let me know if I can enhance the methods of this BADI to add export/changing pa

  • Translation for web dynpro

    Hi! I have some questions related to translation process in netweaver. I found that for each property file, we have to provide an xlf file which will then be processed by translators. In the version I'm using, the xlf file is automatically generated