Movieclips acting as buttons questions

I have 4 mc's that are acting as btns inside an mc on the main timeline
code is below
newolivefour_mc.buttonMode=true
newolivefour_mc.addEventListener(MouseEvent.ROLL_OVER,buttonOverfour);
newolivefour_mc.addEventListener(MouseEvent.ROLL_OUT,buttonOutfour);
function buttonOverfour(e:MouseEvent):void
    e.currentTarget.gotoAndPlay("over")
function buttonOutfour(e:MouseEvent):void
    e.currentTarget.gotoAndPlay("out")
there are 3 other mc/btns and all come up at different frames in  mainbranch_mc (mainbranch_mc is on the main timeline)
first question, if I add the above codes to each mc at the beginning or end of mainbranch_mc I get a null error, so the only way I do not is if I add actions to the frames the buttons start in. (is this correct?)
second question, since btn mode is true I do not need to change the mc properties from mc to button correct?
last question, since newolivefour_mc and the 3 other btns (which I did not list are all inside the branch_mc timeline) how and where do I code so the btns when released to getURL's
any help??
RD

1.  you can't apply code to an object that doesn't exist when the code executes.
2.  never change an object from one type to another in the properties panel.  i have no idea why that option exists.
3:
newolivefour_mc.addEventListener(MouseEvent.CLICK,buttonClickfour);
function  buttonClickfour(e:MouseEvent):void
   navigateToURL(new URLRequest("http://www.adobe.com"));
or even better, so you only need one click function for all your buttons:
newolivefour_mc.addEventListener(MouseEvent.CLICK,buttonClick);
newolivefour_mc.urlS="http://www.adobe.com"
function  buttonClick(e:MouseEvent):void
    navigateToURL(new URLRequest(e.currentTarget.urlS));

