Move clip to top level

I've got a movieclip containing another movieclip which acts as a button. The movieclip has a drag function added to it.
function onBoxPress( event:MouseEvent ):void
                    var boundsRect:Rectangle = new Rectangle(event.currentTarget.x,0,0,stage.height);
                    event.currentTarget.startDrag(false, boundsRect);
          function onBoxRelease( event:MouseEvent ):void
                    event.currentTarget.stopDrag();
                    sortBoxes();
On the stage I've got several copies of this clip. It works ok: when I click and drag, the clip drags vertically. However, each clip has its own depth and sometimes a clip will drag beneath another clip. So upon clicking and dragging the clip should be moved to the top level of all duplicate clips.
How do I move it to the front of all other clips?
I've tried using:
function onBoxPress( event:MouseEvent ):void
                    setChildIndex(event.currentTarget.parent,0)
                    var boundsRect:Rectangle = new Rectangle(event.currentTarget.x,0,0,stage.height);
                    event.currentTarget.startDrag(false, boundsRect);
I use event.currentTarget.parent here because the clip to have it's index set is the parent clip. Remember, the button which starts it all is inside that parent clip.
But then I get an error 2025:
Error #2025: The supplied DisplayObject must be a child of the caller

The parent is not the child of the child. Call setChildIndex on an object that is the parent of the parent.
The whole reason you're having this problem is because you're violating good Object Oriented Design by having the child manage too much. The grandparent should be listening for the MouseDown and then managing the drag. You could have a single event handller that checks for the MouseDown and checks the Class of the target (set mouseChildren to false on the button, so the target won't be its label, for example.

Similar Messages

  • Find a specific Sublayer and move to top level layer

    I have a lot of illustrator files that are organized by a template size. The layers are setup so that the top level layer is always Template. However the sublayer I need to move to the top level could be called 42 Pg Border or 30 Pg Border or 24 Pg Border.
    Is there a way for a script to search through the layers and if it finds "42 Pg Border" or "30 Pg Border" or "24 Pg Border" in the sublayer Template it would move it to the top level but if it doesn't see one of those it doesn't give an error?
    I'm still new to scripting so the extent of my knowledge on this is to scan all the layers and unlock them. Then look for a specific layer name. It's the sublayer and moving it to the top level that I am not sure of.
    Here is my current code:
    var doc = app.activeDocument;
    var allLayers = doc.layers;
    for (var i = allLayers.length-1; i >= 0; i--){
        allLayers[i].locked = false;
        if (allLayers[i].name == "42 Pg Border" || allLayers[i].name == "30 Pg Border" || allLayers[i].name == "24 Pg Border") {
            alert("I found the " + allLayers[i].name + " layer")
        } else {
            alert("Not the right layer")
    Any help would be greatly appreciated!
    I am using CS4 on a Windows 64 Bit PC with JavaScript

    OK so that code is really close! I tweaked it a bit. I kept getting an error that said cannot move a locked layer. So I just made a loop to unlock ALL the layers first thing. Then to get rid of some of the "extra" code I wrote I changed this line:
    if (layer.name == "42 Pg Border" || layer.name == "30 Pg Border" || layer.name == "24 Pg Border") {
    to this.....
    if ((layer.name).substr(-6) == "Border") {
    So now instead of looking for 42 30 24 (and other border templates I may have to add) I just told it to look at the 6 characters at the end of the string (which will always be the word Border).
    OK so now the code runs and does what it is supposed to but I am getting an undefined in my javascript console in extendscript. Any ideas?
    Current updated code:
    var doc = app.activeDocument;   
    var allLayers = doc.layers;  
    var count = 0;
    for (var z = allLayers.length-1; z >= 0; z--){
        allLayers[z].locked = false;
    for (var i = allLayers.length-1; i >= 0; i--){ 
    deeper(allLayers[i]);
      if (count == 0){ 
         alert("No Border Layer Found"); 
    function checkLayer(parent,layer){    
        if ((layer.name).substr(-6) == "Border") {   
      layer.move(allLayers[0],ElementPlacement.PLACEBEFORE); 
            ++count; 
    function deeper(parent){ 
    var subLayers = parent.layers; 
      if (subLayers.length > 0){ 
      for (var i = subLayers.length-1; i >= 0; i--){   
      checkLayer(parent,subLayers[i]); 
      if (count>0){return} 
      deeper(subLayers[i]); 
      } return 

  • Movie clip stops playing for no reason

    I am making a banner that has multiple movie clips sharing the same area, creating different rainbow effects when different areas (invisible buttons) are moused over.
    First of all I couldn't figure out if there was a way to have one invisible button over the whole area that changed to a different colored effect with each mouse over (first mouse over the black and whites would change to reds, second would change it to blues, third would change it to browns, etc.). Since I couldn't figure this out I settled on creating three buttons covering a third of the banner each, so when the mouse passes over one button it changes to reds, over another button it changes to blues, over the third it changes to browns.
    The effects are movie clips where each frame has another stripe changing color so it goes in a wave effect from one to the next, and then goes back to white and black in the same manner.  The first frame of each movie clip I had to turn into a nested movie clip so I could turn the alpha to 0, since I was going to have these color effect movie clips on top of one another in the main timeline on different layers, and so you could see the effect even if that color layer wasn't on top. I used the same nested movie clip with zero alpha for the first frame of each color effect clip (reds movie clip, blues movie clip, etc), so I dont' know if that's an issue.
    Anyway, it seemed to work fine for a while, but after working on it for a while longer (and not getting any further since I removed most of the changes I made), now when I test the movie the mouse over does not seem to work correctly. It works fine, seemingly, for the first time I mouse over each button, but in order to have it work again I have to mouse over the button twice, and then it will pause randomly during a part of the clip and I have to move my mouse back over for the movie clip to continue.
    I can't tell if this is because of the overlapping movie clips, or because my buttons are messed up, or if my actionscript is messed up, or if the timeline has to be longer, or what. Currently the timeline is 55 frames, the same as each movie clip.
    I put a movieclip_instance.stop(); command in the first frame of the main timeline, is there a better way to do this? Should I put the stop command in the movie clip itself?
    Here is a section of my AS in the main timeline, this is my first time programming ever, in any language, and trying to learn from the internet is more difficult than I thought it would be.
    redmovie.stop();
    red_btn.addEventListener(MouseEvent.ROLL_OVER, playRed);
    function playRed(event:MouseEvent):void
              redmovie.play();

    I am not sure of what the problem is, so I don't know if this will help or not.  One thing I might suggest is that you use gotoAndPlay(1) instead of play().  That way, if your movieclip is in the middle of playing it won't continue but will start from the beginning.
    You could use one button to have the different movieclips play in sequence if you prefer that.  You would just need to have some form of counter that keeps track of which is the next to play. Somethin like...
    var mcCounter:uint = 0; // start at 0 since an array is being used to identify which movieclip to play
    var mcs:Array = new Array(redmovie, bluemovie, brownmovie);
    only_btn.addEventListener(MouseEvent.ROLL_OVER, playMC);
    function playMC(event:MouseEvent):void
             mcs[mcCounter].play();                  // tell the current mc to play
             mcCounter += 1;                            // increment for the next mc
             if(mcCounter == 3) mcCounter = 0;  // reset the counter if it exceeds the array

  • Dynamically placing movie clip at the angle and global position of a mouse click (button) which is constantly rotating.

    Does anyone know the code for finding the global positioning of  X & Y co-ordinates of a click of a button which is constantly rotating,
    and then secondly the code for when you click on the button it  displays a movie clip on top of it -(position of x & y when clicked) at the angle that you clicked it  (so underneath the buttons are still rotating so other people can click them where they are)
    to explain the context, I'm trying to design a mock up of a circular interactive table
    when someone comes up to it and clicks on one of the buttons that are moving, it reads where the person clicked it and opens up a new box (movie clip) where they clicked it (at the angle) so its not upside down if you are at the top.
    I've included my .fla file which shows the four buttons moving and a little diagram
    explaining what I'm trying to do.

    yourbutton.addEventListener(MouseEvent.CLICK,f);
    function f(e:MouseEvent){
    var yourmc:MovieClip=new YourMC();
    yourmc.x=e.stageX;  // if you want the mouse position where the button was clicked.  else use e.currentTarget.x and e.currentTarget.y
    yourmc.y=e.stageY;
    yourmc.rotation=e.currentTarget.rotation;
    addChild(yourmc);

  • In the time line, cutaways and titles are supposed to be linked on the top side of movie clips in the time line window.  I don't know what I did, but now they are linked to the bottom side.  How do I get them up to the top where they belong?

    I'm working on a movie in FCP and using cutaways and titles in many places in the timeline.  While working on a movie 2 days ago, and I don't know what I did, all the cutaways and titles are now linked to the movie clips from below rather than above.  When I "grab" them and drag them up to the top-side, as soon as I "release", they go back down.  Along the menu bar, I've check the "view", "modify", "clips", etc., looking for any thing that might refer to appearance of the time line.  What must I do to get the cutaways and titles back on top where they belong?  The audio clips remained properly-linked to the time line and play properly.  The cutaways and titles can be seen but do not play. 

    The cutaways and titles should be linked above the timeline clips, not below

  • How to move all files to the top level folder?

    I want to move all files within a particular folder -- and all files in all sub folders -- to the top level. i.e. I want to collapse the folder structure to just one folder. Assume that there are no files with the same name.
    *Method 1*
    My first thought was to use Find:
    1. Limit Find to the particular folder.
    2. Find all files in the folder with Size > 0.
    3. Switch to List view. All files are listed.
    4. Select all files and drag to the top folder
    5. Delete all sub folders manually.
    Problem: Pages files are not found, and maybe others aren't.
    This is a simple method and I'd like to stick with it.
    *QUES 1*
    What condition should I set within Find so that I can be guaranteed of finding all files?
    *Method 2*
    It was suggested in another thread that I use Terminal to move all files to the top level, but I couldn't get it to work. And there was a problem with files that consist of bundles.
    *QUES 2*
    What is the easiest way to consolidate all files within a folder to the top level -- assume no duplicate names -- and at the same time remove all sub folders?
    Message was edited by: Guy Burns

    Thanks for the suggestion of EasyFind.
    To find all files in a certain folder I typed in *[a-z 0-9] as a Boolean search (this thread won't let me post the exact characters required by EasyFind). That should cover every file I've ever named. EasyFind came back with "11719found/12316done".
    Any idea what the missing 500 files would be? I'm hoping they are files that I don't need to know about (invisible files, system files and so on).
    Message was edited by: Guy Burns

  • [AS3] how do i use this angle in another lower level movie clip?

    i'm tryin to use an angle from one movie clips to be part of
    an if statement in another lower level movie clip. my code is
    probably ugly but here it is. thank you in advance for the
    help

    i need to learn how to declair a variable (like angle) in a
    lower level movie clip to use it in other movie clips is this not
    correct?
    var angle:Number;
    please help

  • Referancing objects in the level above the movie clip

    i want to referance objects in the level above the movie clip that i have the AS in.  what i mean is that i have a movie clip on the stage, and that movie clip has some actionscript in it, and that AS needs to refer to an object on the main stage, how would i do that?  i have tried parent and stage 1, but neither seem to work

    ok, so let's say that i have a MC on the stage, then inside that MC, there's a frame, with some code attached to it.  i want to referance another MC on the main stage, can u give me some example code on how to do that please, thanks

  • Top level navigation moves upwards

    Hi.
    I have experienced a strange little thing and wanna know if any of you have experienced the same.
    Clicking top level navigation the very first time after logging on to the portal it (tln) moves upwards 1 (one) pixel.
    Strange but true. Is it a bug or is it just the way it works???
    Looking forward hearing from you.
    BR
    Søren Bessermann

    I just tested it, and did not manage to make it work.
    I am in the Portal Outer Frame  > Top-Level Navigation > Unselected Tabs of First Level > Background Color of Unselected Tabs
    and this is the value I use :
    background:url(http://<host>:port/irj/go/km/docs/documents/SDN/my_image.png)
    Am I missing something ? Do I have to create a par file for this ?
    Edited by: Fabien REVOL on Aug 6, 2010 9:28 AM

  • In List View, how can I move an item from within a subfolder up to the top level of the window's parent folder?

    Up 'til now, from System 7.1 to Tiger—I skipped Leopard—you simply dragged the item onto the folder window's titlebar (since that folder's icon was, naturally, not in its own window) and BINGO! there it was, at the top level. Nothing I can think to do in Snow Leopard seems to work.

    Thanks. Most definitely does, although when experimenting I found the left window edge was closer, and 'scrubbing' the item just out of the window and back in seemed to fit the underlying file and folder metaphor better to my mind than just dropping it any old where in the window.
    And 'any old where', at any old speed doesn't always bring up the oh-so-subtle blue border that says, "I get it, you wanna add something to this window, hit me." That's The Clue. There seems to be an invisible line you hafta cross, and some kind of deliberate pace you hafta hit. Too fast and SL doesn't seem to always take it seriously. But that left edge scrub can be quite fast.
    Sorry about the over hasty denial, I was checking my facts and editting to say you were right when the board was shut for some sort of maintenance, and my bad became permanent. Please forgive.

  • I have a recorded movie clip on my desk top that I would like to send by email...How do I do that

    I have recorded a movie clip on a flip camera and downloaded it to iPhoto.  I would like to send it by email to an acquaintance.  Since iPhoto does not permit emailing of movie clips I saved the clip to my desktop and attempted to attach it to an email message.  No good...?file too big?  email would not load and send. 

    I would like to send it by email to an acquaintance.  Since iPhoto does not permit emailing of movie clips I saved the clip to my desktop and attempted to attach it to an email message.  No good...?file too big?  email would not load and send.
    Most internet providers allow email attachments limited to about 20 MBs—a few less. In cases where the file size exceeds this limit, you basically have three options:
    1) Re-compress the file to a smaller size. This usually involves reducing the display size along with a reduction in the data rate which often translates to degradation of quality. (I.e., Reducing the total data rate by half will reduce the file size by half.)
    2) If both parties share an IM connection, the file can be sent directly from one party to the other.
    3) Upload the main data file to a server and email a reference, QTL, or URL of its location to the receiving party who can then access/download the file. For instance, most ISPs allocate a certain amount of storage space to each user account. Many might be sufficient for your needs. If you have a MobileMe account, your movie can be shared/posted directly from iPhoto. There are also a number of sites, both free and commercial, that allow the uploading or sharing of such files. Some, like YouTube, are oriented towards viewing modified versions of you file while others allow downloading of the original file as uploaded. I believe all require a formal membership (free or paid) which is a sticking point for many people.
    In short, there are many options available and you will probably need to research which might best serve your needs.

  • Disabling all movie clips that are on lower levels

    Hello
    I have a movie clip that pops up over all other movie clips.
    But it is still possible to interact with these movie clips that
    are beneath the mc that has popped up. Is there any way to disable
    all of the movie clips that are beneath the one that popped up?
    thanks

    Typically the way to do this is simply create a large
    invisible MovieClip which covers everything, and give it a an
    interactive event. I often use:
    on(rollOver){
    useHandCursor = false;
    This way not only does it steal interaction from anything
    below it, it makes it so the cursor doesn't turn into a hand making
    the user think there's something clickable.
    You could also make a loop which checks getDepth() and if
    it's below a specified depth, set enabled = false, but there's
    really no reason in doing that.

  • How can I call in swf file to movie clip?

    Hi all ...
    This is my first post for advise, although fairly conversant
    with flash and as2.
    I am developing a new full screen background style website
    and have menu buttons contained within a movie clip (nav_c1) ...
    this re-aligns to the top centre of a page when user scales the
    browser window.
    I then have the content area (centre_content) movie clip ...
    this realigns to the centre of the page when a user scales the
    browser window.
    I have scripted the menu buttons to goto a labelled frame in
    the main timeline but I need, when at the labelled frame, to be
    able to call/load in an external swf file to play 'inside' the
    centre_content movie clip?
    for example:
    If I click my news button the flash file moves to the frame
    label news on the main timeline. This then shows a duplicate of the
    moive clip 'centre_content' which is called 'centre_news'. I need
    to be able to call/load an external news.swf, containing all the
    animated news info, to sit and play 'within' the movie clip
    'centre_news' ... so that it is effectively contained 'within' the
    movie clip file but loaded in place from an external swf file.
    Can anyone help please?
    I can post a rough working example online if need be.
    Many thanks
    A puzzled Adrian
    ps: I don't think I am needing to load the swf to a level 1
    area as I have tried this and instead of the swf file being loaded
    and contained within my movie clip file/area it instead seems to
    sit fixed on the main timeline (ie: not contained within the movie
    clip area).

    Thanks Sketchsta for you code. This looks like we're on the
    right lines as I see what the code is trying to do.
    Unfortunately though I can't seem to get this to work?
    I created a new file to get rid of other scripting that was
    going on and have placed a movie clip called centre_content onto
    the main timeline in frame 1 ... then I have applied your script to
    an actions frame above the movie clip also on frame 1. I change the
    path_to_file line with my swf name (callin.swf) which is a 1 frame
    flash file with some text on it ...
    ... but it doesn't bring in the callin.swf file ... it just
    shows the centre_content clip.
    Am i doing anything wrong?
    I also tried putting the script onto the first frame inside
    the centre_content movie clip but this doesn't appear to work
    either.
    Regarding the pre-loader ... can I simply build this into the
    swf file that is being called in to the movie clip?
    Thanks in advance for your support, it is much appreciated.
    Adrian

  • As 2.0 class objects- how to swap depths of a movie clip

    How do you bring an object to the top? if it's just a movie
    clip, I could do a swapdepths, but if it's a movieclip that's part
    of an AS 2.0 object, how do you swap depths of the whole object?
    I create 2 objects (same class) which each have a movieclip
    within them. The movie clip is created on a unique level with
    getNextHighestDepth().
    I have a button which tries to swapDepths of the 2 objects,
    but I can't get it to work. Can anyone help?
    here's the detail:
    1. create a symbol in the library called "someShape_mc" and
    put some shape in it - a circle, a square, whatever - this symbol
    is exported for action script, and has an AS 2.0 Class of
    "ClassObject" ( I also put a dynamic text field in the shape to
    display the current depth - it's called "depth_txt")
    2. create a button called "swap_btn" on the stage.
    Frame 1 has the following actionscript:
    var BottomObject:ClassObject = new ClassObject(this,100,150);
    var topObject:ClassObject = new ClassObject(this,110,160);
    // for the button add this:
    Swap_btn.onRelease=function() {
    // try it with the full path:
    _root.BottomObject.__LocalMovieClip.swapDepths(_root.topObject.__LocalMovieClip);
    // try it with with just the objects:
    BottomObject.__LocalMovieClip.swapDepths(topObject.__LocalMovieClip);
    // try it with the object as a movieclip
    BottomObject.swapDepths(topObject);
    trace("Did it Swap?");
    // try it with a method in the class....
    BottomObject.swapIt(topObject.__LocalMovieClip);
    BottomObject.swapIt(topObject);
    trace("nope... no swapping going on...");
    ================================
    here's the AS file: "ClassObject.as"
    class ClassObject extends MovieClip{
    var __LocalMovieClip;
    var __Depth;
    function ClassObject(passedIn_mc:MovieClip,x:Number,y:Number)
    __Depth = passedIn_mc.getNextHighestDepth();
    __LocalMovieClip =
    passedIn_mc.attachMovie("someShape_mc","__LocalMovieClip",__Depth);
    trace("made a shape at " + __Depth);
    __LocalMovieClip._x = x;
    __LocalMovieClip._y = y;
    __LocalMovieClip.depth_txt.text = __Depth;
    public function swapIt(targetMc) {
    __LocalMovieClip.swapDepths(targetMc);
    __LocalMovieClip.depth_txt.text =
    __LocalMovieClip.getDepth(); // no difference.
    trace("Tried to swap from within the class...");
    ========================
    so- the goal is to bring the "bottom" Class object on top of
    the "top" object. The button tries various methods of swapping the
    depths of the movie clips - but there is not one that works. What
    am I missing?
    tia
    ferd

    Thank you for your response - and here I have included the
    code I reworked to show how it works, and doesn't work. you're
    right about not needing the extra containers, but this example is
    part of a bigger thing...
    I'm confused - it works ONLY if I attach the movie outside
    the class, even though the "attachment" occurs, I'm thinking, at
    the same scope level, that is, _root.holder_mc, in both examples.
    it seems that the advantage of having a class is defeated
    since I have to do the extra coding for each object that will be
    created. It's like the class can only have a reference to the
    movieclip outside itself, and not have a clip INSIDE that is fully
    functioning. am I right about this? Is there someplace good I can
    learn more about class objects and movieclip usage?
    also, my class object IS a movieclip, but " this.getDepth() "
    is meaningless inside the class object. hmmm...
    This one works..... attaching the movies at the root level
    (to a holder_mc)
    // Frame 1
    tmp1 =
    holder_mc.attachMovie("someShape_mc","tmp1",holder_mc.getNextHighestDepth());
    var BottomObject:ClassObject3 = new
    ClassObject3(tmp1,100,150);
    tmp2 =
    holder_mc.attachMovie("someShape_mc","tmp2",holder_mc.getNextHighestDepth());
    var topObject:ClassObject3 = new ClassObject3(tmp2,110,160);
    // for the button add this:
    Swap_btn.onRelease=function() {
    BottomObject.swapIt(topObject);
    trace("clicked button");
    // ClassObject3.as
    class ClassObject3 extends MovieClip{
    var __LocalMovieClip:MovieClip;
    function
    ClassObject3(passedInMovieClip:MovieClip,x:Number,y:Number) {
    trace(" this class object is at ["+this.getDepth()+"]");
    __LocalMovieClip = passedInMovieClip;
    __LocalMovieClip._x = x;
    __LocalMovieClip._y = y;
    public function swapIt(targetMc:MovieClip):Void {
    trace("do the swap in the class");
    trace("===========================");
    trace("target type :" + typeof(targetMc));
    trace("__LocalMovieClip type :" + typeof(__LocalMovieClip));
    __LocalMovieClip.swapDepths(targetMc.__LocalMovieClip);
    This one does NOT work..... attaching the movies within the
    class object...
    // Frame 1
    var BottomObject:ClassObject2 = new
    ClassObject2(holder_mc,100,150);
    var topObject:ClassObject2 = new
    ClassObject2(holder_mc,110,160);
    // for the button add this:
    Swap_btn.onRelease=function() {
    BottomObject.swapIt(topObject);
    trace("clicked button");
    // ClassObject2.as
    class ClassObject2 extends MovieClip{
    var __LocalMovieClip:MovieClip;
    function
    ClassObject2(passedInMovieClip:MovieClip,x:Number,y:Number) {
    __LocalMovieClip =
    passedInMovieClip.attachMovie("someShape_mc","stuff1",passedInMovieClip.getNextHighestDep th());
    __LocalMovieClip._x = x;
    __LocalMovieClip._y = y;
    public function swapIt(targetMc:MovieClip):Void {
    trace("do the swap in the class");
    trace("===========================");
    trace("target type :" + typeof(targetMc));
    trace("__LocalMovieClip type :" + typeof(__LocalMovieClip));
    __LocalMovieClip.swapDepths(targetMc.__LocalMovieClip);

  • Controlling the main time line of a movie via a button within a movie on a different level.

    Hi there!
    I have two movie is two different levels,
    Level 5 is my base movie and I am loading another movie on
    top of this into level 10.
    Once the user clicks onto a button within the movie on level
    10, I would like the animation in level 5 to stop (the animation
    runs on the main root timeline of level 5).
    Once the user clicks on a different button within the movie
    on level 10, I would like the animation on the main timeline of the
    movie in level 5 to start again from the point where it previously
    left off.
    Is this possible?
    It would be great if someone could help me out with this.
    Thanks, midi_ie

    midi_ie wrote:
    > Hi there!
    > I have two movie is two different levels,
    > Level 5 is my base movie and I am loading another movie
    on top of this into
    > level 10.
    > Once the user clicks onto a button within the movie on
    level 10, I would like
    > the animation in level 5 to stop (the animation runs on
    the main root timeline
    > of level 5).
    >
    > Once the user clicks on a different button within the
    movie on level 10, I
    > would like the animation on the main timeline of the
    movie in level 5 to start
    > again from the point where it previously left off.
    > Is this possible?
    _level5.gotoAndPlay("someLabelframe");
    Use your regular action to target timeline or movie clips,
    just define the level number at the beginning of the path.
    Pretty much it :)
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    Happy New Year
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

Maybe you are looking for

  • HT1918 How can I delete a card number ?

    I have been trying to change the payment option from a credit card to an iTunes card. So I think I need to delete the credit card number as it was a prepaid. Is there a way to do this?

  • StopALLSOUNDS() ??? is it not anymore?

    Hi all, i'll come straight to the point ! you have 5 buttons.swf and 1 HTML page. If you put these all 5 buttons into a HTML page and click on any button.swf it plays some audio. but if you hit any other button the first one doesn't stop eventhough a

  • HT4199 connected to wifi, but itunes unable to open on ipod touch

    im connected to the internet thru wifi on my ipod touch, my ipod touch is inable to open itunes

  • Service PO to AR invoice

    Createing a 'service' PO for $100. Then copy the PO to an AR invoice and the value of the AR invoice is changed to $50. Currently a discount % is being assigned to this line.  How can the discount % NOT be assigned to this line when the value is chan

  • JCo (in UDF) throws: "...uses or overrides a deprecated API."

    Hi everybody, when using JCO in UDF I get the error: <b>MyMapping_.java uses or overrides a deprecated API. Note: Recompile with -deprecation for details. 1 error</b> Does anybody know how to solve the problem? The problem occurs only when I try to a