6700 Slide - Hide the shortcuts on the main screen

Good Morning,
I just bought a Nokia 6700 Slide (S60) and I would like to hide the shortcut bar showed on the botom of the main screen.
Could you please explain me how remove this shortcut bar ?
Thanks in advance
Regards,

Go to Menu\Settings\Settings\Personalisation\Standby mode. Then in 'Standby Theme' you should see an option marked 'Basic'. Pick that one.
Good luck!

Similar Messages

  • After updating to ios5 the shortcut 'tapping top of screen' to scroll back to top does not work! Is there a way to get that back?

    Since updating my ipad2 to iOS 5 the shortcut 'tap top of screen to quickly scroll back to top' no longer functions! How can I get this back?

    It still works on my iPad - is it working on any of your apps e.g. Safari, Mail, Notes, and are you touching right at the top of the screen (I've seen a few other posts implying that the area of the screen that you need to touch isn't quite as deep as it used to be) ? Have you tried a reset to see if it works after the iPad has restarted ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Ever since I updated my Macbook Pro, the shortcuts on the F1-F12 keys no longer work as they did before.

    Ever since I updated my Macbook Pro, the shortcuts on the F1-F12 keys no longer work. I used to press just the F12 key and I would be able to raise the volume, now it switches to the home page. I want the old shortcuts back and I don't know how to do that. Please help.

    Ever since I updated my Macbook Pro
    updated from what to what?
    Suggest you try a NVRAM / PRAM reset, as described by Apple:
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.

  • I want to write a script or Automator workflow/app that emails a random shortcut of the day to three recipients. The source is from an Excel spreadsheet. One column is the shortcut, and the second column is the definition. Anyone have experience?

    I want to write a script or Automator workflow/app that automatically emails a random shortcut of the day to three recipients. The source is from an Excel spreadsheet. One column is the shortcut, and the second column is the definition. Anyone have similar experience and know that this would work?

    I have had a first stab at the script, below.  It uses a file to store the shortcuts and command [descriptions].  You should be able to see from the script annotations how to add a new one.  (I populated 1-4 with real data, but got lazy after that, so you have a few placeholders to work with first.
    As I have noted, once you are happy that you have all the data in the file, you can comment out part of the script for ongoing use.  (BTW, my reluctance to use Excel is that I don't currently have it installed and I don't want to offer wrong advice.  If you have Numbers, I do have that and could probably modify to work with a spreadsheet from there.  This might be especially useful if you have the data already sitting in Excel.)
    A few things came-up whilist I was writing the script:
    1.     Currently, all recipients will not only get the same tip at the same time, but they will see the names and email addresses of the others who receive them.  It is possible to modify this.
    2.     I have added a property gRandomCheck which keeps track of which shortcut has already been used (since the last time the script was compiled.  This will prevent the same tip being sent more than once.    When all tips have been sent once, the script will alert you and not send anything until reset.  It does not check on a per-addressee basis (which would be a refinement).  (If you add a new addressee at this stage, the whole process will start again, and you may not really want this to be the behaviour.)
    3.     The way that I have built the list, commandList, is deliberately cumbersome - it's for the sake of clarity.  If you prefer, you can construct the whole list as {{shortcut:"X", command:"X"}, {shortcut:"Y", command:"Y"}}
    Have a look - I am sure you will have questions!
    SCRIPT STARTS HERE  Paste the following lines (thru the end) into a new AppleScript Editor document and press RUN
    --The property gRandomCheck persists between runs and is used to stop sending the same hint twice.
    property gRandomCheck : {}
    --I am defining a file on the desktop.  It doesn't have to be in this location
    set theFolder to path to desktop
    set commandFile to (theFolder as text) & "CommandFile.csv"
    --(* Unless you need to change the file contents you do not need to write to it each time.  Remove the "--" on this line and before the asterisk about 18 lines below
    --Follow this format and enter as many records as you like on a new line - each with a unique name
    set record1 to {shortcut:"Z", command:"Undo"}
    set record2 to {shortcut:"R", command:"Record"}
    set record3 to {shortcut:"⇧R", command:"Record Toggle"}
    set record4 to {shortcut:"⌘.", command:"Discard Recording & Return to Last Play Position"}
    set record5 to {shortcut:"X", command:"x"}
    set record6 to {shortcut:"X", command:"x"}
    set record7 to {shortcut:"X", command:"x"}
    set record8 to {shortcut:"X", command:"x"}
    set record9 to {shortcut:"X", command:"x"}
    set record10 to {shortcut:"X", command:"x"}
    set record11 to {shortcut:"X", command:"x"}
    set record12 to {shortcut:"X", command:"x"}
    set record13 to {shortcut:"X", command:"x"}
    --Make sure you add the record name before randomCheck:
    set commandList to {record1, record2, record3, record4, record5, record6, record7, record8, record9, record10, record11, record12, record13}
    --This part writes the above records to the file each time.
    set fileRef to open for access commandFile with write permission
    set eof of fileRef to 0
    write commandList to fileRef starting at eof as list
    close access fileRef
    --remove "--" here to stop writing (see above)*)
    --This reads from the file
    set fileRef to open for access commandFile with write permission
    set commandList to read fileRef as list
    close access fileRef
    --Here's where the random record is chosen
    set selected to 0
    if (count of gRandomCheck) is not (count of commandList) then
              repeat
                        set selected to (random number from 1 to (count of commandList))
                        if selected is not in gRandomCheck then
                                  set gRandomCheck to gRandomCheck & selected
                                  exit repeat
                        end if
              end repeat
    else
              display dialog "You have sent all shortcuts to all recipients once.  Recompile to reset"
              return
    end if
    --This is setting-up the format of the mail contents
    set messageText to ("Shortcut: " & shortcut of record selected of commandList & return & "Command: " & command of record selected of commandList)
    tell application "Mail"
      --When you're ready to use, you probably will not want Mail popping to the front, so add "--" before activate
      activate
      --You can change the subject of the message here.  You can also set visible:true to visible:false when you are happy all is working OK
              set theMessage to (make new outgoing message with properties {visible:true, subject:"Today's Logic Pro Shortcut", content:messageText})
              tell theMessage
      --You can add new recipients here.  Just add a new line.  Modify the names and addresses here to real ones
                        make new to recipient with properties {name:"Fred Smith", address:"[email protected]"}
                        make new to recipient with properties {name:"John Smith", address:"[email protected]"}
      --When you are ready to start sending, remove the dashes before "send" below
      --send
              end tell
    end tell

  • The shortcuts at the bottom of my emails on my iPhone 4 (to reply, forward, delete, etc) have disappeared. How do I restore these buttons/shortcuts?

    the shortcuts at the bottom of my emails on my iPhone 4 (to reply, forward, delete, etc) have disappeared. How do I restore these buttons/shortcuts?
    I have looked in the iPhone 4 Userguide with no mention of these settings or how to adjust/ replace lost shortcuts.
    Thanks
    Rob

    Hi rracker,
    If you are having issues with the buttons in Mail, you may want to force Mail to close, then relaunch. If that does not resolve the issue, you may need to restart/reset your iPhone. You may find the following articles helpful:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Regards,
    - Brenden

  • My ipad has lost the Settings icon on main screen?? how do i get it back

    My ipad has lost the settings icon on main screen?? how do i get it back? or reset the ipad

    Swipe from screen to screen to look for it. It cannot be deleted from the iPad.
    You can reset the the home screen layout but that returns the home screen to the original out of the box set up - but it will restore the icon to the home screen.
    Settings>General>Reset>Reset Home Screen Layout.

  • I've lost all the shortcuts on the main screen.....helppppp

    hi, i hope someone can help me..i was looking through my new phone menus and i may have deleted something of importance by mistake as i now don't have any shortcuts on the main screen and i also can not find any of the apps on the phone. the screen just stays the same. i can turn the phone off and on, i have taken the batt out and re-started the phone but get the same.......could anybody help me as i am stuck and need hhhhhhhellpppppp..........please

    Hi and Welcome to the Forums!
    Do you have any idea at all what you did? The choices, from your post, are quite large (not quite infinite...but pretty large)...
    A couple of guesses though:
    Homescreen > BBKey > Show All -- in case you have hidden them
    Homescreen > BBKey > Options > Theme Defaults -- reset everything to defaults
    Homescreen > Options > Theme -- Change back to Precision Zen (the default) in case you've activated a Theme that is hiding everything else
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Can't get itunes.  I get the following message when I click on either the shortcut or the program.  It says ITunes has stopped working and I can either check on line for a solution and close the program or just close the program.

    When I click on the itunes shortcut or the program  I get the following message:
    ITunes has stopped working.  My two options are:  Windows can check on line for a solution to the problem or close the program. 
    It seems that my entire library is not there.  If I sync my ipod will it add it back into my library on the computer? 
    I've even tried installing again and nothing works.  Tried the "repair" and it says that ITunes is loaded but I stil get the above error when I try to open the program.
    Thanks

    Let's try the following user tip with that one:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

  • HT201181 hi, in apple MacBook Air 11.6" what is the shortcut key for print screen

    hi, in apple MacBook Air 11.6" what is the shortcut key for print screen

    To capture the entire screen to an image, use the key combination ⌘ shift 3.
    To capture a selection rectangle, ⌘ shift 4.
    To capture the frontmost window, ⌘ shift 4 and then press the space bar.
    The screen grab will appear on your Desktop. Open it in Preview or your favourite image editing software, and print in the usual manner.

  • How do I chose the shortcut for the normal Eyedropper tool in October 2014 edition?

    In the all my previous versions I chose a personal shortcut Cmd+i to access quickly the Eyedropper Tool which I use a lot to edit my text, and copy styles quickly. With the new Colour Theme Tool this is not possible any more since Cmd+i is used to toggle between the normal Eyedropper Tool and the new Colour Theme Tool. If one goes to change the settings in the Keyboard Shortcuts the Eyedropper Tool is not there anymore. So I cannot chose my preferred shortcut Cmd+i in default and especially in the Text Context to be able to copy text attributes from style to style in InDesign. Only for this I would not have upgraded to the October 2014 CC version, and I wish I knew a way to go back, because I would. I don't see a use for the new Colour Theme Tool and Cmd+i keeps bringing this up and not the good old Eyedropper Tool.

    Thanks for the tip!
    I use the Eyedropper Tool within text boxes exactly as you do, cmd+i shortcut and all.
    The proposed workaround kinda works, but if I inadvertently hit the "i" shortcut twice, or if I use the Color Theme Tool, I have to remember to re-toggle it before continuing my normal workflow.
    This currently happens often enough that I find the Color Theme Tool to be more of an annoyance than anything else...
    Most tools have distinct shortcuts for each variation.
    Like the "Type Tool + Type on a Path Tool" combo, or the "Rectangle Tool + Elipse Tool".
    When you hit "M" on your keyboard, you know you'll be able to make a square box – no matter if you already had the tool selected of not.
    I would have preferred – and expected – that type of behaviour for the Color Theme Tool.
    Anyway, I won't downgrade just for that, I like new toys way too much!

  • HP 15-r020na Core i3 15.6 Inch 8GB 1TB Touch Laptop-None of the shortcuts on the keyboard work

    My laptops shortcuts on the keyboard do not work,  such as the volume and brightness, ive tried them all while holding Fn down but nothing changes.
    please help
    thank you x

    Hello @charlie27 ,
    Welcome to the HP Forums!
    Thank you for the information about the keyboard! I'll see what I can do to help
    First, make sure the basic troubleshooting is done by trying these steps: Notebook Keyboard Troubleshooting (Windows 8)
    Also, I think it would be a good idea to take apart the keyboard, or some of it, to determine if the keys are obstructed somehow. Some information on the supported method of cleaning the keyboard is mentioned in this document: Cleaning your Notebook PC
    If this does not resolve the issue, I would reinstall Windows on the computer. The issue at this point would be software related, to some unknown extent. A recovery will address any software issue. First, make sure you backup everything you need to. Here is some information on how to do this: Backing Up Your Files
    Once this is done, it is safe to reinstall the computer. Here is some additional information on how to do this properly: Performing an HP System Recovery
    Please let me know if you have any other questions. Thanks and have a great day!
    Mario
    I worked on behalf of HP.

  • How Can I Cahnge The Shortcuts Of The Function Keys (F1.. F12)

    Hi,
    (Sorry I don't speak English well.)
    Recently, I've changed my keyboard and I've change my hard drive. The new keyboard has a different function Keys shortcuts, for example F11 doesn't decrease volume it makes the web page fullscreen. I don't know if the change was because of the new hard drive or because of the new keyboard. I need to change all of them to make them do the same function of the key symbol.
    The other thing is this key ] when I press on it, it makes Caps lock be ON, and if I press on it again, it makes Caps lock be OF. I want it to be like this ] when I press on it.
    Hope you understood me and thank you for your help.
    May

    I'm not precisely sure about the situation with the ']' key. It sounds as if perhaps the keyboard doesn't match the language or region of the system. Without knowing more, the first place to go would be the Keyboard tab in the Keyboard preferences pane.
    There are buttons there to set the type of keyboard connected, and also check the settings of the modifier keys, including 'Caps Lock', 'Shift', 'Command', and 'Option'.
    As far as setting keyboard shortcuts for 'F' keys, if you go to the *Keyboard Shortcuts* tab in the Keyboard preference pane and click on the categories in the left column, you should be able to see current settings, and define new ones if necessary.
       !http://img228.imageshack.us/img228/5186/scottdartve1.png!

  • I have deleted the shortcut to the safe mode of firefox 4.0 edition in the start menu, how can i get it back? thank you

    The OS is Windows7 Ultimate 6.1.7601(SP1).

    Start Firefox in Safe Mode, then drag the URL onto the Windows 7 Start button.
    To start in Safe Mode, click Help | Restart with Add-ons disabled.

  • Nokia 5310 shortcut / toolbar on main screen

    Help! I somehow deleted the great function of having the shortcut toolbar on the main screen, how do I get this back?
    Solved!
    Go to Solution.

    hi, I have a trouble re-activating this option. I de-activated it, but when i tried to re-activate it the menu brings me back to Settings. Can anyone tell me if this is a phone's error or I have to do it from somewhere else? Thanks! ='(

  • Firefox cannot be found inside the Program Files (x86) when using the shortcut or the actual .exe. I also tried using Regedit.exe and firefox was not there. How do I fix this?

    After I get the error message "Windows cannot find C:\Program Files (x86)\Mozilla Firefox\firefox.exe'. Make sure you typed the name correctly, and then try again." I proceeded to use the Regedit solution but the file was not inside the Image File Executable Options folder. The only file inside of there was iexplorer.exe.

    #Go to [http://www.mozilla.com/en-US/firefox/fx/?ref=logo Download Firefox 4.0.1] and download the installation file to your desktop. You can use Safari to do that, but don't choose to run it.<br><br>
    #Then go to Add/Remove Programs, scroll down to "Mozilla Firefox" and remove it, choosing to keep your bookmarks, customizations etc., (''don't checkmark the box''). If you don't see it anywhere, then it's not installed.<br><br>
    #Assuming it is though, reboot and delete the folder called "Mozilla Firefox" at this location: C:\Program Files\Mozilla Firefox<br><br>
    #Finally run the installation file you downloaded to the desktop earlier.<br>
    Your bookmarks, customizations etc., are maintained in a different location and will become available to you again once you complete the installation.<br><br>

Maybe you are looking for

  • How to create a batch job in IW41

    Dear all, I would like to create a print program batch job on the following scenario with the use of RSNAST00. We have created an output type in which when it is triggered by backflush (i.e. GI-261) via IW41 transaction, a PO will be created automati

  • My 13" black macbook keeps having hard drive failures -- I'm on my third hard drive

    The first one lasted 2 years. It failed within the special warranty period that Apple offered because so many computers like mine were also having hard drive failures. I didn't know about the special warranty they were offering, even after contacting

  • After updating to 15.0.1 Firefox opened from C:\Program Files (x86)\Mozilla Firefox\updated\firefox.exe

    After updating to 15.0.1 this afternoon on a Win 7 64-bit machine, I restarted Firefox. Immediately Comod started showing warnings that firefox.exe was not a recognized program and was asking to access plug-in container, SVC host, and other things. W

  • Whats wrong with .mac an iWeb 08?

    hi, i try to publish my small website i made in iweb 08 to my .mac-account. each kin d of publishing works, the "publish in a folder", "publish all to .mac" and so on. but if i choose the the option "visit the site" after the publishing, i get an err

  • EoMPLS CE configuration basic question

    My company is going to switch to MPLS as our WAN service provider. It is pure L2 technology according to the provider and the handoff will be Giga fiber Ethernet. But I don’t need transport VTP, CDP and STP between sites. So I don’t think that there