How to switch in between each libraries?

I really need help for this. I can't seem to find my old library anywhere, and I have new songs and apps to put inside my iPod touch. Please, help.
Message was edited by: RunyingC

It's not working!
Firstly, I don't know why when I open iTunes, they tell me to create a new library. So as a new user of iTunes, I click Okay. And then, when I see a completely empty library, I knew something was wrong. Then I asked my cousin about it, she tell me don't sync anything if not everything will be gone from my iPod Touch. And now I have difficulty in finding my old library.

Similar Messages

  • I have just owned a macbook pro and trying to learn things since i have all along used windows laptop. My first question is : when there are two files i am working together, one above the other on screen, how you switch over between the two with key ?

    I have just owned a macbook pro and trying to learn things since i have all along used windows laptop. My first question is : when there are two files i am working together, one above the other on screen, how you switch over between the two with key ?

    Hi...
    Mac OS X keyboard shortcuts
    Control-F4
    Move focus to the active (or next) window
    Shift-Control-F4
    Move focus to the previously active window
    By the way...  since you are new to Mac, click a clear space on your Desktop. You should see "Finder" top left corner of the screen in the menu bar.
    Click Help then click Help Center
    As an example type in    keyboard shortcuts
    You can use the Help menu for almost any application on your Mac.
    Apple - Find Out How - Mac Basics
    For held switching from PC to Mac >  Apple - Support - Switch 101

  • How to delete spaces between each characters of a string in a file

    In my program, I have a string, for example: str='abcdefg', when I print the string in command window, there is no space, everything is Ok But when I use the following method to write the string in a file(Mystring.txt):
    File file= new File("C:\\MyString.txt");
    fos = new FileOutputStream(file);
    dos=new DataOutputStream(fos);
    dos.writeChars(str);
    when I open the file, between each character , there is a space, like "a b c d e f g", how to solve this problem? any idea or method?

    The spaces appear because you are using a DataOutputStream.
    In fact, a DataOutputStream uses a specific way to encode primitive types. Moreover, data written through a DataOutputStream are supposed to be read back using a DataInputStream.
    You should better use a FileWriter (or an OutputStreamWriter) instead.

  • I have english and arabic key board, how to switch in between the 2 in writing e

    Hi, I have English and Arabic letters keyboard, how to switch between the 2 in writing

    can you see a flag on the top right corner if you click on that you can switch between the keyboards you have installed on your system

  • How do I change between iPhoto Libraries when I am importing pics to another website?

    When I import pics to my website I click on Import photos and the standard apple screen (Firefox Edit  in menu bar) comes up so I click on Pictures, then iPhoto, then Events and choose the individual photos, but  only the one library shows there.  I do know how to change between the libraries when opening the iphoto library by using the options tab, but that does not work in this instance?
    ilife 11, OSX 10.6.8.

    Correct - that is not how you access your photos
    You use the media browser in the lower left hand corner of the upload window under media ==> photos ==> iPhoto
    See this user tip for complete details on accessing your photos correctly
    LN

  • How to switch progamatically between line and symbol plot ?

    I am trying to switch between symbol and line plot (XY-graph) programatically. (I know jow to do it on the front panel.) I thought I could do it through property nodes, but there is no PlotType property node, only PointType, LineType, and LineWidth. If I set LineWidth and LineStyle to zero I get a continous line connecting my symbols. If I set LineWidth to zero and LineStyle to 1, althoug, the Legend shows only symbols I get a dashed line connecting the symbols. Also, is somewhere a desciption what the LineType and PointType codes mean?
    Thanks,
    George

    When you right click on a plot legend and select 'Common Plots', there are several plot properties that get changed. There is no single property to change between the different option. I would recomend that you place a property node on you block diagram and select Plot.Point Style, Plot.Line Style,Plot.Line Width, Plot.Plot Interpolation, and Plot.Plot Fill To and create indicators for each. Then manually change the Common PLots setting and take note of the diffferences. There is help for each of the properties and the help will refer you to the front panel menu options. For example, the help for Point Sytle says that the values are 0-16 as shown on the menu from top-left to bottom-right.

  • How to switch quickly between the native soundcard and USB speakers?

    My computer has two sound devices: one, the native sound card (which I use for my headphones), and an external pair of USB speakers. However, switching between them is a complicated task, mainly because I find almost no programs to do it:
    * GNOME Control Center, Sound section: What currently works for me, but can only be used within GNOME Shell or Cinnamon. It can be used from other sessions, though (for example Spectrwm), but it's very heavyweight to have the whole GNOME desktop solely to switch between sound cards.
    * KMix: Works only within KDE and nowhere else. What's more, to actually do the switch one must open the program, go to the options menu and select the soundcard (unlike GNOME, which is two clicks away from the status bar).
    * Pavucontrol: Kind of works, but only in a per-application basis. That is, I can't tell the system to start all current and future sound streams in X device. What's worse, I must wait until the application is open to actually do the switch.
    * XFCE4 Mixer: Doesn't work from outside XFCE. Even there, switching cards is not possible without literally editing a configuration file each time.
    * Alsamixer and GNOME Alsamixer: Can't switch sound cards at all.
    So, I'm still on the search of a lightweight program that can allow me to do something as simple as switching between my USB speakers and native headphones without much hassle. Is there anything else besides GNOME that can do the trick?

    The script I use with pulse.
    #/bin/bash
    # paswitch 2011-02-02 by Ng Oon-Ee <[email protected]>
    # I can't remember where I found this script, can't locate the original author.
    # Please inform me if you know, so that I can give proper attribution.
    # CHANGES: Added auto-move all inputs to new default sound card.
    # WAS: Pulse Audio Sound Card Switcher v1.0 2010-01-13
    # Switches between soundcards when run. All streams are moved to the new default sound-card.
    # $totalsc: Number of sound cards available
    totalsc=$(pacmd "list-sinks" | grep index: | wc -l) # total of sound cards: $totalsc
    if [ $totalsc -le 1 ]; then # Check whether there are actually multiple cards available
    notify-send -u critical -t 5000 "Nothing to switch, system only has one sound card."
    exit
    fi
    # $scindex: The Pulseaudio index of the current default sound card
    scindex=$(pacmd list-sinks | awk '$1 == "*" && $2 == "index:" {print $3}')
    # $cards: A list of card Pulseaudio indexes
    cards=$(pacmd list-sinks | sed 's|*||' | awk '$1 == "index:" {print $2}')
    PICKNEXTCARD=1 # Is true when the previous card is default
    count=0 # count of number of iterations
    for CARD in $cards; do
    if [ $PICKNEXTCARD == 1 ]; then
    # $nextsc: The pulseaudio index of the next sound card (to be switched to)
    nextsc=$CARD
    PICKNEXTCARD=0
    # $nextind: The numerical index (1 to totalsc) of the next card
    nextind=$count
    fi
    if [ $CARD == $scindex ]; then # Choose the next card as default
    PICKNEXTCARD=1
    fi
    count=$((count+1))
    done
    pacmd "set-default-sink $nextsc" # switch default sound card to next
    # $inputs: A list of currently playing inputs
    inputs=$(pacmd list-sink-inputs | awk '$1 == "index:" {print $2}')
    for INPUT in $inputs; do # Move all current inputs to the new default sound card
    pacmd move-sink-input $INPUT $nextsc
    done
    # $nextscdec: The device.description of the new default sound card
    # NOTE: This is the most likely thing to break in future, the awk lines may need playing around with
    nextscdesc=$(pacmd list-sinks | awk '$1 == "device.description" {print substr($0,5+length($1 $2))}' \
    | sed 's|"||g' | awk -F"," 'NR==v1{print$0}' v1=$((nextind+1)))
    #notify-send "Default sound-card changed to $nextscdesc"
    dbus-send --session --type=method_call --reply-timeout=10000 \
    --dest=org.freedesktop.Notifications /org/freedesktop/Notifications \
    org.freedesktop.Notifications.Notify string:"paswitch" uint32:1 \
    string:$icon_name string:"Default sound card is now" string:"$nextscdesc" \
    array:string:"" dict:string:string:"","" int32:3000
    exit
    # Below text was from original author and remains unaltered
    # CC BY - creative commons
    # Thanks God for help :) and guys lhunath, geirha, Tramp and others from irc #bash on freenode.net

  • How to Share music between two libraries / Apple ID's?

    So my boyfriend and I have moved in together and will soon be utilizing the same computer. I have an Apple ID and music library, he has an Apple ID and music library. I would like to create a separate login to the computer so we can still keep our separate ID's / libraries for syncing purposes (making sure we each have our own Calendars, Contacts, Photos, etc...) but would like to Share music with one another and be able to add it to our iPhone's without having to buy or download it twice.
    A couple of things below
    What's the easiest way to transfer all of my current information to his computer? External hard drive?
    What's the easiest way to share music and / or apps while keeping individual Apple ID's?
    Will the Home Sharing option work here?
    OR, will we have to create a new Apple ID, transfer our information to that new ID, and create two separate libraries off of that?
    Any and all advice is appreciated. Trying to make this as easy and painless as possible

    Thanks so much identd! So with that first option, we won't have to double download the music correct? I just want to make sure it's not taking up too much space on our computer either. It will always be updated b/c the iTunes library folder's will be public now correct?

  • How do applicaitons communicate between each other

    I am doing research for a term paper on ERPs, and am currently studying the architecture of Oracle E-business suite.
    I have understood that there is an Application server, which is made up of one or more Tablespace(s) that contain the data from some or all of the applications. In a way, it can be look at like a wheel with the server being the hub or center while each application is a spoke of that wheel.
    Yet, I have been told that an application like General ledger only pulls information from certain applications. While an application like Accounts Receivable pushes and pull form/to multiple applications. Logically, I think that either multiple Tablespaces are used and certain applications can pull form one or more specific Tablespaces, or applications can only pull certain information from a Tablespace.
    So, my question in the end is; how do the applications actually communicate if data is entered into an application and if it is edited? Thank you very much in advance.

    Also, you seem to have one or two basic terms and concepts mxied up. For example, Tablespace is a storage management unit, of Oracle rdbms, really unimportant when talking tables or how applications pull information. The hub and spokes concept sounds like OAI, which is an integration component of eBS/Applications.

  • How to switch quickly between Pages documents?

    Is there a way to switch quickly, back and forth, between open Pages documents. Similar to the "tabs" function in Safari.

    fruhulda wrote:
    I which the help files were adapted for swedish keyboard when in swedish!!
    We can't get that because the User Guides are translated by beings which never used the application.
    They receive an English text and they must translate it in an other language.
    I'm accustomed to that for years and I would be surprised if something changes in this area.
    As far as I know, nobody in Apple France saw the localized iWork '09 before the day it was introduced.
    I was asked to search oddities *_after the delivery_*
    Some oddities available in iWork '08 French version are always here in iWork '09 and I'm not sure that they will be gone when we will get the next version.
    It was the same for AppleWorks which I beta tested two times.
    Tests where made upon the US version and all of us discovered the localized versions when they where delivered. In the Help, every examples of formulas where using the comma as parameters separators when the correct one was the semi-colon.
    For sure, it's ridiculous but it's the way foreign customers are treated by Apple.
    I'm remembering that I edited a resource dedicated to samples of functions.
    With the edited resource, Swiss users where able to use the "insert functions" feature with the separator matching their system settings.
    The problem is the same with iWork.
    The delivered French version inserts functions with semi-colons between parameters, even is the user setting is "Swiss French" which use the decimal period and require the comma as separator.
    Same behavior with Deutsch and Italian.
    But not is completely bad.
    I never succeed when I requested correct treatment of "curly quotes" in AppleWorks.
    For info, the correct structure is *_« caractères chevrons »_* (the first space and the last one are required, at least for French of France).
    I started to request them when I start using iWork '06.
    They wheren't introduced by the different updaters but, hosannah, they are available in iWork '08.
    In fact, we got only the quotes, not the required spaces.
    So I requested again the spaces.
    They wheren't introduced by the different updaters but, hosannah, they are available in iWork '09.
    I remember that I wrote to Apple that I was surprised to see that their staff of engineers appeared to be less efficient than the single developer which was delivering Bean.
    Yvan KOENIG (VALLAURIS, France) vendredi 14 janvier 2011 18:47:14

  • How to switch playlists between users?

    Okay, this will involve some background information. There are two iPod nanos, one is mine, one is my mom's. I recently lost mine (sob), but I am now going to use my mom's. Considering we both have different iTunes on our different user accounts, how do I get all of my songs onto her iPod?

    try importing them from your mom's account if you can access your account from hers. if you can just burn the songs to a cd and then return to your mom's account and from the cd import it
    good luck!

  • HOW TO SWITCH FILES BETWEEN USER ACCOUNTS

    I'm the administator on my computer and want to switch some stuff - from Itunes and Iphoto mainly - to standard accounts set up for other users, namely my sons. When I try to drag stuff into their folders, they are marked with a Red No Entry sign and I get a message telling me that I dont have enough privilages. I've tried the Shared folder, but although I can drag stuff, it cant be opened via the user accounts: there is the same No Entry sign and message. Can someone tell me what I am doing wrong.

    I'm the administator on my computer and want to
    switch some stuff - from Itunes and Iphoto mainly -
    to standard accounts set up for other users, namely
    my sons. When I try to drag stuff into their folders,
    they are marked with a Red No Entry sign and I get a
    message telling me that I dont have enough
    privilages. I've tried the Shared folder, but
    although I can drag stuff, it cant be opened via the
    user accounts: there is the same No Entry sign and
    message. Can someone tell me what I am doing wrong.
    Hi. I've never had any trouble dropping things in the other user's Public Folder > Drop box. That one should be available to you.
    Hope this helps.

  • Switching between multiple libraries

    So heres the deal. I have a 30G Video and my father has a 30G Video also. He likes his music the way it is and I do too. I have heard that you can create multiple libraries so you dont have to create different Login names (windows, we both share one computer.) So the thing is, how do you switch between those libraries? I tried just opening the library but all that does is add my library to the current one.
    How can I swith between multiple libraries with ease and without messing any of the music in them up.

    I downloaded a program that allows me to use it, thanks

  • How to switch between primary and secondary langua...

    Hi guys,
    I've got an e52 but the only way to type in sec. Language while writing a message is:
    Option-> Input Options-> writing language-> primary writing language (which must be changed to new one)
    so there is no use of second. lang. or at least I don't know how to switch quickly between primary and second language without going that path.
    ANY HELP WOULD BE APPRECIATE.
    Aram

    HI Everyone,
    not sure if this helps. My solution is more fo Singpore users.
    As i text between English and Chinese, I was unable to set my Secondary language to Chinese as there is no option to do so in the Writing language menu.
    By discovery, i first set my Primay language as Chinese. Then further down the Language menu there is this option Default input. Click on that and select the default using Text case and select Ok.
    When writing sms, you can switch between this 2 languages using the # key.
    Hope it helps.
    Have a pleasant day.
    Aram_ocp wrote:
    Hi guys,
    I've got an e52 but the only way to type in sec. Language while writing a message is:
    Option-> Input Options-> writing language-> primary writing language (which must be changed to new one)
    so there is no use of second. lang. or at least I don't know how to switch quickly between primary and second language without going that path.
    ANY HELP WOULD BE APPRECIATE.
    Aram

  • Toggle between multiple libraries

    How do I toggle between multiple libraries or when I turn on itunes how do I select the library that I want? Have done this before but it was quite some time ago and have forgotten.

    Press the Shift key when launching iTunes.
    (51367)

Maybe you are looking for

  • Video cards.

    Forum, I read the standard video card installed in a Mac Pro is an ATI Radeon 2600 XT 256 RAM. Is this card powerful enough to ensure satisfactory performance with Final Cut Studio 2? Thanks, Michael.

  • Audigy platinium 4 pro and M-audio 2496

    is it possible to have these cards working in the same computer having one for listening music and the other for recordings(guitar and voice...the m-audio have two diferent channel) can you show me how? does it need a special configuration? best rega

  • Help converting a raw image to JPG at 300dpi

    Please help I have always used PS to edit my raw images. I am now using elements. I noticed that when I converted all my DNG files to JPS it saved them at 240 dpi is there anyway to change them?

  • Ad-hoc for iPod touch

    i set up an Ad-hoc connection for my iPod touch, and its connected but there's no internet connection. i enabled the Internet sharing.

  • My Mac Mini will charge - but not sync with - USB-connected devices (ipod, camera, memory card reader). How do I fix it?

    My Mac Mini will charge - but not sync with - USB-connected devices (ipod, camera, memory card reader). I have tried unplugging the devices, restarting the computer, selectively unplugging and plugging in the devices, closing and opening the relevant