How do i create a favourites website list (i'm new to mac)

I have used a PC for the last 8 years and am new to mac.
How do I create a favourites list of websites I commomnly visit?

If you are using Safari next to the address bar you will see a + symbol, click that and follow the prompts. Another method is the keyboard shortcut of Command + D and finally using your mouse click the Bookmarks menu, Add Bookmark...
Because you're new to Macs I'd strongly recommend you bookmark and study the following site. Bookmarking these will be good practice too!
Switch 101
Mac 101
Find Out How Video tutorials

Similar Messages

  • How do I create a toolbar in Cocoa? (Im new to Mac OS X development)

    How do I add a toolbar to an app in Cocoa. Iam new to Cocoa, but am familiar with C#. Please include step by step directions.

    How do I add a toolbar to an app in Cocoa. Iam new to
    Cocoa, but am familiar with C#. Please include step
    by step directions.
    Hi Mateusz,
    You should find the following links useful. I'm learning toolbars at the moment and the ADC was my first place to look.
    Sample Code:
    http://developer.apple.com/samplecode/ToolbarSample/index.html#//apple_ref/doc/u id/DTS10000413
    Apple PDF:
    http://developer.apple.com/documentation/Cocoa/Conceptual/Toolbars/Toolbars.pdf
    Hope this helps.
    PowerMac G5 1.6Ghz   Mac OS X (10.4.6)   4 gig RAM & NVidia 6800 Ultra

  • How to create a revolving website list, like this...

    Hi there, Im new to flash, but the main reason I got it was so I could create an object to put on a webpage. I want to be able to create a revolving website list, with pictures of the sites in the list, like on the main page of this site:  http://www.tamberlow.com/
    Please can somebody help me? Or point me in the right direction
    Thanks for your time,
    Jackie xxx

    that's a (not very well-done) carousel.  you can search for:  flash <your actionscript version> carousel.
    most are horizontal but it's not much different to make one like the site you referenced.

  • How do I create a group contact list for emails?

    I can open an new email contact for a single person, but how do I create a group contact list?

    http://kb.mozillazine.org/Thunderbird_:_FAQs_:_Create_Mailing_List
    In Address Book, File/New/Mailing List, name the list and close it, then add contacts to the list by dragging them from an address book and dropping onto the list icon in the directory (left) pane.

  • I need to know how I will create a dynamic website using php and mysql

    I need to know how will I create a dynamic website using php and mysql that people could have the abilities of registering in the website, and modify their profile where they can add their pictures and everything. apart from that, they should have the ability to search about other member. hope to here more from you.

    If you are a right-brained creative, and have no previous experience or propensity to be able to understand coding and database "stuff", and/or if your time can be better spent on other skills, I recommend you save your sanity and hire a developer... or at least the first time around. I have been attempting to grasp this for years... and have a library of marked up books to prove my efforts, all while trying to keep up with an ongoing client base that is always cramped. It's a wonder I still have my sanity... then again, I might not be the best person to determine that. Others might question it.
    That said, I still plan to master php... one of these days.

  • One laptop died.  I have a new laptop now.  How can I get my Ipod song list on the new laptop without downloading each c.d.?

    My first laptop died.  I have a new laptop now.  How can I get my Ipod song list on the new laptop without downloading each c.d.?

    See this older post from another forum member Zevoneer covering the different ways to copy content from your iPod to your PC.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • How do I create a drop down list to e-mail a form for signature.

    The desired workflow is for
    1)      Firefighter 1 to complete the top portion of the Agreement
    section, sign in the Firefighter 1 signature field (which locks the top
    portion of the Agreement Section), then select Firefighter 2 from the
    e-mail drop down list and e-mail the PDF form to Firefighter 2;
    2)      Firefighter 2 opens the e-mail and the PDF attachment,
    completes the second portion of the Agreement Section, sign in the
    Firefighter 2 signature field (which locks the bottom portion of the
    Agreement Section), select Lieutenant 1 from the e-mail drop down list
    and e-mail the PDF form to Lieutenant 1;
    3)      Lieutenant 1 opens the e-mail and the PDF attachment, checks
    the approved box, signs the Lieutenant 1 signature field, select
    Lieutenant 2 from the e-mail drop down list and e-mail the PDF form to
    Lieutenant 2;
    4)      Step three continues through Lieutenant 2, Battalion Chief 1
    and Battalion Chief 2
    5)      Battalion Chief 2 sends the fully completed form back to
    Firefighter 1 who copies the completed form to Firefighter 2
    Note: if any of the officers disapprove the agreement the disapproved
    form is immediately sent back to Firefighter 1

    katiesandell wrote:
    how can i create a drop down menu so that when i click on the arrow in the cell i can select from the menu that appears
    Hi Katie,
    Welcome to Apple Discussions and the Numbers '09 forum.
    Numbers vocabulary for this feature is a "Pop-up Menu". It's available as a Cell Format, and is set and edited in the Cell Format Inspector.
    See "Using a Checkbox, Slider, Stepper, or Pop-Up Menu in Table Cells" starting on page 96 of the Numbers '09 User Guide.
    This guide, and the equally useful iWork Formulas and Functions User Guide are available for download through the Help menu in Numbers.
    Regards,
    Barry

  • How can I create an IList Employee list based on my Employee class?

    I'm trying to create an IList<Employee> list based on my Employee class (below).  But this is erroring out.  Is my employee class missing anything?  How could I make this work?
    private void EmployeeList()
    IList<Employee> arL = new IList<Employee>(); //<<<<----errors out here
    arL.Add(new Employee {Name="Mary",Gender="Female", Age=35});
    arL.Add(new Employee { Name = "Bob", Gender = "Male", Age = 40 });
    arL.Add(new Employee { Name = "Tom", Gender = "Male", Age = 50 });
    var qm = from Employee employee in arL
    where employee.Age < 50
    select employee;
    foreach (var m in arL)
    Console.WriteLine(m.ToString());
    class Employee
    private string name;
    private string gender;
    private int age;
    public string Name
    get { return name; }
    set { name = value; }
    public string Gender
    get { return gender; }
    set { gender = value; }
    public int Age
    get {return age;}
    set {age = value;}
    Rich P

    IList is an interface, not a class. This means that it can't be instantiated (can't be "newed").
    List is a class, so it can be instantiated. It implements the IList interface, which means that it must provide the functionality specified in that interface.
    That's what an interface is - a definition of functionality that a class must provide. An interface is often described as a contract that a class must fulfill.
    So in the code in your last post, you are saying that arL is an instance of some class that implements the IList interface, and you are then setting it to an instance of the class List. The List class implements the IList interface, so this assignment is
    legit. It would also be legit to use any other class that implements IList, such as an array.
    Any class that implements IList can have as much extra functionality as whoever wrote it likes, as long as it implements at least the functionality of the interface.
    Sometimes you will come across a method in a library over which you have no control and which returns IList rather than list. In such a case you will be forced to do something like...
    IList list = SomeMethodOrOther();
    So you will have no idea what class list is an instance of, but you will know that it has the functionality of IList. This is about the only circumstance where I would recommend defining a variable as IList rather than List (but it probably won't be long
    before there are some replies to this post that disagree).

  • How does one create a GROUP mailing list from an e-mail message ? ?

    I am having no end of frustration trying to figure out - using the latest versions of Apple Mail and Apple Address book in side-by-side windows, t he following:
    How to select; then 'drag & drop' a list of email addresses from an incoming email message I am reading, so that I can create in my own address book a duplicate "Group" list bearing all the addresses that got the message.
    I am sure I have been able in the past to use simple drag-n-drop technique between the mail window and the newly created "Group" window in Address Book, but it won't work this time .
    Is there a script or a third party app somewhere that will lift addresses out of the "TO" and "c.c." fields in an Apple Mail message and import them into a designated (new) 'Group' list in Address Book.
    Or is there a way to create a CSV file from an email message - if that will do the trick ?

    Mailscript's Add Addresses script should open a window with all the addresses in the email listed. You can select the ones you want to import, you can choose the group or create a new one, and you can pick the label for the email address. It will stay open so that you can add different emails to different groups.
    Your description doesn't sound anything like Mail Scripts.

  • How do i create a group contact list inorder to send out emails to multiple persons?

    how do i create a contact list for emailing from my iphone4?

    I have created a free iphone application to send group emails, as you cannot do it natively.
    http://itunes.apple.com/fr/app/easy-group/id461469079?mt=8
    Rémi
    Note: I may receive some form of compensation, financial or otherwise,from my recommendation or link.

  • How do I create a Group email list from my contacts??

    I can't figure out how to create a Group email list from my contacts on my iPhone??

    I thought that was how I did it before ( a year ago ) but the group is created in my Email software but the group won't synch to my phone?! However it will synch randomly - i.e. singular new emails synch from my phone to my computer, but I am not noticing the computer transferring data to my phone...same with calendar...hmmm, maybe that's the problem - issue synching anything entered into my computer first...anyone hear of this? It seems that this started about a month ago, I had to restore my phone and it would not restore with the most recent backup, so I had to go back a couple of back ups... since it has been glitchy! HELP!

  • How do I create group email mailing lists?

    How do I create a group email mailing list?

    Open Contacts - its in the Applications folder.
    In the menu bar click File, and select New Group. In the left column of Contacts there will be a new item called untitled group. (You can change the name.)
    Next click All Contacts on the left, and drag and drop the names you want in the new group.
    To send an email to the group you start a new message and type the group name in the To: field.

  • I can't find how to put in my favourite websites like I did in internet explorer

    on internet explorer there is a drop down menu in which I can add my favourite websites. I can't find where I can do this on firefox.

    There 5 ways to save a new Bookmark in Firefox: <br />
    1. {Ctrl + D} <br />
    2. Right-click and select Bookmark this Page. <br />
    3. Bookmarks > Bookmark this Page <br />
    4. Double-click the Star that is on the right side of the Location bar. <br />
    4a. (A single-click on the Star will save the new Bookmark to the Unsorted Bookmarks folder.) <br />
    5. Left-click and drag the website image ''(Favicon)'' in the URL bar (or on the active tab) into the Sidebar view of Bookmarks {Ctrl + B} <br />
    '''or''' to the Bookmarks menu bar item ''(the drop-down will open)'' and then onto the drop-down listing of your bookmarks and folder of bookmarks ''(folders will open)''<br />
    '''or''' onto the Bookmarks Toolbar - the new bookmark will be saved when you release the left mouse button

  • How do you create a customized step list?

    I am creating a workbook for some exercises and I want to use a formatted, numbered step list so students can check off the step as they complete it. It might look something like this:
    __ 1. some instructions
    __ 2. more instructions
    __ 3. even more instructions
    The numbering would obviously continue from the previous number.
    How do I create such bullet/number option?
    Thanks

    You can certainly get the underscore as a leading bullet:
    +Inspector > Text (T) > List > Bullets and Numbering > Text Bullet > Type the underscore _ character however many times you want into the bullet field > click away in the page+
    Select the sample of the text and open the Styles drawer:
    +Menu > View > Show Styles Drawer+ or click on the reversed ¶ in the blue dot on the toolbar at the top of the window.
    Select any *List Styles* name and:
    +Right mouse click > Create new List Style from Selection… > Give it a descriptive name+
    This will create:
    __ some instructions
    but without the numbering, which will need to be added manually. To add numbering I think will need some deeper editing of code or xml within the Pages app itself.
    I tried combining the numbered list with a leader tab of underscores but one removes the other.
    Peter

  • How can I Create a multilevel bulleted list in RH HTML 7?

    Hi!
    I'm trying to create a multilevel bulleted list in RH 7 (HTML) but keep messing it up. I can change the bullets and use some from the gallery, but when I indent to create a second level, bullets are the same. If I change bullets style, I change the whole set up. Do I have to manually create a bulleted sublevel amd apply it manually everytime?
    By looking at the available menu in the Styles window, nothing seems to guide me towars automatically creating different levels. Am I missing something?
    Thanks for your help.

    EDIT
    Oh, dopey me! Peter just reminded me, offline, that this feature wasn't even in RH 7. Duhhh...guess I just blew by that little qualifier.
    So, the revised answer is: you couldn't in RH 7, and you still can't in RH 8.
    That feature is not working properly. Please submit a bug report to Adobe; the more they hear from us the better.
    Good luck,
    Leon

Maybe you are looking for

  • Follow up to HD crash - Install disk can't see new Hard Drive !!!

    I may have a bigger problem on my hands. I rebooted with my original install disk of OS X and when it gets to the "choose location" window, it does not see the new hard drive......???? I'm thinking about re-checking connections and/or possibly pull t

  • Error while trying to retrieve string from STDIN

    Hello, I want to read a string from input I use this code but getting compilation error: String s = System.in.readLine(); Error is: symbol : method readLine () location: class java.io.InputStream String s=System.in.readLine(); ^ 1 error what's going

  • Acrobat 8.0 Professional - program closes spontaneously

    Recently upgraded a PC to xp sp2 and installed Acrobat 8.0 professional. When opening the program it opens for about a minute then closes. No error, don't even have to open a file....it acts like it is timing out. I have ran the repair, uninstalled a

  • Freeing up HD problems

    I am freeing up space on my HD on my iMac, and as I delete folders instead of getting more free space the other catagory is taking it.

  • File Size Discrepancy

    I hope somebody can help me! I have a Quicktime self-contained movie which in the "Get Info" option says that it's 2.26 GB, but in the Quicktime "Show Movie Info" option it says it's data size is 55MB. Why the discrepancy? Power Mac G5 Dual 2.3 GHz