Can't seem to get hand cursor happening.

To whom it may concern;
I have been struggling to get a hand cursor over my MC's for pic4_mc, pic14_mc and pic1_mc. They are photos turned into MC's with as3 function to act like a btn. Perhaps I am putting the script:
(myMC).buttonMode = true;
(myMC).useHandCursor = true;
in the wrong place...
Below is my script for a website I am doing...It may not be the correct way of doing script but the functionality seems to work (apart for the hand cursor) so please forgive me if it seems all over the place.
stop();
//Cleaning services pic
pic4_mc.addEventListener(MouseEvent.MOUSE_OUT, fl_MouseOutHandler_5);
function fl_MouseOutHandler_5(event:MouseEvent):void
          pic4_mc.alpha = 0.5;
          trace("Moused out");
pic4_mc.addEventListener(MouseEvent.MOUSE_OVER, fl_MouseOverHandler_5);
function fl_MouseOverHandler_5(event:MouseEvent):void
          pic4_mc.alpha = 1.0;
          trace("Moused over");
//Garden maintenance pic
pic14_mc.addEventListener(MouseEvent.MOUSE_OUT, fl_MouseOutHandler_6);
function fl_MouseOutHandler_6(event:MouseEvent):void
          pic14_mc.alpha = 0.5;
          trace("Moused out");
pic14_mc.addEventListener(MouseEvent.MOUSE_OVER, fl_MouseOverHandler_6);
function fl_MouseOverHandler_6(event:MouseEvent):void
          pic14_mc.alpha = 1.0;
          trace("Moused over");
//Handyman picture
pic1_mc.addEventListener(MouseEvent.MOUSE_OUT, fl_MouseOutHandler_7);
function fl_MouseOutHandler_7(event:MouseEvent):void
          pic1_mc.alpha = 0.5;
          trace("Moused out");
pic1_mc.addEventListener(MouseEvent.MOUSE_OVER, fl_MouseOverHandler_7);
function fl_MouseOverHandler_7(event:MouseEvent):void
          pic1_mc.alpha = 1.0;
          trace("Moused over");
//home btn function
home_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_9);
function fl_ClickToGoToAndStopAtFrame_9(event:MouseEvent):void
          gotoAndStop(1);
// Cleaning Services btn function
pic4_mc.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_6);
function fl_ClickToGoToAndStopAtFrame_6(event:MouseEvent):void
          gotoAndStop(2);
//Garden Maintenance btn function
pic14_mc.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_7);
function fl_ClickToGoToAndStopAtFrame_7(event:MouseEvent):void
          gotoAndStop(3);
//Handyman btn function
pic1_mc.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_8);
function fl_ClickToGoToAndStopAtFrame_8(event:MouseEvent):void
          gotoAndStop(4);
quote_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_10);
function fl_ClickToGoToAndStopAtFrame_10(event:MouseEvent):void
          gotoAndStop(5);
gallery_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_11);
function fl_ClickToGoToAndStopAtFrame_11(event:MouseEvent):void
          gotoAndStop(6);
contact_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_12);
function fl_ClickToGoToAndStopAtFrame_12(event:MouseEvent):void
          gotoAndStop(7);