Similar Messages

  • Overlapping items that act as buttons

    I have placed 3 smart shapes that are set to act as button, i set an action to show 3 different groups when each of the shape is clicked. Each group is set as hidden as default state.
    The problem is that when the group became visible, the 3 shapes on the background are still active. That could be correct, but also if i place a big square shape covering everything inside the group, the 3 base shapes still are clickable. I also tried to set the cover shape as a button, and, just to try if something changes, to set opacity to 100 to completely cover the 3 base shapes, but when the mouse goes over the area where the 3 shapes are placed (also if you cannot see them), they are still active and the click will execute the action associated with them. This behaviour is very unusual, I would expect to override every shape-button by placing a new item that completely cover it!

    These are the base layer shapes. Just after the first white shape (not interactive) that contain the question, i placed 3 interactive shapes.
    When clicking one of the 3 interactive shapes, i want to show a group that contains a feedback and a button to go back and retry or to continue to next slide.
    This is the example of the "retry feedback" inside the "retry" group
    and this is the example of the "correct feedback" inside the "correct" group
    I would like just the "RIPROVA" and "PROSEGUI" shapes to be active when each group is shown, while on the contrary the user can click again on the 3 items on the base layer also if i put another shape over them (like i did, placing a big transparent square over them). In my opinion this is not a default behaviour, I worked on flash and html, and if you place one interactive item over another, the action of the item that is "over" is prior to the other, while in this situation, also if i set an action on the transparent big square, if i click on the area covered by one of the 3 shapes when the group (and the transparent square) is visible, the action executed will be that one associated with the shape placed "under".

  • Movieclip as a button roll over

    I have a movieclip serving as a button in a slideshow. The movieclip instance name is tmb1_mc. The second frame in the movieclip is a little brighter than frame 1. How could I write a function to go to the second frame in the movieclip and another function to go to frame 1 when the mouse rolls out?
    I tried the nextFrame command in this function
    function mcOver(e:MouseEvent):void
       nextFrame();
    But that went to the next frame on the slideshow, the main timeline.
    Thanks for your time

    thank you that worked but I want a function that will work for all 14 movieclip buttons. I tried
    function mcOver(e:MouseEvent):void
       e.currentTarget.gotoAndStop(2);
    but that didn't work
    here is all my current actionscript. the function in question is at the bottom.
    stop();
    var numFrames:Number = 14;
    tmb1_mc.targetPic = 1;
    tmb2_mc.targetPic = 2;
    tmb3_mc.targetPic = 3;
    tmb4_mc.targetPic = 4;
    tmb5_mc.targetPic = 5;
    tmb6_mc.targetPic = 6;
    tmb7_mc.targetPic = 7;
    tmb8_mc.targetPic = 8;
    tmb9_mc.targetPic = 9;
    tmb10_mc.targetPic = 10;
    tmb11_mc.targetPic = 11;
    tmb12_mc.targetPic = 12;
    tmb13_mc.targetPic = 13;
    tmb14_mc.targetPic = 14;
    tmb1_mc.buttonMode = true;
    tmb2_mc.buttonMode = true;
    tmb3_mc.buttonMode = true;
    tmb4_mc.buttonMode = true;
    tmb5_mc.buttonMode = true;
    tmb6_mc.buttonMode = true;
    tmb7_mc.buttonMode = true;
    tmb8_mc.buttonMode = true;
    tmb9_mc.buttonMode = true;
    tmb10_mc.buttonMode = true;
    tmb11_mc.buttonMode = true;
    tmb12_mc.buttonMode = true;
    tmb13_mc.buttonMode = true;
    tmb14_mc.buttonMode = true;
    right_btn.addEventListener(MouseEvent.CLICK, nextPic);
    left_btn.addEventListener(MouseEvent.CLICK,  prevPic);
    tmb1_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb2_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb3_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb4_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb5_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb6_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb7_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb8_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb9_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb10_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb11_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb12_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb13_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb14_mc.addEventListener(MouseEvent.CLICK,  picFrame);
    tmb2_mc.addEventListener(MouseEvent.ROLL_OVER,  mcOver);
    function nextPic(e:MouseEvent):void
    if (currentFrame < numFrames)
      nextFrame();
    else
      gotoAndStop(1);
    function prevPic(e:MouseEvent):void
    if (currentFrame > 1)
      prevFrame();
    else
      gotoAndStop(numFrames);
    function picFrame(e:MouseEvent):void
       gotoAndStop(e.currentTarget.targetPic);
    function mcOver(e:MouseEvent):void
       tmb1_mc.gotoAndStop(2);

  • Embed Button Within Movieclip--not finding button in script

    I want to now edit my movieclip to include another symbol (button) that will be recognized by script...I tried embedding..and adding the normal event listener however it doesn't see my button within the mc...what am i doing wrong...im sure it is something simple.
    My changes are in bold, and work as long as the button is not within the movieclip.  Any Ideas?
    ignore filename :/ i was making sure i didn't overwrite my original fla
    var xVel:Number = 0;
    stop()
    stage.addEventListener(Event.ENTER_FRAME,moveMC);
    tour_mc.addEventListener(Event.ENTER_FRAME,
    play_btn.addEventListener(MouseEvent.CLICK,forwardPlay);
    back_btn.addEventListener(MouseEvent.CLICK, backPlay);
    stop_btn.addEventListener(MouseEvent.CLICK,stopPlay);
    ff_btn.addEventListener(MouseEvent.CLICK,ffPlay);
    fr_btn.addEventListener(MouseEvent.CLICK,frPlay);
    kit2_btn.addEventListener(MouseEvent.CLICK,mvFrame);
    function moveMC(myEvent:Event):void {
         tour_mc.x += xVel;
         if(tour_mc.x <= stage.stageWidth-tour_mc.width){
             tour_mc.x = stage.stageWidth-tour_mc.width;
         if(tour_mc.x >= 0){
             tour_mc.x = 0;
    function forwardPlay(myEvent:MouseEvent):void {
         xVel = 2;
    function backPlay(myEvent:MouseEvent):void {
         xVel = -2
    function stopPlay(myEvent:MouseEvent):void {
         xVel = 0;
    function ffPlay(myEvent:MouseEvent):void {
         xVel=6;
    function frPlay(myEvent:MouseEvent):void {
        xVel=-6;
    function mvFrame(myEvent:MouseEvent):void{
         gotoAndStop(14);

    This is the answer...i figured it out not too long after i setup this question
    movieclipname.button.name.addEventListener(MouseEvent.CLICK,function);
    in my case it was :
    tour_mc.kit2_btn.addEventListener(MouseEvent.CLICK,mvFrame);

  • Updateable Report : re-display collection & Update Button question

    This a sequel to a previous Updateable Report question I had.
    Varad pointed me to this doc which has been incredibly helpful .
    http://www.oracle.com/technology/products/database/application_express/
    howtos/tabular_form.html#RESTRICTIONS
    I was\am having the following issue :
    Let's zoom to the part where we create a region to display the tabular form for the previously saved collection , and drill down to the part where we create an UPDATE EMP button for that displayed collection :
    I was not able to display the collection again when I failed the validation a 2nd time. ie, clicking on the UPDATE EMP button after it displays both the errors-post validation and after displaying the collection ( of course) would return me to the previous report pre-collection creation. When I turned debug on I found out that it was not even creating the collection and was hence deleting it before displaying the subsequent page.
    So what I did differently from what the documention instructs is as follows :
    I removed the page reference on the 'branch to page' of the UPDATE EMP button. In my case, the default 'Branch to ' Page after Processing is the same page I am using for this part of the application.
    So when I remove the reference to the page number. for that button, the page is then able to re-create the collection and hence re-display the collection so I can re-fix the 2nd error ( ... and 3rd) and finally update the report .
    Just wondering if anyone else has had the same experience ?
    Thanks !

    The columns and rows have a set format for the Id, so if you know one Id you know the row and the ids of all the other columns.
    As an example, this will show the value of column 6 when you click on any column with the function call in the Element Attributes:
    Script:
    <script type="text/javascript">
    function showCol6(col){
      var col6 = document.getElementById("f06_" + col.id.substr(4,4));
      alert(col6.value);
    </script>Element Attributes:
    onclick=showCol6(this);You could also use a Named Column template, specific to this region, to include the column values directly in the function call, but I think it's best to stick with the ApEx defaults if possible.

  • Flash CS3 Button question

    Is there any way that I can set up buttons that can be controlled outside of flash? I'm developing a flash header for a friend's website. The header has buttons which link to pages on the site. My friend, who does not have flash, would like to be able to control the pages that the buttons direct to. Is there actionscript that could direct the button to get a url extension stored outside of the swf?

    Now that I have my movieclip buttons all set, I have a problem.
    This is setup like a "jeopardy looking" game of a series of buttons, where when one clicks on a button, the answer appears and remains on the screen.  Now I have to add another button "for more info click here" on that answer screen (which is in the down state.)
    When I add another frame label inside that mc button, and point the new button to "go to and stop" there, it doesn't.  I see it appear for a second and then goes back to the "over" state.
    I hope this makes sense.  Thank you for any suggestions.

  • Good old "Disable brower's Back button" question.

    I don't have to implement it. I am posing this question just out of curosity . Is there a way we can somehow disable Back button on our browser starting second page onwards?
    I recently browsed one site that had "Next" and Previous" buttons on each page. Surprisingly Back button on all the pages was disabled.
    I know, when we open the first page for browsing, Back button is disabled by default. Is there a way we can force browser to treat each and every page as the first page? How did they implement this functionality?
    Thanks.

    If you're using JSPs, simply ensure that they are not being cached by the browser.
    <%
    response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", 0);
    %>Otherwise, there are a couple of ways to do this via Javascript.

  • Load swf into movieclip // play pause buttons

    I am going out of my mind trying to get this to work. I can do it in AS2 without a hitch - but not AS3.
    I just need to load an external swf file into an empty movieclip. Then I have 2 buttons play and pause that need to be on the top layer of the new movie and they need to play and pause the loaded swf file.
    I have tried a number of things and nothing is working. Please help.
    Thank you in advance.
    Shawna

    you can use:
    var ldr:Loader=new Loader();
    addChild(ldr);
    ldr.load(new URLRequest("yourswfthatyouwanttoload.swf"));
    addChild(yourplaybtn);
    addChild(yourpausebtn);
    yourplaybtn.addEventListener(MouseEvent.CLICK,playF);
    yourpausebtn.addEventListener(MouseEvent.CLICK.pauseF);
    function playF(e:Event){
    MovieClip(ldr.content).play();
    function pauseF(e:Event){
    MovieClip(ldr.content).stop();

  • How to make movieclip controlled by button fade in/out on mouse over/out?

    Hi,
    I am new to Flash, and have tried searching numerous forums to the answer to this question, but nothing I try seems to work. Basically I am trying to create a single "Image" that triggers different animations when you mouse over different invisible buttons located on specific areas. The technique I am using is basically spacing out the animations over different frames, and using the gotoAndPlay command specifying the where the relevant animation is located.
    Here is the code from my actions layer with two animations:
    stop(); /*This ensures no animations are playing on the first frame*/
    /*Mouse over event for redbutton1*/
    redbutton1.addEventListener(MouseEvent.MOUSE_OVER, fl_MouseOverToGoToAndPlayFromFrame_2);
    function fl_MouseOverToGoToAndPlayFromFrame_2(event:MouseEvent):void
         gotoAndPlay(2); /*This is the frame where the animaton triggered by redbutton1 is located*/
    /* Mouse Out Event for redbutton1*/
    redbutton1.addEventListener(MouseEvent.MOUSE_OUT, fl_MouseOutHandler_3);
    function fl_MouseOutHandler_3(event:MouseEvent):void
         gotoAndPlay(1) /*takes animation back to the start of timeline where it stops*/
    /*Mouse over event for bluebutton1*/
    bluebutton1.addEventListener(MouseEvent.MOUSE_OVER, fl_MouseOverToGoToAndPlayFromFrame_2);
    function fl_MouseOverToGoToAndPlayFromFrame_2(event:MouseEvent):void
         gotoAndPlay(30); /*This is the frame where the animaton triggered by bluebutton1 is located*/
    /* Mouse Out Event for bluebutton1*/
    bluebutton1.addEventListener(MouseEvent.MOUSE_OUT, fl_MouseOutHandler_3);
    function fl_MouseOutHandler_3(event:MouseEvent):void
         gotoAndPlay(1) /*takes animation back to the start of timeline where it stops*/
    Now basically all I need is some code that means that instead of abruptly starting and stopping the animation, the animation will fade in/out whenever the mouseover/out events are triggered. Note: the animation doesn't have to finish, it basically only plays while the mouse is over.
    Any help would be greatly appreciated.

    It will help oif you show the code for the code-based tweening.  The basics of getting it working with the MOUSE_OVER/OUR commands is fairly straightforward. 
    You have listeners for both events, and the handlers for each listener is where you activate the tweens.  For more seamless functionality it is usually a good idea to have the starting point of the tween be the point where the object currently is (its x or y (or both) propertiy) instead of a fixed value.

  • Layered Menu Button Question...

    Using layered menus throughout my project as it is fitting with our concept, but have never used them before. I have a question:
    I have several images on a flattened layer of a PSD file that I want to use for buttons on any given screen. Can I use an overlay to give an outer glow effect to a given button image? (Don't really want to go back and add extra layers in the psd for each button state if I can show selections some other way.)
    My limited experience has shown me that each time you add layers to the PSD file, it changes the layer selections settings on the menus where that PSD is used, as if DVDSP simply counted the depths of the layers and wasn't using the layer name as its reference.
    In short, what is the best way to show the user he has selected a button on a layered menu without adding more layers to the original PSD, if possible?

    James Roller1 wrote:
    So let me get this straight about layered menus... especially in my case: the final background document needs to be complete before I begin adding buttons or building the project, and any additional layers added will throw off any work done. Correct?
    Unsure of that, been awhile since I played with layered menus, due to their limitations on some players, slower speed etc. so I stay away from them (and so many others) for the most part when creating a "real" DVD (as oppossed to just some one off type fun things for my friends, family and myself.)
    I do not recall having the issue that you seem to have when renaming - having things switched up - but it has been awhile and I think I probably had everything laid out ahead when I did it. But if you are seeing that happen then have the menu set as close as possible before using it.

  • Adobe flash cs4 as3 button question

    Hi,
    I just wonder that how can i write this code  that means if the "specific" button is clicked(i mean if the homebutton is clicked=true) like this..
    and how can i refer a button that in main stage while in an another clip's substage..
    ty all

    A button beiong clicked is an event, not a persistent state, so if you want to have some conditional outside of the button's normal event listening/handling code, then you would need to create such a property/variable.  So you could create a variable: var homeClicked:Boolean = false;  and when the button gets clicked, your event handler function could assign: homeClicked = true.  You could then use something like...
    if(homeClicked){
         // do whatever you intend
    To refer to an object in the parent timeline you can use: MovieClip(this.parent).objectName

  • Flash Button question.

    Any help on this matter is greatly appriciated. This is
    probably a stupid question but it is driving me nuts.
    I was updating my site in dreamweaver and I added a bunch of
    flash buttons.(slider type) When I upload the site to my server ,
    you have to click each button one time before the flash starts
    working. If I remember correctly, when I first started adding
    buttons, the properties at the bottom had 2 check boxes on the left
    hand side to continouisly play the flash. I do not have those check
    boxes now. I opened the buttons in flash and everything works fine
    in flash. If I hit the play button(in properties) the flash will
    work correctly until you preview in browser.
    I'm an amatuer at best with this stuff so any help at all
    would be extremly appreciated. You can see what I mean on my web
    site. It is www.brtguitarsllc.com
    I didn't know what place was the correct place to post, so I
    posted in 2 fourms.

    Answered on the DW forum.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "BRT Guitars" <[email protected]> wrote in
    message
    news:f1ptf1$h6b$[email protected]..
    > Any help on this matter is greatly appriciated. This is
    probably a stupid
    > question but it is driving me nuts.
    >
    > I was updating my site in dreamweaver and I added a
    bunch of flash
    > buttons.(slider type) When I upload the site to my
    server , you have to
    > click
    > each button one time before the flash starts working. If
    I remember
    > correctly,
    > when I first started adding buttons, the properties at
    the bottom had 2
    > check
    > boxes on the left hand side to continouisly play the
    flash. I do not have
    > those
    > check boxes now. I opened the buttons in flash and
    everything works fine
    > in
    > flash. If I hit the play button(in properties) the flash
    will work
    > correctly
    > until you preview in browser.
    >
    > I'm an amatuer at best with this stuff so any help at
    all would be
    > extremly
    > appreciated. You can see what I mean on my web site. It
    is
    > www.brtguitarsllc.com
    >
    > I didn't know what place was the correct place to post,
    so I posted in 2
    > fourms.
    >

  • I accidetally hit the brightness button -Question about Auto brightness....

    I leave my display settings on "Automatically adjust screen as ambient light changes" which works in conjunction with the keyboard illumination.
    My question is, I accidentally hit the "Brightness Decrease" button often, the button directly above the ONE key. I was wondering,... How does that affect the automatic features?
    I noticed that the brightness never seems to go above about half way on the meter in the displays control panel, Do I have to adjust the brightness to full intensity to give the display more "Automatic" Range?
    It seems as if since I hit the decrease button, no matter how bright or dim a room is, the display never goes about the half-way mark.
    I know this is a weird question, but I really apprciate your opionon / information relating to this,
    -Rob

    (I do not know all that much on this topic, but) I believe that when you hit the brightness button, the automatic adjustment turns off. To reactivate it, you can restart your computer (obviously), or, I noticed that the automatic kicks back in when you unplug/plugin your computer.
    That's about all I know.
    I can experiment with more things if you want, just let me know. And I was curious, how do you keep accidentily hitting the brightness button?
    Peace
    Bweb

  • Trackpad Button Question

    I have a somewhat dumb question, but on my brand new mac air, when i press certain spots on the track pad button (middle) it's not as smooth as when I click to the sides. I've only had it for four days, had to return first one for dead pixels and second because trackpad button was uneven.
    Does anyone else notice this on their air? I don't want to be too anal about a computer and was wondering if maybe this issue would work itself out with more use. If not o you think apple would exchange for a small detail like this?

    I really don't think so. My MacBook Pro's trackpad clicks harder at different spots on the pad. The further I move up on it, the more pressure I have to put on it to click.
    Here is a picture of the Air's trackpad button from the bottom.
    It's looks like a strip with probably a spring-loaded button in it. The button might be in the middle, which would explain why it's harder to push there. In most of Apple's demos, they show the finger applying pressure more towards the ends on the trackpad button, as pictured below.
    I would turn on "Tap to Click" and see if you can get used to that.
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Macsimum News Associate Editor  Creator of 'Mac611 - Mobile Mac Support'

  • Some Button Questions (AS2.0)

    I made a coloring book game in AS 2.0 (I did it this way so that I could put individual pieces of code for various buttons - there are around 50). I based it off a tutorial I found online. It works really well. These are the codes I used:
    In a top layer, I have just in frame 1 (there is only one frame in the whole thing):
    _root.fillColor = 0xFFFFFF;
    Each colorable part of the picture is a movie clip with a button inside, and each of those buttons has the following code:
    on (press) {
    color = new Color(this);
    color.setRGB(_root.fillColor);
    delete color;
    And then I have two color buttons they can "dip" their pointer into, then they can click on the colorable areas and color them. The code for the color buttons is:
    on (release) {
    _root.fillColor = 0xC71E07;
    _root.brush.gotoAndStop(8);
    Note: the hex code there is for the red button; it's different for the other color.
    Anyway, so this all works really well. What I need now are two buttons that I have NO idea how to make.
    Button 1: A "show answer" button that pops up a little graphic showing what their picture should look like. I know how to do this in AS 3.0 (I would just have the object fly in from off-stage on the button press), but not in 2.0. One thing I tried was to have it skip to a different scene or even just a different frame in which that object exists in place. The issue there is that it causes the coloring the user has done to disappear.
    Button 2: A "clear board" button that resets the whole thing. I've tried using the gotoandPlay(1) action with this button, but it doesn't do anything.
    Any help would be much appreciated. Thanks.

    Putting the code you gave me into my AS2.0 project, I get the following errors and no output:
    Scene=Scene 1, layer=buttons, frame=1, Line 4     Statement must appear within on handler
    Scene=Scene 1, layer=buttons, frame=1, Line 2     Statement must appear within on handler
    Scene=Scene 1, layer=buttons, frame=1, Line 1     Statement must appear within on handler
    This is the code I put on the button, just in case maybe there is some problem with it:
    trace(show)
    show.onRelease = fl_ClickToPosition;
    function fl_ClickToPosition()
         trace(Answer);
         Answer._x = 822.90;
         Answer._y = 187.50;
    (in this movie, the button to show answers is called "show" and the graphic that shows the answer is called "Answer")
    I put this into another game I made in AS3.0 (the one I'm having drag-drop issues with) and it gives the following compiler error:
    Scene 1, Layer 'Actions', Frame 1, Line 93 1119: Access of possibly undefined property onRelease through a reference with static type flash.display:SimpleButton.
    If I just keep my code as-is (on the AS3.0 one) but add the trace function to the answersflyin, it works the same as it did before and the output says [object MovieClip].
    Thanks for all the help, by the way. I have no idea what I'm doing; learning on the job.

Maybe you are looking for

  • Every time I attempt to render video Premiere crashes

    I'm working on a pretty big project (for me at least) but when I was going to render a sample to send for feedback premiere simply refused and crashed. It kept doing this every time I attempted to render an output file including ANY of the video trac

  • Re: Keeping my old number/ WHO CAN I COMPLAIN TO?

    Dear Sir Please accept this as a formal letter of complaint. I joined BT 6 to 8 weeks ago, and since then I have been trying my best to get my Virgin Number  ported from Virgin Media to BT. I have been in contact with BT on numerous occasions, being

  • RSQL ERROR 23 WHEN ACCESSING TABLE "BKPF"

    Can you tell me what is wrong with this statement.  I get an ABAP runtime error. DBIF_RSQL_INVALID_RSQL. RSQL ERROR 23 WHEN ACCESSING TABLE "BKPF" START-OF-SELECTION.   SELECT BUDAT BLDAT BLART XBLNR_ALT BKTXT XSNET WAERS FROM BKPF INTO   IT_BKPF    

  • VBA Macro

    Hi All , In most of my layouts the lead column is dynamic .For which I need to define VBA MACRO so that excel formulae are calculated properly . I am not that conversant with  macro of excel .Can any body help me how to start with .If any documentati

  • Error Message while doing Initialization of opening Stock in TS

    Hello Gurus The following Message coming while performing Initialization of opening Stock in Transfer Structure of 2LIS_03_BX using T-Code:  MCNB. What may be the problem. Pl provide me the solution. Thank in advance regards vijay