Can we let Macpro Firewire out the 3rd display?

My mac pro has only 1 graphcis card and its connected to 2 display monitor. I also have a firewire video output that I can choose output the video via firewire in Logic Pro. I don't know if we can just let mac pro output the video via firewire in all time , not in a specific software.

FireWire video requires special software. It cannot be used as a normal display for OSX windows.

Similar Messages

  • How can you get the filter off if you can't remember the password? It's"pro con" and it wont even let me check out the rates for aflight.

    How can you get the filter off if you can't remember the password? It's"pro con" and it wont even let me check out the rates for aflight.

    You can check the file prefs.js in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] and remove the line(s) related to that extension (procon.password).

  • HT201441 Thank you for help but I can't remember my Email can I actevate it with out the apple ID pleas help me

    Thank you for help but I can't remember my Email can I actevate it with out the apple ID pleas help me

    Welcome to the Apple Community.
    Sorry but without your previous Apple ID and password you cannot unlock your device.

  • Can you please help me out the Info Cubes info for Budget Execution?????

    Hi,
       Can you please help me out the Info Cubes info for Budget Execution and Cash Management.
    Thanks in advance,
    Andy

    Take the memory card out of the camer and put it in a card reader.  When it mounts on the desktop select it and try to change the name.  However, that might make it incompatible with the camera.  You'll just have to try and see.
    OT

  • ¿Can be a better resolution in the external display?

    I recently buy a new LCD ViewSonic 22" full HD (its declared to support 1920X1080) and Im very happy with my acquisition. Now I can work in a large screen with Page and Final Cut Pro but still I feel it can be a better resolution in the bigger display the same as in the little 13" in my MBP 7.1 Indeed the display resolution it's 1080p in the LCD and 1280X800 in the little screen. I would like to ask if I did the right settings and if not what can I do? If it is possible of course.
    Thanks in advance
    Josef Carel

    No worries man .. your concern is known as pixel width or pixels per square inch..
    you do the maths by multiplying horizontal inches with vertical inches of your display
    that's your display area in square inches ..
    and then you multiply 1920 x 1080 ..
    that's your total number of pixels
    when you divide the area to the number of pixels you get pixels per inc
    and the higher the value the smaller each individual pixel therefore harder for your eye to spot them resulting in smoother display ..
    That's why I've advised you the 22 inch display in the first place and I'm sure now you appreciate the advice more

  • I can't seem to Print out the Object I made in this Map. Any ideas?

    Well here's my problem I'm trying to print out the Key's and Value's associated in the following MutliMap.
    The code formating seems to screw up < and >. My datastructure is a Multi Map, the Key is a String Object and
    the Value associated with that String Key is an ArrayList of an object of type Message I defined below.
    Map<String,List<Message>> = new HashMap<String,List<Message>>();
    Here's my code for where I try to Print everything (in the function print() ) .
    The Print just either prints out the KEY and no value, if I take out my ((Message)value) cast, it will print the Message class, like
    43343@Message because I'm assuming its wondering how to Print something that is an object I defined.
    Thats why I defined my own print function and I also override the toString() function but both don't work it seems.
    package parser;
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.io.*;
    //this class should store all the Messages or "Events" and
    //you can access them based on their Serial key.
    public class MessageDB
         //database to hold the information
         //     holds the Alerts/messages
         Map<String, List<Message>> AlertMap;
         //Constructor
         MessageDB()
              AlertMap = new HashMap<String, List<Message>>();
         //print, outputs the contents of the hashMap
         public void print()
            //want to print out the Key and all the Messages
              //associated with that key
              Set keys = AlertMap.keySet();          // The set of keys in the map.
              Iterator keyIter = keys.iterator();
              System.out.println("The map contains the following associations:");
              while (keyIter.hasNext()) {
                    Object key = keyIter.next();  // Get the next key.
                    Object value = AlertMap.get(key);  // Get the value for that key.
                    System.out.println( "Serial (key): " + key + "\n");
                    System.out.println("value: " + ((Message)value).toString() + "\n");
                    //((Message)value).print();
         //overloaded print to print to user screen.
         public  void print(PrintWriter out)
              //want to print out the Key and all the Messages
              //associated with that key
              Set keys = AlertMap.keySet();          // The set of keys in the map.
              Iterator keyIter = keys.iterator();
              out.println("The map contains the following associations:");
              out.flush();
              while (keyIter.hasNext()) {
                    Object key = keyIter.next();  // Get the next key.
                    Object value = AlertMap.get(key);  // Get the value for that key.
                   //out.flush();
                   /* out.println( "   (" + key + "," + value + ")" );
                   out.flush();*/
                   // out.println("------------------\n");
                   out.println("EntityID: " + key + "\n"
                                 + "Message: " + value + "\n");
                   //out.println("------------------\n");
                   out.flush();
         void add(Message msg)
              //getting the position of the List by EntityID if avaiable
              List<Message> AlertList = AlertMap.get(msg.Serial);
              //checking to see if there is a unique Key already in the Map.
              if (AlertList == null)
                   //if there isnt a key in the map, add a new key, and a new List mapping
                   //to the key EntityID;
                     AlertList = new ArrayList<Message>();
                     AlertMap.put(msg.Serial, AlertList);
                     AlertList.add(msg);
              else
              //adding message to List
                   AlertList.add(msg);
    }Here's my message class:
    package parser;
    //this class will hold the Event/Message
    import java.util.List;
    import java.util.HashMap;
    import java.util.Map;
    import java.util.ArrayList;
    import java.util.Set;
    import java.util.Iterator;
    public class Message {
         String Identifer;
         String Serial;
         String Node;
         String NodeAlias;
         String Manager;
         String Agent;
         String AlertGroup;
         String AlertKey;
         String Severity;
         String Summary;
         String StateChange;
         String FirstOccurance;
         String LastOccurance;
         String InternalLast;
         String EventId;
         String LocalNodeAlias;
         Message()
               Identifer = "";
               Serial = "";
               Node = "";
               NodeAlias = "";
               Manager = "";
               Agent = "";
               AlertGroup = "";
               AlertKey = "";
               Severity = "";
               Summary = "";
               StateChange = "";
               FirstOccurance = "";
               LastOccurance = "";
               InternalLast = "";
               EventId = "";
               LocalNodeAlias = "";
         void print()
              System.out.println("Identifer: " + this.Identifer + '\n'
                        + "Serial: " + this.Serial + '\n'
                        + "Node: " + this.Node + '\n'
                        + "NodeAlias: " + this.NodeAlias + '\n'
                        + "Manager: "  + this.Manager + '\n'
                        + "Agent: " + this.Agent + '\n'
                        + "AlertGroup: " + this.AlertGroup + '\n'
                        + "AlertKey: " + this.AlertKey + '\n'
                        + "Severity: " + this.Severity + '\n'
                        + "Summary: " + this.Summary + '\n'
                        + "StateChange: " + this.StateChange + '\n'
                        + "FirstOccurance: " + this.FirstOccurance + '\n'
                        + "LastOccurance: " +      this.LastOccurance + '\n'
                        + "InternalLast: " + this.InternalLast + '\n'
                        + "EventId: " + this.EventId + '\n'
                        + "LocalNodeAlias: " + this.LocalNodeAlias + '\n');
         public String toString()
              return ("Identifer: " + this.Identifer + '\n'
                        + "Serial: " + this.Serial + '\n'
                        + "Node: " + this.Node + '\n'
                        + "NodeAlias: " + this.NodeAlias + '\n'
                        + "Manager: "  + this.Manager + '\n'
                        + "Agent: " + this.Agent + '\n'
                        + "AlertGroup: " + this.AlertGroup + '\n'
                        + "AlertKey: " + this.AlertKey + '\n'
                        + "Severity: " + this.Severity + '\n'
                        + "Summary: " + this.Summary + '\n'
                        + "StateChange: " + this.StateChange + '\n'
                        + "FirstOccurance: " + this.FirstOccurance + '\n'
                        + "LastOccurance: " +      this.LastOccurance + '\n'
                        + "InternalLast: " + this.InternalLast + '\n'
                        + "EventId: " + this.EventId + '\n'
                        + "LocalNodeAlias: " + this.LocalNodeAlias + '\n');
    }I'm correctly populating my Messages sent to me from the client, I tested it and it works but iterating over them once the messages are inserted into the map is my issue.
    I'm not getting an error, just no output for the values
    here's how I'm adding the Messages to the MessageDB
    //This string is coming from a client
    String str = in.readLine();
    // creating a scanner to parse
    Scanner scanner = new Scanner(str);
    Scanner scannerPop = new Scanner(str);
    //Creating a new message to hold information
    Message msg = new Message();
    //place Scanner object here:
    MessageParser.printTokens(scanner);
    MessageParser.populateMessage(scannerPop, msg);
    System.out.println("-------PRINTING MESSAGE------\n");
    msg.print();
    System.out.println("----------END PRINT----------\n");
    System.out.println("-------Accessing data from Map----\n");
    MessageDB testDB = new MessageDB();
    testDB.add(msg);
    testDB.print();I know this code is ugly, I should make accessor and modifer functions for my Message class but for now I'm just trying to see if I this method is even going to work then I'm going to go about making it more protected.
    Also here is my output:
    that long mess is the incoming string from the client, and im parsing it up into tokens and assigning my message object certain values.
    Address of server: 0.0.0.0/0.0.0.0
    Server is bound to port: 2222
    Echo :UPDATE: "GATEWAY:@barneyfifedisconnectedMon Jun 11 16:46:12
    2007",446,"barneyfife","","ConnectionWatch","","Gateway","GATEWAY:",0,"A
    GATEWAY process  running on barneyfife has disconnected as username
    gateway",06/11/07 16:50:12,06/11/07 16:46:12,06/11/07 16:46:12,06/11/07 16:46:12,0,1,1,0,0,"",65534,0,0,0,"",0,0,0,"","",0,0,"",0,"",0,0,"","","","","","","","",0,
    0,"","","NCOMS",446,""
    Token [0]UPDATE: "GATEWAY:@barneyfifedisconnectedMon Jun 11 16:46:12 2007"
    Token [1]446
    Token [2]"barneyfife"
    Token [3]""
    Token [4]"ConnectionWatch"
    Token [5]""
    Token [6]"Gateway"
    Token [7]"GATEWAY:"
    Token [8]0
    Token [9]"A GATEWAY process  running on barneyfife has disconnected as username gateway"
    Token [10]06/11/07 16:50:12
    Token [11]06/11/07 16:46:12
    Token [12]06/11/07 16:46:12
    Token [13]06/11/07 16:46:12
    Token [14]0
    Token [15]1
    Token [16]1
    Token [17]0
    Token [18]0
    Token [19]""
    Token [20]65534
    Token [21]0
    Token [22]0
    Token [23]0
    Token [24]""
    Token [25]0
    Token [26]0
    Token [27]0
    Token [28]""
    Token [29]""
    Token [30]0
    Token [31]0
    Token [32]""
    Token [33]0
    Token [34]""
    Token [35]0
    Token [36]0
    Token [37]""
    Token [38]""
    Token [39]""
    Token [40]""
    Token [41]""
    Token [42]""
    Token [43]""
    Token [44]""
    Token [45]0
    Token [46]0
    Token [47]""
    Token [48]""
    Token [49]"NCOMS"
    Token [50]446
    Token [51]""
    Entering populate mssage inside case 0
    case 0: UPDATE: "GATEWAY:@barneyfifedisconnectedMon Jun 11 16:46:12 2007"
    case 1: 446
    case 2: "barneyfife"
    case 3: ""
    case 4: "ConnectionWatch"
    case 5: ""
    case 6: "Gateway"
    case 7: "GATEWAY:"
    case 8: 0
    case 9: "A GATEWAY process  running on barneyfife has disconnected as username gateway"
    case 10: 06/11/07 16:50:12
    case 11: 06/11/07 16:46:12
    case 12: 06/11/07 16:46:12
    case 13: 06/11/07 16:46:12
    DEFAULT: 0
    DEFAULT: 1
    DEFAULT: 1
    DEFAULT: 0
    DEFAULT: 0
    DEFAULT: ""
    DEFAULT: 65534
    DEFAULT: 0
    DEFAULT: 0
    DEFAULT: 0
    case 24: ""
    DEFAULT: 0
    DEFAULT: 0
    DEFAULT: 0
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: 0
    DEFAULT: 0
    DEFAULT: ""
    DEFAULT: 0
    DEFAULT: ""
    DEFAULT: 0
    DEFAULT: 0
    case 37: ""
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: 0
    DEFAULT: 0
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: "NCOMS"
    DEFAULT: 446
    DEFAULT: ""
    -------PRINTING MESSAGE------
    Identifer: UPDATE: "GATEWAY:@barneyfifedisconnectedMon Jun 11 16:46:12 2007"
    Serial: 446
    Node: "barneyfife"
    NodeAlias: ""
    Manager: "ConnectionWatch"
    Agent: ""
    AlertGroup: "Gateway"
    AlertKey: "GATEWAY:"
    Severity: 0
    Summary: "A GATEWAY process  running on barneyfife has disconnected as username gateway"
    StateChange: 06/11/07 16:50:12
    FirstOccurance: 06/11/07 16:46:12
    LastOccurance: 06/11/07 16:46:12
    InternalLast: 06/11/07 16:46:12
    EventId: ""
    LocalNodeAlias: ""
    ----------END PRINT----------
    -------Accessing data from Map----
    The map contains the following associations:
    Serial (key): 446As you see it is printing the correct Serial, but it seems like it isn't even entering into the printing the value associated with that key.
    NOTE: if you need more code I can supply my parsing functions as well.
    Thanks!
    Message was edited by:
    lokie
    NOTE: the code formating screws up the < >
    it should be HashMap<String,List<Message>>();
    Message was edited by:
    lokie
    Message was edited by:
    lokie
    Message was edited by:
    lokie

    Thanks Good Idea :)
    Heres a small version of the same problem:
    MainTest
    package ds;
    public class MainTest {
         public static void main(String []args)
              //create a new message object, assign it some values.
              //note: Serial is the key to the map.
              Message m1 = new Message();
              m1.Identifer = "Test Message";
              m1.Serial = "222";
              m1.Agent = "AgentTest";
              m1.Identifer = "IdentiferTest";
              //test to see if it assigned right.
              m1.print();
              //insert into a map
              MessageDB dbTest = new MessageDB();
              dbTest.add(m1);
              //print key/values
              dbTest.print();
    }Here is the 2 classes that I use, Message and MessageDB.
    The problem is in the MesesageDB i'm getting the following error:
    Exception in thread "main" java.lang.ClassCastException: java.util.ArrayList cannot be cast to ds.Message
         at ds.MessageDB.print(MessageDB.java:43)
         at ds.MainTest.main(MainTest.java:28)
    package ds;
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.io.*;
    //this class should store all the Messages or "Events" and
    //you can access them based on their Serial key.
    public class MessageDB
         //database to hold the information
         //     holds the Alerts/messages
         Map<String, List<Message>> AlertMap;
         //Constructor
         MessageDB()
              AlertMap = new HashMap<String, List<Message>>();
         //print, outputs the contents of the hashMap
         public void print()
            //want to print out the Key and all the Messages
              //associated with that key
              Set keys = AlertMap.keySet();          // The set of keys in the map.
              Iterator keyIter = keys.iterator();
              System.out.println("The map contains the following associations:");
              while (keyIter.hasNext()) {
                    Object key = keyIter.next();  // Get the next key.
                    Object value = AlertMap.get(key);  // Get the value for that key.
                    System.out.println( "Serial (key): " + key + "\n");
                    System.out.println("value: " + ((Message)value) + "\n");
                    //((Message)value).print();
         ///adds a message (value) to the map, along with the key.
         void add(Message msg)
              //getting the position of the List by EntityID if avaiable
              List<Message> AlertList = AlertMap.get(msg.Serial);
              //checking to see if there is a unique Key already in the Map.
              if (AlertList == null)
                   //if there isnt a key in the map, add a new key, and a new List mapping
                   //to the key EntityID;
                     AlertList = new ArrayList<Message>();
                     AlertMap.put(msg.Serial, AlertList);
                     AlertList.add(msg);
              else
              //adding message to List
                   AlertList.add(msg);
    }Here is the message class you'll need to use to compile:
    package ds;
         public class Message {
              String Identifer;
              String Serial;
              String Node;
              String NodeAlias;
              String Manager;
              String Agent;
              Message()
                    Identifer = "";
                    Serial = "";
                    Node = "";
                    NodeAlias = "";
                    Manager = "";
                    Agent = "";
              void print()
                   System.out.println("Identifer: " + this.Identifer + '\n'
                             + "Serial: " + this.Serial + '\n'
                             + "Node: " + this.Node + '\n'
                             + "NodeAlias: " + this.NodeAlias + '\n'
                             + "Manager: "  + this.Manager + '\n'
                             + "Agent: " + this.Agent + '\n');
              public String toString()
                   return ("Identifer: " + this.Identifer + '\n'
                             + "Serial: " + this.Serial + '\n'
                             + "Node: " + this.Node + '\n'
                             + "NodeAlias: " + this.NodeAlias + '\n'
                             + "Manager: "  + this.Manager + '\n'
                             + "Agent: " + this.Agent + '\n');
         }It doesn't like this line as I suspected:
    System.out.println("value: " + ((Message)value) + "\n");

  • Can anyone let me know abt the new selection

    hi all,
    While we create reports using query designer. when u click on the structure, there are 2 options that turns up new selection and new formula.
    Can anyone let me know the significance of new selection with an example. Why it is used And what is it importance.
    thanxs in advance
    regds
    hari

    Selection is for Restricted Key Figure while Formula is for Calculated Key figure. Both Selection and formula is for locally declared and execute for that query where it is defined at, but CKF and RKF are global in nature, you use them globally in all queries which uses the underlying infoprovider.
    thanks.
    Wond

  • How can I make an external monitor the main display?

    I have a mid 2007 iMac running OS X 10.4. The internal monitor is broken and all it shows is a bunch of lines.
    I have connected an external Samsung monitor. All I see in it is a desktop background: no icons, no menus, no dock. I believe this is because the display is in extended mode and the main display is the internal monitor. I cannot use the System Preferences Panel to change this, because the internal monitor is useless.
    I have a second, newer iMac, from which I can login to the first via ssh.
    Is there a way to make the external monitor the main display from the command line?
    (I have though of editing the Preferences List, but I do not know what to change and how to change it. I do have Developers Tool installed and thus can access the Preferences List Editor.)
    Thanks in advance!!!
    Gustavo J. Mata

    Hi everybody!
    To solve the problem I wrote a script that creates a Systems Preferences windows which shows up in the external monitor. Once this happens the configuration can be changed manually, to make the external monitor the main display. This is what I did:
    First I created a user with automatic login in the faulty machine. To do this:
    1.- Restarted this malfunctioning iMac in Firewire Target mode.
    2.- Rebooted the working iMac using the other machine as startup disk.
    3.- Created the user.
    4.- Restarted both machines normally
    Next I wrote a script which opens System Preferences and shifts its window to the left:
    5.- In the working machine I saved the script as a 'Run only' application:
    tell application "System Preferences"
    activate
    set x0 to 1080
    set y0 to 200
    set dx to 800
    set wx to 600
    set wy to 600
    set the bounds of the first window to {x0, y0, x0 + dx + wx, y0 + wy}
    end tell
    6.- Then uploaded it to the iMac with the faulty screen.
    7- Shut down both machines.
    Then I added the script application to the automatic login user in the faulty machine:
    8.- Restarted the malfunctioning iMac in Firewire Target mode.
    9.- Rebooted the working iMac using the other machine as startup disk.
    10.- In System Preferences added the script to login items.
    11.- Restarted both machines.
    The System Preferences window now showed in the external terminal. I was able to go into the Displays pane and set the external monitor as the main display (dragging the white bar to it).
    Cheers,
    Gustavo J. Mata

  • Can I run a presentation without the presenter display?

    Here's the setup: Mac Mini in the office attached to a 32" Sony Bravia on the wall outside the office and a 19" LCD locally. I'd like to run a slideshow out on the Bravia, but maintain my desktop inside. I can disable the 'Use alternate display to view presenter information' from within Preferences, but that blanks out my local screen while running the slideshow on the HDTV. I want to be able to run the presentation within Keynote, but keep the ability to work on other things on the desktop. Anybody done this?
    PS, i know I can export the slideshow as a QT video and drag it to the second display and loop it, but I'd like to be able to change slides on the fly without rendering a whole new movie to play on the second screen. Thanks for any input!

    Under Keynote preferences, there is an option for "Present on Primary Display", or "Display on Secondary Display". Does this not work when you choose secondary display and nave it leave your primary display as your Finder window? Just curious, since I don't have two displays to try it.

  • How can you get the filter off if you can't remember the password? It's"pro con" and it wont even let me check out the rates for a flight.

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/790760]</blockquote><br>
    A friend put on the filter but no one can remember the password

    You can check the file prefs.js in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] and remove the line(s) related to that extension (procon.password).

  • I added gift card to wrong Apple id, Can I let my child access the credit balance without having to keep it in my library?

    My daughter received an Itunes giftcard for Christmas. I mistakenly added the card to my Apple id instead of hers and was told by Itunes support that they
    can't transfer store credit balance from one account to another account. So I'm thinking that if she logs into my Apple id, where the credit is, from her iphone 4 that she can use her credit for songs for her phone.  Will those songs go to her "music" file" or will she need to be logged into my ID to continue to use them on her phone and seconldly. I don't want those songs on my phone. (No offense, we just don't like the same stuff) 
    If my reasoning is incorrect, please let me know and if you can think of an easier way, please let me know. 
    Sincerely,
    Renee M
    Miscellaneous: She has an iphone 4 and my Mac is using Itunes 11.

    Thank you for replying, Niel.
    I figured it out myself. Basically, I logged into my Apple ID in app store and my friends' game center id. I made purchases with their game accounts but with my credit.

  • Can anyone help me sort out the audio on my k8n neo2

    Audio has never been one of my strong points so im stuck trying to get the onboard sound on my k8n neo2 board to work properly. The case i have has front connections for  headphones and another for microphone. Ive managed to get the front headphone jack to work i havnt got a mic so i cant try that. I have tried connecting my stereo speakers (part of my monitor) to the line out at rear (green jack plug) , i notice in the msi sound manager they refer to this connector as front speaker out. I had no sound at all until i came across aforesaid msi sound manager, the only way i can get sound is by going into this manager and selecting "speaker configuration" and either selecting 8 or 6 channel which i havnt got but at least i can hear a cd when its playing. The problem with this is that when i boot into windows there is no sound played. I have noticed in the mobo manual page E-2-20 under msi reminds you.. If you dont want to connect to the front audio header (JAUD1), pins 5&6, 9&10 have to be jumpered in order to have signal output directed to rear audio audio ports. Otherwise the line-out connector on back panel will not function. Wonder if this has something to do with it. I encclose an image showing the relevant mobo page with connection instructions and the wiring of front panel jacks from my case instructions.
     on the JAUD1 pins 6 and 10 audio signal returns for right and left channel  but my case wiring only had a single return in the form of the shield braid so i split it in two and connected to pins 6&10 to see if this would cure the no sound problem, it didnt. Just hoping the image is big enough for people to read. Hope someone can help with this.

    Well lets see if I can help.
    Connect like this:
    Red---->Aud_fpout_L
    Jump with Red---->Aud_ret_L
    White---->Aud_fpout_R
    Jump with white---->Aud_ret_R
    I think is... Spiral---->Aud_gnd this you have to share with the mic that is also Spiral
    As for the mic .... MIC power---->Aud_mic_bias
    MIC-IN---->AUD_mic
    And I think that's it....
    Be well....

  • HT1539 can i add my digital copy to itunes with out using the disk? my netbook does not have a disk drive and i want to add my movie to my ipod can i do it with out the use of the disk and just the code?

    Can I add my digital copy movie to my iTunes with out using the disk, my gateway laptop/netbook does not have a disk drive I have the unused code and everything, I just can't stuck the movie into the computer itself and my desktop computer has no internet on it. Is there a way to add my movie to my iPod touch 2nd generation tuning 4.2.1

    Hiya!
    It depends on what kind of digital copy you have.  This article goes ino details regarding the two types, and depending on the type you have, you may or may not need the DVD to redeem the code.
    Transferring video from DVDs with iTunes digital content
    http://support.apple.com/kb/HT1539
    I hope this helps!  Best wishes and good luck!

  • Can I let my daughter use the things in my itune account in hers?

    I just bought my daughter an ipod touch and I want to load it with some of the things that I have purchased from itunes for my iphone. She has a separate itunes account with her old ipod. Is there a way to let her use the things from my itunes library? I don't want to have to buy things twice if I don't have to. Any help would be appreciated!!!

    My sister just got an iPod but we restored it. Now she has no music but every time i plug her ipod into our computer my itunes pulls up an it tries to upload the music into her ipod! there is songs that i have that she doesn't want! but if i delete them from itunes it will delete from my ipod when i plug it into the computer when i go to charge it the next time! i tried to download another itunes to our computer but it just upgraded my old itunes!! i can use any advice! please an thank you!! i really appreciate it!!

  • I can not open anything with out the DEP message coming on. My computer will not allow me to run Adobe Reader.

    It's impossible to open any Adobe message without the program shutting down. I've tried to change the DEP but Adobe will not allow it. I can't open anything.

    Try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].
    Note that Reader XI is not officially supported on Vista; Reader X (10.1.10) is the latest Reader version for Vista.

Maybe you are looking for