QUOTE FORM
sendbtn.buttonMode = true;
sendbtn.addEventListener(MouseEvent.CLICK, submit);
resetbtn.buttonMode = true;
resetbtn.addEventListener(MouseEvent.CLICK, reset);
init();
button behaviour
Variables needed
var timer:Timer;
var varLoad:URLLoader = new URLLoader;
var urlRequest:URLRequest = new URLRequest( "mail.php" );
urlRequest.method = URLRequestMethod.POST;
Functions
function init():void{
          //Set all fields to empty
          yourName.text = "";
          fromEmail.text = "";
          yourSubject.text = "";
          YourMsg.text = "";
function submit(e:MouseEvent):void{
          //Check to see if any of the fields are empty
          if( yourName.text == "" || fromEmail.text == "" ||
        yourSubject.text == "" || YourMsg.text == "" )
        valid.text = "All fields need to be filled.";
          //Check if you're using a valid email address
          else if( !checkEmail(fromEmail.text) )
        valid.text = "Enter a valid email address";
           else
        valid.text = "Sending over the internet...";
        var emailData:String = "name=" + yourName.text
                       + "&from=" + fromEmail.text
                       + "&subject=" + yourSubject.text
                       + "&msg=" + YourMsg.text;
        var urlVars:URLVariables = new URLVariables(emailData);
        urlVars.dataFormat = URLLoaderDataFormat.TEXT;
        urlRequest.data = urlVars;
                    varLoad.load( urlRequest );
                    varLoad.addEventListener(Event.COMPLETE, thankYou );
function reset(e:MouseEvent):void{
          init(); //call the initial clear function
function checkEmail(s:String):Boolean
          //This tests for correct email address
   var p:RegExp = /(\w|[_.\-])+@((\w|-)+\.)+\w{2,4}+/;
          var r:Object = p.exec(s);
          if( r == null )
                    return false;
          return true;
function thankYou(e:Event):void
    var loader:URLLoader = URLLoader(e.target);
    var sent = new URLVariables(loader.data).sentStatus;
    if( sent == "yes" )
        valid.text = "Thanks for your email!";
                    timer = new Timer(500);
                    timer.addEventListener(TimerEvent.TIMER, msgSent);
                    timer.start();
    else
        valid.text = "Oh no! Something is wrong! Try again...";
function msgSent(te:TimerEvent):void
          if( timer.currentCount >= 10 )
                    init();
                    timer.removeEventListener(TimerEvent.TIMER, msgSent);
Regards,
Dean

Hi Mocca,
Thank you for your swift reply. I changed the MOUSE_OVER to ROLL_OVER etc... I have tried adding the buttonMode but nothing still happens. There are no errors when I test the .fla regarding the additional script but no hand cursor is seen. I have also tried it without pic4_mc.useHandCursor = true;.... Below is the amended script:
stop();
pic4_mc.buttonMode = true;
pic4_mc.useHandCursor = true;
pic14_mc.buttonMode = true;
pic14_mc.useHandCursor = true;
pic1_mc.buttonMode = true;
pic1_mc.useHandCursor = true;
//Cleaning services pic
pic4_mc.addEventListener(MouseEvent.ROLL_OUT, fl_MouseOutHandler_5);
function fl_MouseOutHandler_5(event:MouseEvent):void
          pic4_mc.alpha = 0.5;
          trace("Moused out");
pic4_mc.addEventListener(MouseEvent.ROLL_OVER, fl_MouseOverHandler_5);
function fl_MouseOverHandler_5(event:MouseEvent):void
          pic4_mc.alpha = 1.0;
          trace("Moused over");
//Garden maintenance pic
pic14_mc.addEventListener(MouseEvent.ROLL_OUT, fl_MouseOutHandler_6);
function fl_MouseOutHandler_6(event:MouseEvent):void
          pic14_mc.alpha = 0.5;
          trace("Moused out");
pic14_mc.addEventListener(MouseEvent.ROLL_OVER, fl_MouseOverHandler_6);
function fl_MouseOverHandler_6(event:MouseEvent):void
          pic14_mc.alpha = 1.0;
          trace("Moused over");
//Handyman picture
pic1_mc.addEventListener(MouseEvent.ROLL_OUT, fl_MouseOutHandler_7);
function fl_MouseOutHandler_7(event:MouseEvent):void
          pic1_mc.alpha = 0.5;
          trace("Moused out");
pic1_mc.addEventListener(MouseEvent.ROLL_OVER, fl_MouseOverHandler_7);
function fl_MouseOverHandler_7(event:MouseEvent):void
          pic1_mc.alpha = 1.0;
          trace("Moused over");
//home btn function
home_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_9);
function fl_ClickToGoToAndStopAtFrame_9(event:MouseEvent):void
          gotoAndStop(1);
// Cleaning Services btn function
pic4_mc.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_6);
function fl_ClickToGoToAndStopAtFrame_6(event:MouseEvent):void
          gotoAndStop(2);
//Garden Maintenance btn function
pic14_mc.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_7);
function fl_ClickToGoToAndStopAtFrame_7(event:MouseEvent):void
          gotoAndStop(3);
