MovieClip Tween Control

Hey Everyone,
I am new in actionscript 3.0, and I have a problem to
control a Movieclip component .....
I have a Movieclip component which contains other
components, I managed to tween the components in the Movieclip to
fade Out once I call gotoAndPlay("play") by press the button
"nxt_btn" ......
I attatched my code ......
how can I tell flash to wait until the movieclip ("mc1")
finishes then goto frame "step2" ?!!!! ( which listener can I use)
The MovieClip ----> "mc1" which contains a label called
"play"
Thanks in Advance .......

you can put your commented code on the the frame of mc1 where
you want that code to execute or you can start a loop that
repeatedly checks the currentFrame property of mc1 and executes
your commented code when the disired frame is reached.

Similar Messages

  • Movieclips to control buttons??

    I have an image carousel that plays automatically and also with the assistance of buttons (so users can toggle between the specific images they choose, rather than waiting for the whole thing to scroll though naturally). The buttons are set at 70% opacity, and on Hover and Down they increase to 100%.
    My trouble is this: I want each button to remain at 100% opacity while its corresponding MC is playing, so users are able to easily tell where in the carousel they are. The BTNs and MCs are named very simply btnN and mcN (n = One - Six). The relevant code I've got so far controls the playing of and toggling images ("one" through "six" are the frames on the timeline associated with each MC fading in and out).
    I was thinking there might be some way to use the frame numbers for each MC's duration (e.g. "one" plays from frame 1-100) in order to control how long the buttons stay at 100%, because there's no way to use actual time (like with TimerEvent) because the user can change from image to image at any time they choose. I just can't figure out what kind of function that would be, and what the syntax would look like. If someone would be so kind as to help me with that, I think I can use the upState=downState control to make the buttons look the way they ought to.
    This is what it looks like thus far:
    function imagePlay(event:MouseEvent):void
    if(event.target==btnOne) {
    mc_image_master.gotoAndPlay("one"); }
    if(event.target==btnTwo){
    mc_image_master.gotoAndPlay("two"); }
    if(event.target==btnThree){
    mc_image_master.gotoAndPlay("three"); }
    if(event.target==btnFour){
    mc_image_master.gotoAndPlay("four"); }
    if(event.target==btnFive){
    mc_image_master.gotoAndPlay("five"); }
    if(event.target==btnSix){
    mc_image_master.gotoAndPlay("six"); }
    btnOne.addEventListener(MouseEvent.MOUSE_DOWN, imagePlay);
    btnTwo.addEventListener(MouseEvent.MOUSE_DOWN, imagePlay);
    btnThree.addEventListener(MouseEvent.MOUSE_DOWN, imagePlay);
    btnFour.addEventListener(MouseEvent.MOUSE_DOWN, imagePlay);
    btnFive.addEventListener(MouseEvent.MOUSE_DOWN, imagePlay);
    btnSix.addEventListener(MouseEvent.MOUSE_DOWN, imagePlay);
    Any help would be greatly appreciated!

    Just use _parent. You can usually use the target tool in the
    actions window to give you the relative path from one clip to
    another.

  • Bring movieclip to front

    Hi
    I have created a image gallery. There's a image scroller, when clicking an image it show large image on the same layer. I insert the image to this layer like this: addImage("image url", x, y, this). addImage is my own function witch works fine. In the begin of code I create movieclip (var controls:MovieClip;). When I'm inserting images to that, I want to bring the movieclip to front. Because that large image is added after the controls, it will be on the top.
    How can I bring that movieclip on the top?

    Error: "TypeError: Error #2007: Parameter child must be non-null."
    First of all I create the movieclip:
    var controls:MovieClip;
    Then I run that addChild:
    addChild(controls);    <- Error
    Then I insert the images.

  • Trying to get a movieclip to display on top of an externally loaded swf

    I am trying to ensure that a movieclip named "Incorrect"
    displays on top of a swf file that loads with the following:
    loadMovieNum("map.swf",1);
    I'm sure it's pretty simple, but I couldn't find any good
    reference to a movieclip loading on top of an external swf. I tried
    loading the map.swf into a placeholder movieclip and doing a
    swapDepth, but then the code within the map.swf would no longer
    function properly.
    thanks.

    you must load that movieclip into a _level greater than 1.
    there is no work-around if you load map.swf into _level1.
    you could load map.swf into a target movieclip and then use
    the swapDepths() method of movieclips to control the apparent depth
    of map.swf and your movieclip.

  • FL8: Tween-Klasse / Pause-Funktion mit setInterval?

    Kuckuck!
    Per Klick auf einen Link ("xyz") wird in einen Container-MC
    ein externer
    Film ("A") eingelesen. In A wird ein MC ("B") per
    Tween-Klasse bewegt.
    Klicke ich erneut auf xyz, scheint A seltsamerweise nicht mit
    seinem
    Tweening wie erwartet bei Null anfangen. Es hat vielmehr den
    Anschein,
    dass Flash "sich merkt", an welchem Punkt das Tweening war,
    und zeigt es
    von dort an.
    Habe leider kein (zeigbares) Beispiel, da das Projekt noch
    nicht
    freigegeben ist. Falls keine(r) eine Idee hat, was da los
    ist, liefere
    ich morgen mal ein Onlinebeispiel, wenn mein Problem noch
    besteht.
    Gibt es allgemein irgendwelche H�sslichkeiten bei der
    Verwendung der
    Tween-Klasse, die mir vielleicht unbekannt sind?
    Ich m�chte in meinem Flashfilm diverse Vorg�nge
    nacheinander ablaufen
    lassen. Zwischen den Vorg�ngen (MC rollt hoch, MC
    rollt runter, MC
    blendet sich aus, usw.) sollen Pausen von mehreren Sekunden
    sein.
    Da es in Flash keine Wait/Pause-Funktion gibt und ich nicht
    mit
    onEnterFrame/getTimer-Kombos herumspielen m�chte
    (obwohl es damit geht),
    habe ich die Startvorg�nge aufgeteilt:
    function wait () {
    // wait before starting to scroll screenshot
    slideScreen ("down");
    function wait2 () {
    // wait after scrolling down (screenshot moves upwards)
    slideScreen ("up");
    function wait3 () {
    // wait before showing the next screenshot
    showScreen ();
    function showScreen () {
    // show MC, still (code deleted for this example)
    clearInterval (wid);
    wid = setInterval ("wait", 1000);
    function slideScreen (_modus) {
    if (this._modus == "down") {
    clearInterval (wid);
    wid = setInterval ("wait2", 1000);
    } else {
    clearInterval (wid);
    wid = setInterval ("wait3", 1000);
    showScreen();
    Ich habe diverse Zeilen Code gel�scht, da sie sicher
    nicht wichtig sind.
    Es funktioniert auch alles. Die Frage ist, macht ihr das
    anders? Habt
    ihr einen besseren Weg, die Zeit in Flash anzuhalten?
    Gru� & Dankesch�ns
    Christian Scholz
    Grindelallee 27c
    20146 Hamburg

    Christian Scholz schrieb:
    > Kuckuck!
    >
    > Per Klick auf einen Link ("xyz") wird in einen
    Container-MC ein externer
    > Film ("A") eingelesen. In A wird ein MC ("B") per
    Tween-Klasse bewegt.
    > Klicke ich erneut auf xyz, scheint A seltsamerweise
    nicht mit seinem
    > Tweening wie erwartet bei Null anfangen. Es hat vielmehr
    den Anschein,
    > dass Flash "sich merkt", an welchem Punkt das Tweening
    war, und zeigt es
    > von dort an.
    Also ich w�rde mal versuchen den Container dynamisch
    zu erstellen, dann kannst Du ihn
    anschlie�end vorher immer entfernen, also so:
    myButton.onRelease = function() {
    removeMovieClip(container);
    this.createEmptyMovieClip("container",1);
    loadMovie("film.swf",container);
    Das bewirkt dann vielleicht, dass es zur�ckgesetzt
    wird.
    > Nee? Was nimmst du denn Sch�nes - onEnterFrame?
    Ich habe die Tweening von Adobe auch noch nie benutzt, aber
    ich wei� auch nicht, was Du
    damit jetzt genau anstellst.
    Ich benutze selbst die Movieclip Tweening Prototypes, siehe:
    http://proto.layer51.com/d.aspx?f=1417
    http://proto.layer51.com/d.aspx?f=1165
    Neue Version:
    http://www.mosessupposes.com/Fuse/
    Gr��e
    Nick Weschkalnies
    Web ||
    http://www.medianetic.de
    Blog ||
    http://www.blog.medianetic.de

  • Difference between addChild and internal movieclip

    Hi all,
    What is the difference bettween addChild and the movieclip which is in the movieclip.
    we can get those instance from getChildAt() but
    as per the internal movieclip we can get instance from "mc.mcInternal".
    But when i addChild in "mc" we unable to get that instance from this method "mc.mcInternal".
    what is the diffecenct between addChild and internal movieclip.
    Thanks in Advance
    flashgeeks.

    When you create child movieclips inside a parent movieclip, Flash Pro automatically declares member variables for them, so you can access them by "mc.mcInternal". If you add child to a movieclip at runtime, member variables are no longer declared automatically.
    You either declare member variable yourself (public var myMc:MovieClip;) or you can always access it by myParentMc.getChildByName("myChildMcName");
    Otherwise, there's no difference between the two. Only one more thing to keep in mind: If you put movieclip into another movieclip, you control its z-orderby its layer. When you add child by addChild() method, children are put into "depths", not layers anymore. The lowest depth is just above the highest layer. If you want to addChild() to a specific layer, you have to create an empty movieClip (a holder) in Flash Pro, put it in desired layer and then call myHolder.addChild(childMc).

  • Individual alpha elements on a movieclip

    I have a movie clip that holds a button (latter a dynamic textfield -- (button is quicker for testing )).  I have the movie clip alpha set at .65 as I want the background image to bleed through slightly.  I put the button on the movieclip as I want it to be visible as the movieclip tweens on stage.  My question is, can I target the buttons alpha when the button is a part of my movie clip or does the movie clip and the button have to be seperate?
    code:
    package{
        import flash.display.*;
        import flash.events.*;
        import fl.transitions.Tween;
        import fl.transitions.easing.*;
        import fl.transitions.TweenEvent;
        public class coffeeAS extends MovieClip{
        public var myTweenMenuButton:Tween;
        public var myTweenPlatformA:Tween;
        public var menuButtonHolder_instance:menu_mc = new menu_mc();
        public var menuPlatform_instance:holderA_mc = new holderA_mc();
    //    public var closeButtonMenu_instance:close_btn = new close_btn(); // btn alpha 1
            public function coffeeAS(){
                menuButtonHolder_instance.x = 812;
                menuButtonHolder_instance.y = 35;
                addChild(menuButtonHolder_instance);
                menuButtonHolder_instance.addEventListener(MouseEvent.CLICK, menuOnStage);
                menuPlatform_instance.x = 200;
                menuPlatform_instance.y = -320;
                menuPlatform_instance.alpha = .65;
    //            closeButtonMenu_instance.alpha = 1; // btn alpha 1
                addChild(menuPlatform_instance);
                menuPlatform_instance.addEventListener(MouseEvent.CLICK, menuOffStage);
                function menuOnStage(event:MouseEvent):void{
                    myTweenMenuButton = new Tween(menuButtonHolder_instance, "x", Strong.easeOut, 812, 900, 2, true);
                    myTweenPlatformA = new Tween(menuPlatform_instance, "y", Strong.easeOut, -320, 100, 3, true);
                function menuOffStage(event:MouseEvent):void{
                    myTweenMenuButton = new Tween(menuButtonHolder_instance, "x", Strong.easeOut, 900, 812, 2, true);
                    myTweenPlatformA = new Tween(menuPlatform_instance, "y", Strong.easeOut, 100, -320, 3, true);

    Thanks for the reply.
    I was sort of wondering about that.  "...but the movieclip's alpha will define the maximum alpha of the button."
    OK.  I can work with that.  Now I won't be chasing my tail for the next couple of hours trying to do something that doesn't work the way I was thinking.
    I appreciate the help 

  • How to create an image banner that slides left to right with mouseover?

    I need to create a web banner like the one on the following site:  www.gracelandbaptist.org.  I have been unabe to find anything on how to create such a banner.  I believe it was created in flash but am not sure.  I want my banner to work in the same fashion so that as the mouse is moved from left to right the banner will slide appropriately. Its possible that some java script might also have been used with flash.  If someone could point me in the right direction I would be most grateful.  Thank you.
    dejawhoo

    It is a Flash design and is unlikely javascript is involved with the interaction.  There are probably a couple of ways to approach such a design, but if you have no experience with Flash, you will probably struggle to create it.  The basics involve place the different images  in a movieclip and controlling the horizontal position of that movieclip based on mouse interaction/position.  THe position controls are based on what values are needed to have a particular section of the movieclip occupy the main section of the viewing area.  Actionscript Tweens are probably employed to manage the position transitions.

  • Animation keeps running through. I want it to stop on main menu so i can click buttons

    animation keeps running through. I want it to stop on main menu so i can click buttons which navigate to different scenes. Please help I am a noob.
    here are screen shots of what i have going on:
    Main time line "home" menu
    script in frame 1
    script in frame 48
    scene 2 animation of shape tween which isnt supposed to run all the way through past the home page. I want it to animate but only after i click the button to do so.
    script for this scene
    scene 3 which is causing all the issues i think? supposed to be able to drag boxes. but it just runs through without stopping when i play it.
    here is the compiler errors:

    If you removed the stop() from scene 2 it will not stop there it will return to wherever "home" is.
    If you intend to have the timeline stop at some frame, then you need to place a stop() command in that frame, or use a gotoAndStop() command.
    If you are going to use scenes  be consistent with the way you write the goto commands. The use of is rarely recommended - instead, use different sections of the timeline of just one scene, or use movieclips and control their visibility, or a combination of both.
    If you continue to have issues, try simplifying first - build/add the navigation for one section at a time instead of trying to get it all in one shot.

  • Problem removing child at end game screen

    Hi everyone
    I am creating an android app for my university corusework and it is based on shooting alien spaceships as they fly in from the right side of the screen. When my gun is shot enough times the game should go to the end screen, the problem is I need to remove the alien bullets as the game ends. However I keep getting an error of an undefined property. Here is the code for my main timeline:
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.display.MovieClip;
    //gun control
    var upButtonIsDown:Boolean;
    var downButtonIsDown:Boolean;
    var livesLost:Number = 0;
    stop();
    btn_up.addEventListener(MouseEvent.MOUSE_DOWN,upDown);
    btn_down.addEventListener(MouseEvent.MOUSE_DOWN,downDown);
    btn_up.addEventListener(MouseEvent.MOUSE_UP,upUp);
    btn_down.addEventListener(MouseEvent.MOUSE_UP,downUp);
    //bg
    var bgButtonIsDown:Boolean;
    bg.addEventListener(MouseEvent.MOUSE_UP,upUp);
    bg.addEventListener (MouseEvent.MOUSE_UP,downUp);
    stage.addEventListener(Event.ENTER_FRAME,pulse);
    function pulse(evt:Event)
              if (currentFrame!=2) return;
              if (upButtonIsDown) mc_gun.y-=5;
              if (downButtonIsDown) mc_gun.y+=5;
              checkforHits();
    function checkforHits()
              for (var i:Number=0;i<numChildren;i++)
                                   if (getChildAt  is alienbullet)
                                             var ab:alienbullet = alienbullet (getChildAt (i));
                                             if (mc_gun.hitTestObject(ab) && ab.currentFrame==1)
                                                       mc_gun.gotoAndStop(mc_gun.currentFrame+1);
                                                       ab.gotoAndStop(2);
                                                       livesLost++;
                                                       if (livesLost>3) endGame();
                                                       return;
    function endGame()
              for (var i:Number=numChildren-1;i>=0;i--)
                        if (getChildAt(i) is alienbullet)
                                  var ab:alienbullet = alienbullet(getChildAt(i));
                                  ab.killMe();
              gotoAndStop(21);
    function upDown (evt:MouseEvent)
              upButtonIsDown=true;
    function downDown (evt:MouseEvent)
              downButtonIsDown=true;
    function upUp (evt:MouseEvent)
              upButtonIsDown=false;
    function downUp (evt:MouseEvent)
              downButtonIsDown=false;
    //shoot code
    mc_gun.addEventListener(MouseEvent.MOUSE_DOWN,shoot);
    stage,addEventListener(Event.ENTER_FRAME,alienhit);
    var bulletArray:Array = new Array();
    bulletArray.push(mc_bullet1);
    bulletArray.push(mc_bullet2);
    bulletArray.push(mc_bullet3);
    bulletArray.push(mc_bullet4);
    bulletArray.push(mc_bullet5);
    bulletArray.push(mc_bullet6);
    var bulletCounter:Number = 0;
    function alienhit(evt:Event)
              for (var i:Number=0;i<bulletArray.length;i++)
                                  if (mc_alienA1.hitTestObject(bulletArray[i])) trace("alienA1 has been hit" +i);
                                  if (mc_alienA2.hitTestObject(bulletArray[i])) trace("alienA2 has been hit" +i);
                                  if (mc_alienA3.hitTestObject(bulletArray[i])) trace("alienA3 has been hit" +i);
    function shoot(evt:MouseEvent)
              if (bulletCounter<5) bulletCounter++;
              else bulletCounter=0;
              shootmc(bulletArray[bulletCounter]);
    function shootmc(mc:MovieClip)
              mc.visible=true;
              mc.x = mc_gun.x;
              mc.y = mc_gun.y;
              mc.gotoAndPlay(2);
    Now the endGame function is supposed to call on this code which is in the package file (script for aliens)
    public function killMe()
                                            this.removeEventListener(Event.ENTER_FRAME,pulse);
                                            parent.removeChild(this);
    full script:
    package
              import flash.display.MovieClip;
              import flash.events.Event;
              public class alien1 extends MovieClip
                        var yMin = 0;
                        var yMax = stage.stageHeight;
                        var yInc = 10;
                        var maxPulses= Math.round(yMax/yInc);
                        var changeDirectionAt = Math.round(Math.random() * maxPulses);
                        var pulseCount = 0;
                        var fireCount=0;
                        var fireAt = Math.round(Math.random() * maxPulses);
                        public function alien1()
                                  this.addEventListener(Event.ENTER_FRAME,apulse);
                        function apulse(evt:Event)
                                  pulseCount++;
                                  fireCount++;
                                  if (pulseCount>=changeDirectionAt)
                                            yInc *=  -1;
                                            pulseCount = 0;
                                            changeDirectionAt = Math.round(Math.random() * maxPulses);
                                            return;
                                  if (fireCount>=fireAt)
                                            var bullet:alienbullet = new alienbullet();
                                            bullet.x = this.x;
                                            bullet.y = this.y;
                                            parent.addChild(bullet);
                                            fireCount=0;
                                            fireAt = Math.round(Math.random() * maxPulses);
                                  this.y +=  yInc;
                                  if (this.y <= yMin)
                                            yInc *=  -1;
                                  if (this.y >= yMax)
                                            yInc *=  -1;
                                  public function killMe()
                                            this.removeEventListener(Event.ENTER_FRAME,pulse);
                                            parent.removeChild(this);
    Would really appreciate any help! Thanks

    if (mc_alienA1.hitTestObject(bulletArray[i])) trace("alienA1 has been hit" +i);
    this is line 103 and is in the main timeline
    another error that shows up is
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at alien1/apulse()[C:\Users\_____\Desktop\DES B\alien1.as:46]
                                            var bullet:alienbullet = new alienbullet();
                                            bullet.x = this.x;
                                            bullet.y = this.y;
                                            parent.addChild(bullet); <<< line 46
                                            fireCount=0;
                                            fireAt = Math.round(Math.random() * maxPulses);

  • Main window animation to fly in when clicked on different menu buttons

    For a flash website I'm creating, I want my main window box with all the information containing it to fly in when a menu button is clicked.
    I can't figure out the actionscript to do that.
    It's the same thing as this website's main window:
    http://www.flash-templates-today.com/free-flash-templates/27/

    thanks for the tips!
    did you know of any links or templates that would have the actionscript for that already done that i could base mine off of?
    I'm not sure how I would make the movieclip tween when I clicked on a menu button and have the text in it change as well.

  • Flash project audio button help needed

    Hi,
    I am just learning Actionscript 3 and trying to create buttons that turn a previous sound off before they turn a new one on. Also I want a button on the front that turns all sound off if it is pressed. I have attached my files in a zip folder.
    The problem is all of my buttons which are inside movieclips just control the one sound. I have a couple more to do. I understand I will need an if statement but somehow I have to control all sounds and I don't quite get it.
    I would really love someone to point me in the right direction. I cannot find a tutorial anywhere and am going crazy.
    I look forward to someones reply,
    Jan

    Jay Robinson2 wrote:
    I've just upgraded to Logic 7.2 as I bought an intel Mac. However, for some reason the audio plays through the macs built in speaker. I've got into preferences>audio>drivers and changed the driver to 'built in line input' but it's still playing through the speaker itself. I never had this problem while i was running previous versions on my old mac
    When i boot up logic it does say something that i've never seen before which could be the cause...' Project Manager database on disk has got wrong version. Rescanning required'.
    Any ideas?
    G5 2.8 Quad Mac OS X (10.5.5)
    Hi,
    Try updating to 7.2.3
    As far as the Manager... try doing a new expanded scan, overnight. This will update the database.
    As far as the built in driver... you are selecting an INPUT.... and you expect it to change the OUTPUT??? Again, you are selecting an INPUT, while expecting the OUTPUT to change.
    The Built in drivers have only 1 output available, And in your case, that is working as expected. When you want to RECORD via either input, that is when you change the driver. You should have two choices : Mic, and Line.
    Cheers

  • FLash 8 - Flash MX 6.0?

    Hello all,
    Is it possible to save files from Flash 8 so that they can be
    used in Flash MX version 6.0? I only seem to get the choice of
    Flash 8 or Flash MX 2004.
    Many thanks, Sam.

    You've answered your own question. In fact, I find it
    irritating myself. The only way to do it is to save to MX2004
    format, then reopen it in MX2004 (which I have on my laptop) and
    re-save in Flash MX format. There are many graphic designers and
    animators who think that there have been no significant
    improvements in Flash since Flash MX, and thus don't want to spend
    the money to upgrade. For the most part I agree with them. And I
    work on projects with them, which is why I find the situation to be
    troublesome. Other than ActionScript and some slightly better
    tweening controls and marginally useful (but mostly unnecessary)
    graphics filters, Flash 8 doesn't have much extra to offer
    designers and animators.

  • Change layer order by script

    I have a bunch of embedded movies that are controlled by
    hidden buttons. I would like to be able to adjust the stacking
    order or z-depth of the layers by scripts to solve a design
    problem. What I've ended up with is if you roll over button 3 the
    #3 movie zooms up to it's desired position on the screen and plays.
    If you then roll over button 1 the #3 movie continues to play until
    the end then zooms or scales down to it's place holder size while
    movie 1 is scaling up and moving into position to play. The problem
    is that Movie 3 is above Movie 1 so while 3 is continuing to the
    end and one is moving into position you can't see movie 1 because
    it's covered by movie 3 until movie 3 scales back down and moves to
    it's proper position.
    What I'd like to do is to force whatever movie I've currently
    over to move to the top layer. Something like:
    if (rollOver button1 ) {this movie on top} else {this movie
    in original order}
    Is this possible? Spent hours with the help files and
    searching tutorials with no success.

    use the swapDepths() method of movieclips to control the
    z-depth with actionscript.

  • Combine 10 smaller .swf apps into 1 big app with menu? Possible?

    Hi,
    I create educational games for kids.
    These are normally made as 1 swf file for each minigame and I allready had a collection of these.
    Is it somehow possible in air for android (I understand that for iOS is likely not possible because of Apple restrictions) to include all these SWF files together with 1 menu.swf into 1 big package so that the menu could somehow load a activity swf on demand (local, since the swf is allready in the package) ?
    I also understand that communication from the activity to the menu.swf is most probably sandboxed, but I suppose that communication from menu to loaded activity should still be possible so I can somehow set a variable flag in the loaded content for the menu.swf to know when it may unload the content.
    Hopefully somebody can give me a little help on this, first of all if its possible at all and secondle (if possible) in what direction I should go start looking to create this.
    Working with flash CS5 by the way.

    Yes, you can do:
    i) Create a index file and use loader for swfs and assign the loader contents to a movieclip to control the timeline of loaded swf.
    ii) External swf should not contain any script and whatever script you have to do will control by your index.
    I had done a project by creating many .as files for the external swfs and just include that in the index file when accessing the external swf.

Maybe you are looking for

  • Exporting data from DB to a XML file (in InDesign CS3)

    Hi folks, I receive my data from a call to a database in InDesign, then I need to save them in XML file in my local drive, I use Mac OS X but I want to use the same code (as much as possible) shared with the same version of plugin on Windows. I also

  • How to find the user ID or name who deleted the reservation

    HI, Some one has set the indicator Delete in reservation.I need to find who has done that activity. we have CDPOS and CDHDR but what are the parameters i need to pass to get the user name Kindly guide me regards subbu

  • Issue in change incidence via email.

    Hello All, I have configured a rule in SO50 to process an incoming email. I have maintained my sap user ID for testing purpose in the Receipent address column. In the rule I have also maintained the class which is used to change the status of the inc

  • Rename a set of files in Power Shell

    Hello Scripting Guys, I am trying to rename a group of files in a given directory.  The files all start with a number and a dash (such as "1 - " or "24 - ") when I first get them. Sometimes there are files that do not start with a number or a dash in

  • How to create a transport background for an applet ?

    HI can any one tell me the solution for this ... How to create a transport background for an applet ? please help -seenu_ch