How do I set my Gmail beside the tab ?

I want to set my frequently used site to the left side of the tabs, how do I do that ?

there is currently no support for syncing your google contacts or google calendar, unless you port them though iCal or Address Book which you can now do in Leopards latest update. You could try that, you should find the option for the address book in its preferences and the calendar under accounts.

Similar Messages

  • How do I set up gmail in the ipad Air mail application?

    I follow the steps to the point where I "Add account".  Then i select Google.  I then enter my email address and password and the iPad verifies the info that I have entered.  Then I have to save the settings and the "Adding account".  The little rotating "hourglass" comes up next to "Adding account" and thats as far as it gets.  It is like a freeze. I left it overnight and it is still adding the account?  Please help!!

    No you don't have to add a phone number to the iPad. You should receive his messages on your iPad by  using your Apple ID email address as the address at which you can be reached for Messages.
    Did you set up Messages on your iPad correctly?
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/

  • How do I set a reminder for the last day of every month

    Have I missed something? But how do you set a reminder for the last day of every month to recurr indefinatley in iOS6? Sorry if this is really simple but I just can't seem to work it out. Any help gratefully received.

    Hey Mattye88 not sure if you have seen but actully you can do this, but for some reason you have to use Siri.  If you bring up Siri and say "set a reminder ever 4 weeks from next wednesday to check the gas meter" it will set one and it will work just fine, I have reminders to water a Bonsai every three days and it works fine it just shows as custom repeat on the user interface.  Alas it seems you can not use Siri to set one for the end of the month though which is why I am in this threed.  Still hope it helps you to know how to sort this problem atleast.

  • How do I set a variable on the main timeline from within a symbol?

    Just getting started with Animate and coming to it from Flash, as may be apparent from my question. How do you set a variable to the main timeline from within a symbol?
    I have 24 pairs of clickable elements, each in their own symbols, and all 24 of those symbols sit inside another symbol. I want all 24 to be able to set the same global variable when clicked. I can't find that this question is addressed anywhere, which makes me think I may be stuck in a Flash mindset and approaching the task in the wrong way. (There are however MANY discussions of how to address objects at different levels in the hierarchy. That's well covered.)
    Relatedly, how do you access a function on the main timeline from within a symbol?
    Adobe should consider putting together a support page (or pages) just for folks migrating form Flash. In the materials I've encountered so far there seems to be a studied effort to refrain from mentioning Flash in any way. I imagine there are a lot of people out there like me who have a deep background in Flash coding, but are just getting started with Animate. We don't need help with most of the basic concepts, but we may still have some pretty basic questions about how to accomplish some things in Animate because our Flash knowledge is getting in the way.

    Hi Bill,
    There are plenty of threads on here about scope, but here's one way to create a global variable:
    // code on Stage.compositionReady
    sym.myGlobalVar = 1;
    Then, anywhere in your project, you can check/set that var like so:
    sym.getComposition().getStage().myGlobalVar = 2;
    And here's one way to create a global function:
    // code on Stage.compositionReady
    sym.myGlobalFunction = function(){
              console.log('myGlobalFunction');
    Then, anywhere in your project, you can call that function like so:
    sym.getComposition().getStage().myGlobalFunction();

  • HT1454 How do I set TV out on the ipod touch with the latest software

    How do I set TV our on the ipod touch with the latest software

    Hi
    I got same problem. After upgrading to iOS5.1.1 I cannot see tv via the ipod dock. The Screen of the ipod is telling me that it's connected to a tv, but the tv shows nothing. It was working before the upgrade.
    Please help.
    Regards.

  • How do I set up and use the TV tuner for an ENVY 23 TouchSmart​?

    How do I set up and use the TV tuner for an ENVY 23 TouchSmart?

    Hello LindaLamb:
    First thing is connect your coex TV Anti cable to your computer the end connector looks like a bolt. Then open up Windows Media Center go down the list to live tv and follow and fill in your information with wizard . If your computer doesn't have an built in TV Tunner then you will need to purchase an USB TV tunner. http://www.bing.com/shopping/search?q=usb+tv+tunne​r&qpvt=usb+tv+tunner&FORM=HURE . frrw

  • How do I set safari to be the default rss reader on windows XP

    How do I set safari to be the default rss reader on windows XP?

    Looks like I got it to work by selecting a document and setting in get info.  For some reason it was not working before.
    never mind

  • How do I set Preview to be the PDF defult reader?

    How do I set Preview to be the PDF defult reader?

    Thanks T P I got this from your search:  http://osxdaily.com/2011/10/31/set-default-pdf-viewer-mac-os-x/
    for others here is the answer.
    If you’ve downloaded Adobe Acrobat on the Mac you’ve probably discovered that it takes overPreview as the default PDF viewer in OS X, which is annoying because Acrobat is slow to load and a fairly bloated application. There’s little need to use Acrobat Reader as the way to view PDF files, so here’s how to change it back to Preview.
    Change the Default PDF Viewer in Mac OS X
    From the Mac OS X desktop, find a PDF file and hit Command+i to “Get Info” on the file
    Click on the arrow next to “Open with:” to expand and access the default application list
    Click the pull-down menu and choose “Preview” from the list, or if it’s not visible, navigate to it by choosing “Other”
    With Preview.app selected, click on the “Change All” button
    This will restore the leaner and very capable Preview app as the default PDF viewer in OS X and prevent the lengthy launch of Acrobat anytime a PDF is opened. This tip will be of less use if you need the full functioned Acrobat version, but for the average person just looking to quickly open pdf docs this can be a significant time saver.
    If you want a quick PDF file to use for this tip, you can grab the Apple history book “The Macintosh Way” for free (direct PDF link).

  • How do you set a image in the background of a JTextfield?

    How do you set a image in the background of a JTextfield? Any ideas?

    You can't thats why it is called textfield!!!
    Take a look at JScrollPane API for this

  • How do you set an image into the background of a JPanel or JFrame?

    How do you set an image into the background of a JPanel or JFrame?

    Something like this, Ive thrown in an ImageIcon on a
    button too for good measure.
    import java.awt.*;
    import javax.swing.*;
    public class JFrameImage extends JFrame {
    public JFrameImage() {
    Container c    = getContentPane();
    JPanel panel = new JPanel(){
                 public void paintComponent(Graphics g)     {
    ImageIcon img = new
    = new ImageIcon("background.jpg");
                      g.drawImage(img.getImage(), 0, 0, null);
                      super.paintComponent(g);
            panel.setOpaque(false);
    ImageIcon icon = new ImageIcon("onButton.jpg");
    JButton button = new JButton(icon);
    panel.add(button);
    c.add(panel);
    public static void main(String[] args) {
    JFrameImage frame = new JFrameImage();
    frame.setSize(200,200);
    frame.setVisible(true);
    Going totally fancy pants
    ImageIcon bigImage = new ImageIcon(bgImage.getImage().getScaledInstance(getWidth(), getHeight(),Image.SCALE_REPLICATE));
    g.drawImage(bigImage.getImage(), 0, 0, this); Will scale the image to the size of the panel
    whereas
    for (int y = 0; y  < getHeight(); y = y + image.getHeight(null))
    for (int x = 0; x< getWidth(); x = x + image.getWidth(null))
    g.drawImage(image, x, y, this); Will give a tiled effect
    Try tiling with an animated gif and bring your processor to a standstill.

  • How do I set a limit to the number of registrants to an event form?

    How do I set a limit to the number of registrants filling out an event form?

    PLEASE add this feature. as far as I can tell there are no option out there that serve this need. FormAssembly, EmailMeForm, or FormsCentral. Think of how many customers would use this. Imagine a t-shirt company that pre-prints inventory, wouldn't they want to limit how many forms could be submitted that want a size L shirt? My business is participant based, like the evnt question above we need to limit the number of participants. Of course I could program my own solution, but then I would miss out on all the other cool FormsCentral features. Any chance this could be added right away if I sponsored it as a custom development?

  • For the ipod on my phone, each song has a different volume. How do you set it so all the songs have the same volume?

    For the ipod on my phone, each song has a different volume. How do you set it so all the songs have the same volume?

    Copy everything from your old computer, or your backup copy of your old computer, to your new one.

  • How do you set up iCloud on the iPod touch if it says too many apple accounts have been signed onto the device

    How do you set up iCloud on the iPod touch if it says too many apple accounts have been signed onto the device.

    Welcome to the Apple community.
    Unfortunately you will need to create your Apple ID (account) on another mobile device or a Mac computer. Once three iCloud accounts have been created on an iOS device, it doesn't matter what you do to that device, no further accounts can be created on it.

  • HT2513 How do you set up reminders if the New Reminders tab is not located under file?

    How do you set up reminders if the New Reminders tab is not located under file? This is a iCal question.

    You set up reminders in the Reminders app.

  • How do you set a default on the Mac that automatically starts a sentence with a capital letter after a full stop? Thanks guys....

    How do you set a default on the Mac that automatically starts a sentence with a capital letter after a full stop? Thanks guys....

    I use SpellCatcher.  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 

Maybe you are looking for

  • Vector Replacement in Java 1.4 - Is Thread Safety Needed In This Scenario?

    I have a Java 1.4 application that queries Database # 1, and builds custom strings used to create records that are inserted into Database # 2. Right now Vectors are used as a container to temporarily hold query output from Database # 1 while building

  • 0ic_c03 cube compression

    Hello gurus, I want to compress the stock cube (0IC_C03) for the performance issues. Can you please confirm the process? I'm not sure about steps 3 and 4. 1- Delete the data in the cube 2- Start Delta Dtp from Ods to Cube 3- After the Dtp execution c

  • Lenovo G400-0670 BSOD Cause by atikmpag.s​ys

    anyone can solve my issue ? when im trying playing FIFA 2014 i got BSOD after then my laptop restart and continues BSOD im trying to uninstall video driver from safe mode but it can not please help i cant use my laptop OS : Win 7 32bit

  • I am always getting the message ' could not complete due to program error" Why does this happen

    I am always getting the message ' could not complete due to program error" Why does this happen

  • Itunes error authority installing

    when I replied yes to install the latest version of Itunes on my windows PC the install got an error trying to activate service programs? The error stated I don't have the authority to install.  I am the administrator on my computer? This only happen