//Handyman btn function
pic1_mc.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_8);
function fl_ClickToGoToAndStopAtFrame_8(event:MouseEvent):void
          gotoAndStop(4);
/* Click to Go to Frame and Stop
Clicking on the specified symbol instance moves the playhead to the specified frame in the timeline and stops the movie.
Can be used on the main timeline or on movie clip timelines.
Instructions:
1. Replace the number 5 in the code below with the frame number you would like the playhead to move to when the symbol instance is clicked.
quote_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_10);
function fl_ClickToGoToAndStopAtFrame_10(event:MouseEvent):void
          gotoAndStop(5);
/* Click to Go to Frame and Stop
Clicking on the specified symbol instance moves the playhead to the specified frame in the timeline and stops the movie.
Can be used on the main timeline or on movie clip timelines.
Instructions:
1. Replace the number 5 in the code below with the frame number you would like the playhead to move to when the symbol instance is clicked.
gallery_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_11);
function fl_ClickToGoToAndStopAtFrame_11(event:MouseEvent):void
          gotoAndStop(6);
/* Click to Go to Frame and Stop
Clicking on the specified symbol instance moves the playhead to the specified frame in the timeline and stops the movie.
Can be used on the main timeline or on movie clip timelines.
Instructions:
1. Replace the number 5 in the code below with the frame number you would like the playhead to move to when the symbol instance is clicked.
contact_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_12);
function fl_ClickToGoToAndStopAtFrame_12(event:MouseEvent):void
          gotoAndStop(7);

Similar Messages

  • HT201365 Just dowloaded the new ios 7, and i can't seem to get any apps to download in the app store. It doesn't have the meter bar anymore and all it does is have a Blue circle spin and spin for over 5 or 10 min. without nothing happening! Help !!!

    Just downloaded the new ios 7, and I can't seem to get any apps to download in the app store. It doesn't have the meter bar anymore and all it does is have a blue circle spin and spin for over 5 min. without nothing happening! Help!!!

    Hi,
    This is how App Store app shows now when an app is downloading. If you cannot download anything, go to Settings > iTunes & App Store, remove your Apple ID, and set it again. That should work.
    Hope that helps.

  • Hi, I can't seem to get my ipod 32gb 4th gen to sync with itunes. It's brand new, but everytime I plug it in it says can't access Itunes store and nothing else happens. I enabled my firewall to allow itunes but it still can't access it. Please help.

    Hi, I can't seem to get my ipod 32gb 4th gen to sync with itunes. It's brand new, but everytime I plug it in it says can't access Itunes store and nothing else happens. I enabled my firewall to allow itunes but it still can't access the store. Please help.

    If you look at the feed, and look at the entry 'The end to an exciting field season in Aulavik National Park' you will see the line:
    <pubDateFri, 29 Jul 2011 04:00:00 GMT</pubDate>
    You have not closed the 'pubdate' tag - there should be a '>' as the 9th character. Because the tag has been left open, it invalidates everything which follows it, and thus the entire feed. iTunes therefore cannot read it, which is why the Store has not updated. Add the '>' and republish, and all should be well.
    It's always worth checking your feed by subscribing manually, from the 'Advanced' menu, or by clicking the 'subscribe free' button on the Store page (both do the same thing) - if you can subscribe to the feed it should be OK.

  • I can't seem to get rid of OR use Adobe Reader after I let it into Safari 7.  How do I get to the point where Reader is not my preferred anything, but can still be used if Preview won't open something?

    I can't seem to get rid of OR use Adobe Reader after I let it into Safari 7.  How do I get to the point where Reader is not my preferred anything, but can still be used if Preview won't open something?

    Back up all data before making any changes. Please take each of the following steps until the problem is resolved.
    Step 1
    If Adobe Reader or Acrobat is installed, and the problem is just that you can't print or save PDF's displayed in Safari, you may be able to do so by moving the cursor to the the bottom edge of the page, somewhere near the middle. A black toolbar should appear under the cursor. Click the printer or disk icon.
    Step 2
    There should be a setting in its preferences of the Adobe application such as Display PDF in Browser. I don't use those applications myself, so I can't be more precise. Deselect that setting, if it's selected.
    Step 3
    If you get a message such as ""Adobe Reader blocked for this website," then from the Safari menu bar, select
              Safari ▹ Preferences... ▹ Security
    and check the box marked
              Allow Plug-ins
    Then click
              Manage Website Settings...
    and make any required changes to the security settings for the Adobe PDF plugin.
    Step 4
    Triple-click anywhere in the line of text below on this page to select it, the copy the selected text to the Clipboard by pressing the key combination command-C:
    /Library/Internet Plug-ins
    In the Finder, select
              Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens by pressing command-V, then press return.
    From the folder that opens, move to the Trash any items that have "Adobe" or “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari.
    Step 5
    The "Silverlight" web plugin distributed by Microsoft can interfere with PDF display in Safari, so you may need to remove it, if it's present. The same goes for a plugin called "iGetter," and perhaps others—I don't have a complete list. Don't remove Silverlight if you use the "Netflix" video-streaming service.
    Step 6
    Do as in Step 4 with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari.

  • I'm trying to update my software to iTunes 10.5.2.  I click on the install button, click the Accept button, the software checks for updates, and then I am back at the original download screen.  I can't seem to get past this loop.  Any suggestions?

    I'm trying to update my software to iTunes 10.5.2.  I click on the install button, click the Accept button, the software checks for updates, and then I am back at the original download screen.  I can't seem to get past this loop.  Any suggestions?

    If I go through the setup that you suggested, won't I screw up the existing software on my system?
    No. The iTunes installer will first uninstall the existing version of iTunes and then put in the new one. (That's actually also what happens when you use Apple Software Update to install a new version ... it just doesn't show the uninstall phase like the iTunes64Setup.exe or iTunesSetup.exe does.)

  • I can't seem to get the iTS to update the description of my podcast, nor refresh to show new episodes?

    I recently launched a podcast series (http://itunes.apple.com/ca/podcast/notes-from-northwest-passage/id449063851) but its still showing an older description text with some typos and an incorrect link in it, as I registered it with a pre-edited file so it would be in line for review while I finalized the details, and now I can't seem to get it to refresh and show the new texts at all, even though I edited the description texts in the xml file well over 2-3 weeks ago.
    I've tried redoing this file several times.  It always validates but changes never get picked up by the iTunes store.I can manually subscribe to the feed using iTunes' advanced menu, with no problems. The feed is at:
    http://a4.g.akamai.net/7/4/66750/v1/smb2.download.akamai.com/66750/http/podcasts /archaeology2011/arcticarchaeology2011_eng.xml
    I recently (about 3-4 days ago) tried redirecting the feed to a new version of the xml file stored in a new folder, just to see if that would somehow jolt it back into reading it, but again after 3-4 days it hasn't done anything.
    It's also not showing any of the most recent episodes even though they have all been there about a week, so the store should have picked them up by now, no?
    Any suggestions?

    If you look at the feed, and look at the entry 'The end to an exciting field season in Aulavik National Park' you will see the line:
    <pubDateFri, 29 Jul 2011 04:00:00 GMT</pubDate>
    You have not closed the 'pubdate' tag - there should be a '>' as the 9th character. Because the tag has been left open, it invalidates everything which follows it, and thus the entire feed. iTunes therefore cannot read it, which is why the Store has not updated. Add the '>' and republish, and all should be well.
    It's always worth checking your feed by subscribing manually, from the 'Advanced' menu, or by clicking the 'subscribe free' button on the Store page (both do the same thing) - if you can subscribe to the feed it should be OK.

  • I am using an iPad and iPhone and have exchange as my email. Both will only collect mails when I am in the wifi of the office, and not when I am out and about. I can't seem to get a fix for it.

    I am using an iPad and iPhone and have exchange as my email. Both will only collect mails when I am in the wifi of the office, and not when I am out and about. I can't seem to get a fix for it.

    This - https://support.mozilla.org/en-US/kb/how-make-web-links-open-firefox-default - didn't work?

  • I can't seem to get my iMac (late 2009 model) into automatic sleep mode.  If I manually put it into sleep I don't have any issues.  I used to solve the issue by running "PleaseSleep" application but that doesn't work anymore since Lion.

    I can't seem to get my iMac (late 2009 model) into automatic sleep mode.  If I manually put it into sleep I don't have any issues.
    I used to solve the issue by running "PleaseSleep" application but that doesn't work anymore since Lion. I now want to fix the underlying problem.
    I'm not running any weird background processes and in my energy saver settings I've tagged "put the hard disk to sleep when possible:, "allow power button to put computer to sleep" and "automatically reduce brigthness". All pretty standard.
    Is there anyone who can give me some pointers ?

    Today I solved the same problem for my iMac running Snow Leopard. See https://discussions.apple.com/thread/3008791#15947706. The method may help you, too.
    For me it was the DynDNS Updater preventing my iMac from automatically entering sleep mode.
    To my knowledge the cause of this sleep problem can only be a peripheral device or a process. So I suggest to first unplug all peripherals and test whether that's the cause. If not, I suggest to terminate one process after another and to test automatic entering of sleep mode after each. Start with user processes; continue with system process if necessary.
    At least that's the way I found the offending process. Fortunately, I was able to change the configuration of that process to allow again automatic entering of sleep mode.
    Good luck!

  • HT3500 I have a MacBook Pro and an HP ENVY 110 SERIES All-In-One .  I can't seem to get a network set up or either one to locate or connect to the other one.

    I've spent hours, actually probably days, trying to do this but it's not working. I've had the ENVY since Nov
    and have not been able to print - much less do anything else with it.
    My internet is CLEAR wireless. I use the little USB 4G Mobil Modem. This new HP ENVY is also wireless.
    I know I can't be online and print at the same time unless I get a router.
    I also know that I can go offline and change the network pref  to "airport" so I can print. Meaning I'll have to change
    back and forth but for my uses,  that's ok..at least for right now.
    What I can't seem to get set-up correctly is my own local network.
    I'm pretty sure it's suppose to be done using "Airport".
    Obviously, I'm doing something wrong in establishing my network.
    The printer is listed on my printer preferences and shown as  "offline"  "default". I assume that means the ENVY
    is my default printer.  Great! At least my Pro knows it's suppose to connect to the ENVY once everything's set-up correctly.
    Now, if someone could just tell me exactly, step-by-step what to do to get that done....
    I'd be soooo very happy!
    Thank you!
    Ricki

    Well... no help was found here.. so I abandoned the wireless- ness of my printer.  I bought a
    small 10 port hub because only 2 USB ports really isn't enough with wireless mouse, wireless internet
    and any kind of printer.   I also bought a long USB cable.  I now print--wired since this can be done
    as an alternative to wireless with this printer.   Because I don't want a cable "hanging around"
    when the printer is not in use, I simple disconnect it and reconnect when I want to print.
    It's a temporary solution others may find helpful as well. Apparently there's been a lot of
    confusion and problems getting this printer set up wirelessly with our MacBooks.
    Shame on HP for not helping us out!

  • I have an ipod touch and it is locked and i can't seem to get into it. what can i do to unlock it?

    i have an ipod touch and it is locked and i can't seem to get into it. what can i do to unlock it?

    You have to input your Apple ID in the prompt when it pops up

  • I have powerpoint for Mac on my imac.  I can't seem to get the active text box function to work like it did on my PC.  How can I insert an active textbox into a presentation that will allow me to type while presenting?

    I have powerpoint for Mac on my imac.  I can't seem to get the active text box function to work like it did on my PC.  How can I insert an active textbox into a presentation that will allow me to type while presenting?

    I've gotten a little further on this. The dynamic select is
    working fine. It's the "a href" code that isn't. I'm wondering if
    someone can look at this line and tell me if it's okay to build the
    query string this way. The storeid comes through fine but I'm still
    not getting the employeeid value to pass. Here's line that's not
    working:
    td><a href="registerStoreCust.php?storeid=<?php echo
    $row_storeRS['storeid']; echo "&employeeid="; echo
    $_GET['employeeLM']; ?>">Register
    Customer</a></td>

  • I can't seem to get GB to recognize my Behringer X1222 USB Mixer. It will record, but shouldn't I be able to see and/or select which input channel(s) that I will record from? Can I record more than one channel at a time, and record multi tracks?

    I can't seem to get GarageBand to recognize my Behringer X1222 USB Mixer. It will record, but only on the generic "USB Input, without seeing or letting me select the input channel from the mixer. Can't find any drivers from Behringer. How do I getGB to "see" the mixer? Thanks, I'm a newbie to Macs in genreal, and recording...

    viiram wrote:
    It will record, but only on the generic "USB Input, without seeing or letting me select the input channel from the mixer.
    the x1222 includes a 2 channel audio interface, 2 channels are all you can get from it.
    the most you can do is record to 2 tracks at a time; skim this tute to see how:
    http://www.bulletsandbones.com/GB/Tutorials.html#allaboutrecording2tracks
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • On my ipod touch, i can't seem to get the imessage app.. I have updated my itunes and even restored the ipod to factory settings with the latest update. Maybe the ipod is too old? Help

    On my ipod touch, i can't seem to get the imessage app.. I have updated my itunes and even restored the ipod to factory settings with the latest update. Maybe the ipod is too old? Is that even a thing? Is there another app I can download to have access to my contacts with imessage?

    That comes with iOS 5 (Settings>General>About>Version) and only the 3G abd later iPods can go to iOS 5 or later
    Identifying iPod models

  • HT4623 I can't seem to get my keypad shortcuts to work on my iphone 4 after the ios6 update.  Anyone have a fix for this??  Apple???

    I can't seem to get my keypad shortcuts to work on my iphone 4 after the IOS 6 update.  Anyone have a resolution for this???  Apple???

    Unless Verizon has a special provision in this regard that ATT has never had, Apple handles all iPhone repairs and exchanges under Apple's warranty.
    There is a setting when capturing photos - Automatic, On, or Off for the flash when capturing photos.
    If there is no flash when set to On or Automatic in a dark setting and no change after the standard troubleshooting steps which in order are:
    Power your iPhone off and on.
    An iPhone reset.
    Restoring your iPhone with iTunes from the backup.
    Restoring your iPhone with iTunes as a new iPhone or not from the backup.
    Your iPhone has a hardware problem. You can call AppleCare or make an appointment at an Apple store if there is one nearby.

  • I can't seem to get my iPod touch (4th Gen) to play photo slideshows or videos through my TV.  Is this a design flaw?  Or is it me?  My old iPod used to do it no problem, but now I can't even find any video out options in the settings.

    I can't seem to get my iPod touch (4th Gen) to play photo slideshows or videos through my TV.  Is this a design flaw?  Or is it me?  My old iPod used to do it no problem, but now I can't even find any video out options in the settings.

    This cable And Im using a cable that has a headphone jack on one end and RCA cables on the other. does not work for iPod touches. See:
    http://support.apple.com/kb/HT1454

Maybe you are looking for

  • "Open in external sample editor" seems to be broken?

    Hey all, I'm hoping that someone can help me figure this out. I'm using Logic Pro X 10.0.7 in conjunction with Adobe Audition CS6. This problem seems to happen intermittently, and on some of my machines, but not others. I've also witnessed it on othe

  • Why do I have so much trouble getting keywords entered, especially...

    when selecting multiple photos? Often when the keyword field says "add keywords" and then when I select multiple images the offer disappears and I cannot add words no matter whee I click. Sometimes closing the INFO button at the bottom and reopening

  • CRM RELATED BI REPORTS

    Hi, Please tell what are the standard BI Reports & infosets available for 1.Marketing 2.SALES 3.SERVICE 4.CIC Regards, Natasha P

  • Signal Freezes Only On EDGE, Until I Wake It Up

    I live in a 3G area, but where I work I only get EDGE, so I know, with my phone, this is only an EDGE problem. Periodically through the day my phone will completely lose signal, where I otherwise always have full EDGE signal all day (at my desk at wo

  • FM IDOC_PROCESS_ERROR

    By using this idoc i have to fetch only the "message part".How should i code?