How to make my computer control sync

I want to have iTunes sync with my iPhone controlled by my computer.  In other words, only changes made on my computer are sync'ed.  Changes made on my iPhone would not sync onto my computer.

Playlists are stored in the file iTunes Library.itl. If your backup method includes versions then you restore temporarily a version of the library that includes the playlist, export it as an xml or m3u playlist file, then restore your current database and reimport the playlists. Alternatively you can try option/alt starting iTunes and accessing one of the archived library files in your .../iTunes/Previous iTunes Libraries folder, export the playlist, then switch back to the main library file in the iTunes folder before importing the playlist.
tt2

Similar Messages

  • How to make my computer send all the audio through optical audio cable instead of headphone jack?

    Howdy,
    To listen to online radios or CD's played from my computer, I used to connect the computer to my home entertainment system from the computer's headphone jack to the AUX port on my home entertainment system.
    I now wanted to get better sound and purchased the optical audio cable. However, I don't know how to tell my computer to send the audio signal to the home entertainmeny system through the optical digital cable rather than through the headphone jack. If I just unplug the cable connecting the headphone jack and the AUX port and only have the PC and the system connected with the optical audio cable, I don't hear any sounds. I suspect the computer isn't sending any data through the optical audio port. I'm not able to find how I can adjust the settings on my computer so that from now all sounds are output through the optical audio.
    1) I'd like to do that mainly for my HP desktop (configuration below) and any advice on how to do that would be appreciated.
    2) I also have a HP laptop (configuration below) and was wondering if that would be doable too (even though it doesn't appear to have a audio out, but it has HDMI out - can one convert it to optical audio?
    Thanks in advance!
    My desktop is: 
    ENVY h8xt,
    • Windows 8 64
    • 3rd Generation Intel(R) Core(TM) i7-3770 quad-core processor [3.4GHz, 8MB Shared Cache]
    • 12GB DDR3-1333MHz SDRAM [3 DIMMs]
    • 1TB 7200 rpm SATA hard drive
    • No secondary hard drive
    • 1GB AMD Radeon HD 7570 [DVI, HDMI, DP, VGA adapter]
    • 300W Power supply
    • SuperMulti DVD Burner
    • Wireless-N LAN card (1x1)
    • 15-in-1 memory card reader, 2 USB 2.0 (front), 2 USB 3.0 (top)
    • No Additional Office Software
    • No additional Security Software
    • No TV Tuner
    • Beats Audio (tm) -- integrated studio quality sound
    • HP USB volume control keyboard and mouse with Win 8 keyboard
    • Adobe Premiere Elements & Photoshop Elements 10
    And the laptop:
    HP ENVY 15t Quad    
    • Windows 8.1 64
    • 4th generation Intel(R) Core(TM) i7-4700MQ Processor
    • NVIDIA(R) GeForce(R) GT 740M Graphics with 2048MB of dedicated video memory
    • 15.6-inch diagonal Full HD BrightView LED-backlit Display (1920x1080)
    • 8GB DDR3 System Memory (1 Dimm)
    • 1TB 5400 rpm Hard Drive
    • 24GB flash Hard Drive Acceleration Cache
    • No Additional Office Software
    • Security Software Trial
    • 6-Cell Lithium-Ion Battery
    • No Internal DVD or CD Drive
    • Standard Keyboard
    • HP TrueVision HD Webcam w/ integrated digital mic
    • 802.11 AC WLAN and Bluetooth(R) [2x2]
    This question was solved.
    View Solution.

    Hello @_goma,
    Welcome to the HP Forums, I hope you enjoy your experience! 
    I have read your post on how you are looking to make your computer send all the audio through an optical audio cable instead of the headphone jack, and I would be happy to assist you in this matter!
    To configure your desktop to enable the optical audio cable, I recommend following the steps below:
    Step 1. Click the Windows Key Button on your desktop
    Step 2. Type "Control Panel"
    Step 3. Select "Control Panel" in the top right-hand corner
    Step 4. Select Sound
    Step 5. Under the Playback tab, right-click the white area below the devices available
    Step 6. Select "Show Disabled" and "Show Disconnected Devices"
    Step 7. Connect your Optical Audio Cable
    Step 8. Select your Optical Audio Cable as the default device and click "Enable"
    Since it is not possible to convert the HDMI out to audio out on your notebook computer, it is unfortunate that the notebook is not able to connect with an optical audio cord.
    Please re-post with the results of your troubleshooting, and I look forward to your reply!
    Regards
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

  • How to make my SLIDER control the movement of animations: ( fast & slow)

    hello!
    i wanna do water dropping animations. using a slider, to controlled how fast and slow the animations can be.
    please help me!!!

    I need help about controlling my animations with slider.
    I already know about slider & water dropping animations, but how to make this 2 things interract.
    Right now i have slider and water dropping animations, but when i scroll my slider up and down, my animations still with the same speed.
    In my opinion, i think, i need to make one func/method that take var from slider and transfer it to water dropping var(controlling the speed of anim...).
    eg: (coding)
    //class bla...bla...bla...
    JLabel sliderValue = new JLabel("Value = 25"); // slider var
    JSlider sliders = new JSlider(JSlider.VERTICAL, 0, 50, 25);
    WaterDropPanel drop = new WaterDropPanel(); // waterdropclass
    JButton start = new JButton("Start"); // start anim...
    JButton stop = new JButton("Stop"); // stop anim...
    //waterdrop class...
    class BulatanPanel extends JPanel implements Runnable
    private Thread runner;
    int yPos = -20;
    int yMove = 4;
    void playAnimation()
    if (runner == null);
    runner = new Thread(this);
    runner.start();
    void stopAnimation()
    if (runner != null);
    runner = null;
    public void run()
    Thread thisThread = Thread.currentThread();
    while (runner == thisThread)
    yPos += yMove;
         if (yPos > 310)
         yPos = -20;
    repaint();
    try
    Thread.sleep(10); // var controlling the speed of anim...
         catch (InterruptedException e) {}
    public void paintComponent(Graphics comp) {
    Graphics2D comp2D = (Graphics2D)comp;
    comp2D.setColor(Color.black);
    comp2D.fillRect(0, 0, 250, 240);
         comp2D.setColor(Color.red);
    comp2D.fillOval(110, yPos, 20, 20);
    // slider event handling... ( In my constructor)
    public void stateChanged(ChangeEvent e)
    sliderValue.setText("Value = " + ((JSlider) e.getSource()).getValue());
    I'M SORRY IF ITS TOO LONG

  • How to make a simple control value comparison a user event?

    Hey everyone,
    I am trying (with no luck) to figure out how to make an event out of a simple control comparison without having to put the controls inside a while loop to be polled or in the event structure.
    For example; how do I make an event when 'numerical control 1' equals 'numerical control 2'?
    I know that I could have these inside a while loop with the event structure and then wire the comparison to a boolean, then reference the boolean's value change event.  But rather, I would like to create an event for the comparison without the boolean and outside the while loop such that the loop doesn't have to run through the comparison each time, and doesn't have to poll the controls and bool.
    Thanks for the help

    Attached is a simple user event structure that I was thinking about.  Using this you can decouple the control from the comparison, it just works on valye comparisons.  Since it uses the event structure there is no polling and is very CPU friendly.  I have allowedfor the comparison to be linked to the "Value 1:value change event" and the compare button true event.  I hope this is what you were looking at.  Also since it is a user event which is dynamically registered you can register/unregister it at will durring execution making it a flexable event handler.  It might be alittle buggy because I have spent about 3 minutes developing it (particularry when passing values into the event structure there might be a state issue from the data flow so local variables are a better choice)
    Paul
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA
    Attachments:
    CompareEventvi.vi ‏49 KB

  • How to make a table control header become two rows?

    Hi, all.
    May I know how to make the static header/label rown in table control on screen become two rows?
    As we know, normally a table control's first row is header, and starting from the second row onwards are it's content or data. So, now I would like to make the hedear/label become first two rows.
    Anyone know about it?
    Thanks in advance.

    Hai Lim,
    Kindly search in SDN.
    "You can't actually have two lines but you can create a title which you may be able to align with the headings to achieve what you want. On the table control tick the 'w/title' box. It then forces you to put an element into a line at the top of the table control."
    Regards,
    Harish

  • How to make appear all controls?

    in examples, some controls appears
    how to make these control appear in a new project?
    i'm looking for data i/o controls
    thanks

    Not sure what the problem is...if you see a control in one of the examples that you want in another VI just copy and paste. If you want to make a front panel template just create a VI template (option in the new...dialog) and paste and arrange the controls on the front panel of that...
    If there is code in the example that hides the control and you wonder how to make it appear again just go to the diagram, locate the terminal of the control, right-click on it and select show...
    If the problem is how to make all controls on a panel appear (if e.g. there are 100 controls hidden and you want to un-hide them all)...open a reference to the front panel of the VI, get a reference to all the controls using the get control refs property and then wire the array of references
    to an auto-indexed for-loop where you wire the references to a "visible" property and set the property to true...run it and all the controls will reappear.
    MTO

  • How to authorize different computer to sync iphone and get itunes

    how to authorize a different computer to sync iphone and get purchased itunes

    FIRST, copy the iTunes folder from your old computer to the new one BEFORE YOU RUN ITUNES for the first time. Depending on your computer it will be in the Music or My Music folder. Copy the entire folder, including the iTunes Library file and the iTunes Media (or iTunes Music) folders.
    Install iTunes and Authorize it to the same account as the old computer on the Store menu.
    Connect the iPhone. Set up syncing with desktop apps on the Info tab.
    Sync the iPhone.

  • How to make the common control button for all pages in TABCONTROL​?

    Dear all,
               I'm using TABCONTROL for my application. I'm having STOP and SAVE control. I have to show this button to all pages  in TABCONTROL.. How do i make it?
    Kindly help me?..
    Regards,
    Srinivasan.P
    Solved!
    Go to Solution.

    Hi srinivasan,
    If you want to keep "Save" and "Stop" common, Why do you want to keep them on Tab control? Is your tab control taking entire space on Front panel? If so, you can have SAVE and STOP on other vi, and you can call this vi (MODAL).
    Gaurav k
    CLD Certified !!!!!
    Do not forget to Mark solution and to give Kudo if problem is solved.

  • How to make a computer invisible in  network?

    I was amazed that in the left-hand panel of FINDER, under the SHARED tab, there are about 6 other computers that I am seeing. I am concerned that others may be able to access my computer via my wireless connection. How can I make sure I am protected, and my computer is invisible to them?

    Go to System Preferences > Sharing > uncheck everything in the left window. If you're not sharing anything you won't show up.
    Regards

  • How to make a computer remember it's authorized?

    Every time my mom tries to play or sync a purchased song, it prompts her to log in, then pops up with an "authorization successful (1 of 5)" window.
    My computer (different than my mom's), though, just remembers that it's authorized and doesn't make me log in every time I use a purchased song (or even every time I purchase one).
    My mom is tired of having to log in all the time. Can anyone tell me where the "remember me" setting is that my mom is missing? There's not a check box on the login prompt window, and I can't seem to figure out where it is.

    Try the steps in this article
    http://docs.info.apple.com/article.html?artnum=306424

  • How to Make a Table control Field Editable but input disabled

    Hi All,
        I got a requirement that in table control one column should be in edit mode (i.e. input enabled) but user should not be able to type anything in that field or column rather he can select the value from F4 help (or pick list) associated with that field or column. How to do this ? Please dont say make sceeen-input = 0 for that field.
    Experts please help me out...........
    Thankx in Advance
    Rizwan Ahmad Siddiqui

    Hi,
    I suggest you to go for a drop down instead of a search help.
    Regards,
    Charumathi.B

  • Help... how to make self-paint control

    Dear All.
    I really hope can find some helps from here as I'm a beginner in Java.
    I'm making a project , in a dialog which must contains some self-paint controls. Just like a sheet contains some cards located in from column to row. e.g 4 column, 2 row of cards.
    It must able to select, to change the text, to change color etc..
    I have no idea how to do. Could anyone give me some hints and example? what control should I extends for?
    Many thanks for help..

    I have to make a dialog, that allow user to order the cards.
    e.g. I will have 4 col x 2row cards.
    each card shows a string and some data.
    when user select the card, the background color or this card will be highlighed. etc.
    user also able to re-arrange the card order , rotation etc...

  • How do you authorize computer to sync previous purchases to another ipad

    Im trying to sync a few things from my itunes to my sons ipad.  It is telling me that I cant download until I authorize the computer. How do I do that

    If the computer's running Mac OS X, move the cursor to the very top of the computer's screen, click on Store, and choose Authorize this Computer.
    If the computer's running Windows, press the Alt and S keys and choose Authorize this Computer, or click here, follow the instructions, click on Store in the menu bar, and choose Authorize this Computer.
    (106736)

  • How to unlink one computer from Sync, if i unlink will i lost sync data related to that computer

    Hi
    I am formatting one of my computer, which i have used to sync with other, if i uninstall Firefox in one computer , will i loose data in another computer which is already synced?

    Disable Firefox Sync on a lost phone or tablet
    *https://support.mozilla.org/en-US/kb/disable-firefox-sync-lost-phone-or-tablet

  • How to make a custom control or dial rotate properly

    I am trying to make a custom dial by replacing the needle with a picture of a human leg. However, when I try importing the picture into the Customize mode the leg rotates, but it is always pointing up-down. I want to make it so the toes of the leg move to each tick mark and knee is at the pivot point. How can I change this? Thanks!

    What LV does now it does rather well.
    Over the years I have only heard a cry for this feature a handful of times so it appears the demand for this feature is quite limited.
    NI put their resource where it will do the most good. If the was an out cry for this feature (That I want by the way) Ni would concider it.
    I had a detailed discusion with R&D over this issue. I do not remembe the detaitls so I don't think I will reveal any secrets but here goes...
    Most graphics in LV are represented using a method that deals with them as a rectangle with a top left and bottom right corner. the Needles etc are special little critters that use anoth represntation that goes back to features originally exposed for old MACs. AS long as the image used to rreplace the needle is of the proper type LV can rotate it. Example is the "Arrow" decorations. THese are in the propber form and can be used to replace the needle.
    I explored what it would take to expose the ability to create those special widget myself end with R&D walking away shaking thier heads and I got the impression I should not hold my breath.
    So that is waht I know about the "why" behind why we are limited in rotating images.
    But as mentioned above there are multiple work-arounds available so use one of those and if you really want the rotating image stuff, submit a suggestion.
    Your brother in wire,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

Maybe you are looking for