Primo 81 hdmi out.. how to get it working

Hey, I picked up a primo 81 for my wife and we are trying to get it to output to the tv via the hdmi out...  Any idea's? The pdf mentions nothing about it.

Quote from: badboy2k on 27-December-13, 03:10:09
ok on that tablet I'm not sure where it is exactly as its android (i have very little use of it and anytime i have used a HDMI its just been sent to a 1080p screen) but find the settings menu and find the one for HDMI as I'm fairly sure by default its trying to output a signal at 1080p @ 60hz not 720p @ 60hz and you will have to change that to fit the monitor (also when you plug in the mini HDMI does it bring up a dialogue box saying HDMI connected? (also make sure you have your TV on the HDMI in that its using))!
No, I do not get any dialog box saying hdmi connected..  And I can not find any settings anywhere for changing the hdmi output resolution.
Thanks again for the help guys.

Similar Messages

  • Can anyone help me figure out how to get iTunes working?

    When I upgraded to iTunes 10, every time I tried to open iTunes it would give me an "Error 7: iTunes not properly installed" message. I tried uninstalling and reinstalling iTunes and restarting my computer multiple times. Finally, I went through my programs list and uninstalled all of the Apple software (QuickTime, Application Support, etc.) Then I reinstalled iTunes again.
    Now when I open iTunes, I get an "Error 2: Apple Application Support not found" message. I tried extracting the iTunesSetup.exe to a new folder and installing the AppleApplicationsSupport.msi file separately, but the installation gets partway through and gives me a "Cannot access Key (block of gibberish) Ensure you have access to key..." message and the installation fails. I'm logged into an Administrator Account, the same account that I used to install iTunes 9, so this doesn't make much sense to me.
    What can I do to get iTunes working? I really need help.

    Those are unpleasant ones, usually striking 64-bit systems. They're not easy to troubleshoot, but the following set of instructions is a good place to start:
    http://discussions.apple.com/thread.jspa?threadID=2475687&tstart=30

  • File I/O and figuring out how to get this working

    I need to get this code to readi in a file from anywhere, which it does, and then calculate the sentences, words per sentence and syllables per word, this is my code so far
    // Standard imports.
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    class WritingFilesWithChooser extends JFrame implements ActionListener {
         JButton myButton, myButton2;
         JTextArea myText;
         // Usual setup stuff goes in here.
         public WritingFilesWithChooser() {
              Container c = getContentPane();
              myButton = new JButton ("Write To File");
              myButton.addActionListener (this);
              myButton2 = new JButton ("Load from File");
              myButton2.addActionListener (this);
              c.add (myButton, BorderLayout.NORTH);
              myText = new JTextArea (10, 10);
              c.add (myText, BorderLayout.CENTER);
              c.add (myButton2, BorderLayout.SOUTH);
         // Usual main stuff.
         public static void main(String args[]) {
              WritingFilesWithChooser mainFrame = new WritingFilesWithChooser();
              mainFrame.setSize(400, 400);
              mainFrame.setTitle("WritingFilesWithChooser");          
              mainFrame.setVisible(true);
         // The actionPerformed for this class is a busy little beaver. It handles
         // opening and saving files, trying and catching exceptions, and dealing
         // with the chooser dialog.
         public void actionPerformed (ActionEvent e) {
         // We need these variables for our File IO.
         FileWriter base;
              PrintWriter out;
              FileReader readBase;
              BufferedReader in;
              String temp;
              JFileChooser myChooser;
              // We create an instance of JFileChooser, which allows us to use a
              // GUI style file manager to choose filenames.
              myChooser = new JFileChooser();
              // Okay, they've chosen the save button.
              if (e.getSource() == myButton) {
                   // First we show the save dialog, which lets the user specifiy a
                   // filename to save. If the user clicks 'save', then this if
                   // condition will evaluate to true and the code within will be
                   // executed. If they select cancel, then nothing will happen.
                   if (myChooser.showSaveDialog(this) == JFileChooser.APPROVE_OPTION) {
                        // There are often exceptions thrown when dealing with file I/O,
                        // so we need this code to deal with it.
                        try {                         
                             // We create an instance of the FileWriter object using the
                             // Chooser object. GetSelectedFile of the chooser object returns
                             // a file reference, and we call getAbsolutePath on that to get
                             // the full filename, which is returned as a string.
                             base = new FileWriter (myChooser.getSelectedFile().getAbsolutePath());
                             // We use the FileWriter object we created above as the base of
                             // the printwriter object.
                             out = new PrintWriter (base);
                             // We grab the text out of our textbox and write it to a text
                             // file.
                             out.write (myText.getText());
                             // When we're done, we close the file.
                             out.close();
                        catch (Exception except) {
                             // This will appear if there is a horrible error. More on this
                             // in week twelve.
                             JOptionPane.showMessageDialog (null, "A Horrible Error!");               
              else {
                   // First we show the open dialog, which lets the user specifiy a
                   // filename to open. If the user clicks 'open', then this if
                   // condition will evaluate to true and the code within will be
                   // executed. If they select cancel, then nothing will happen.
                   if (myChooser.showOpenDialog(this) == JFileChooser.APPROVE_OPTION) {
                        // There are often exceptions thrown when dealing with file I/O,
                        // so we need this code to deal with it.
                        try {
                             // We create an instance of the FileReader object using the
                             // Chooser object. GetSelectedFile of the chooser object returns
                             // a file reference, and we call getAbsolutePath on that to get
                             // the full filename, which is returned as a string.
                             readBase = new FileReader (myChooser.getSelectedFile().getAbsolutePath());
                             // We use the FileReader object we created above as the base of
                             // the BufferedReaderobject.
                             in = new BufferedReader (readBase);
                             // We read a single line from the file we selected.
                             temp = in.readLine();                         
                             temp.toLowerCase();
                             String i;
                             String word;
                             word = temp;
                             int nsyl = 0;
                             int leng = 0;
                             boolean last = true;
                             for (int j=0; j<word.length(); j ++)
                                  if(word.charAt(i) = ' ')
                                       leng ++;
                             for (int k =0;k<word.length(); k++)
                                  if (word.charAt(i) == 'a' || word.charAt(i) == 'e' ||
                                       word.charAt(i) == 'i' || word.charAt(i) == 'o' ||
                                       word.charAt(i) == 'u')
                                       nsyl++;
                                  if (word.charAt(i) == 'a' || word.charAt(i) == 'e' ||
                                       word.charAt(i) == 'i' || word.charAt(i) == 'o' ||
                                       word.charAt(i) == 'u')
                                            last = false;
                                  else {
                                  last = true;
                                  if (word.length(word) == "e ")
                                  nsyl --;
                             // We clear the textbox, ready for us to dump our goodness into
                             // it.                         
                             myText.setText ("");
                             // This loop will continue while there are still lines to read.
                             // When the readLine method gets to the end of the file, it will
                             // assign the value 'null' to the temp variable.
                             while (temp != null) {
                                  // While the temp variable isn't null, we append it to the
                                  // text already in the textbox. We add the \n character to
                                  // the end to force a new line.
                                  myText.append (temp + "\n");
                                  // We read in the next line of the file.
                                  temp = in.readLine();
                             // Finally, we close the file.
                             in.close();
                        catch (Exception except) {
                             // This will appear if there is a horrible error. More on this
                             // in week twelve.
                             JOptionPane.showMessageDialog (null, "A Horrible Error!");               

    How about taking a look at the String class. In jdk1.4 and later there are methods such as split() which can
    split a paragraph up into sentances. (split(".") ) then can split the sentance up into words (split(" ")). Push
    all of the words into a HashMap with an integer indicating the number of times they have occured.
    Then run through the HashMap and for each entry search for vowels/sylables/whatever.
    This is probably the easiset method of doing what you want but it is limited in the size of file it can parse
    efficiently.
    matfud

  • I am trying to set up my apple tv on a sony KDL - 40xbr4. The remote is a sony RM-V302. I plugged it into the HDMI IN on the side of the TV but cannot find out how to get to that input. I am at a winter rental property and brought my Apple TV with me.

    I am trying to set up my apple tv on a sony KDL - 40xbr4. The remote is a sony RM-V302. I plugged it into the HDMI IN on the side of the TV but cannot find out how to get to that input. I am at a winter rental property and brought my Apple TV with me. I did check internet for solutions. The instructions I found said to use a "home button" on the remote.  There isn't one. I sure would appreciate help if someone knows a solution.  My first post - hope I did this right.

    if its anything like my Sony, theres a button top left corner that upon each press i get an audible bleep and the AV inputs come up on screen, i then cycle down to whichever input i wish to select!
    in case your remote is different, the button on my remote has a square with a slightly smaller square just overlapping the first square.
    hope that helps?
    rgds Lee.

  • Has anyone figured out how to get speech recognition working with sticky keys enabled on mountain lion?

    I'm trying to use speech recognition to input text on my iMac running the latest mountain lion, 10.8.3.
    I have sticky keys enabled.
    When I try to start speaking by pressing the function key twice nothing happens. I can only get it to work if I disable sticky keys.
    The same problem occurs with all the other modifier keys as shortcut, they do not work with sticky keys.
    When I try to select a different shortcut, I am unable to select a two key combination, but am limited to one.
    If I select the F6 key, or any other single key, I am able to start speech recognition. However the second time that I press the key, it does not stop recognition and process my words. Instead, it restarts the recognition.
    Has anyone figured out how to get speech recognition working with sticky keys enabled?
    Or a way to get an individual key shortcut to start on the first press and process it on the second?
    Or a way to get key combinations to work, as specified by the help:
    Dictation On and Off
    To use Dictation, click On.
    When you’re ready to dictate text, place the insertion point where you want the dictated text to appear and press the Fn (function) key twice. When you see the lighted microphone icon and hear a beep, the microphone is ready for you to speak your text.
    Shortcut
    By default, you press the Fn (Function) key twice to start dictation. If you like, you can choose a different shortcut from the menu.
    To create a shortcut that’s not in the list, choose Customize, and then press the keys you want to use. You can press two or more keys to create your shortcut.

    I noticed with version 10.8.4 of OS X that I am now able to select F6 to activate, and the return key to complete the speech recognition. This is still different than the description of how these should function that's included in the help, but at least it's an improvement.

  • I just got the iphone 4s and i cant figure out how to get siri to work it seems to be the old voice command. HELP!

    i just got the iphone 4s and i cant figure out how to get siri to work it seems to be the old voice command. HELP!

    Did you enable Siri in settings?
    Settings > General > Siri > ON
    If Siri is off, all you get when pressing the home button for 1 second is the old Voice Control.

  • I can't work out how to get facetime on my macbook pro

    I can't work out how to get facetime on my macbook pro

    FaceTime for Mac: troubleshooting FaceTime:
    http://support.apple.com/kb/TS4185?viewlocale=en_US

  • Want to download iPhoto on my MacBook Air.  Told I need IOS 10.10.  can't work out how to get it.  Told my updates are up to date.

    I am trying to download iPhoto on my MacBook Air.  I am told I need IOS 10.10.  I cannot work out how to get that.  I am told that my updates are up to date when I check.

    Never mind got the answer!

  • My boss is on Entourage/MAC 2003 and I am on Windows 2007, I cannot seem to work out how to get copies of his meeting requests. The manual says tick 'send copies to delegate' but there is no box in that version to tick. Anyone?

    My boss is on Entourage/MAC 2003 and I am on Windows 2007, I cannot seem to work out how to get copies of his meeting requests as his only delegate.
    The manual says tick 'send copies to delegate' but there is no box in that version to tick. Anyone?
    Thanks!
    Beth

    My boss is on Entourage/MAC 2003 and I am on Windows 2007, I cannot seem to work out how to get copies of his meeting requests as his only delegate.
    The manual says tick 'send copies to delegate' but there is no box in that version to tick. Anyone?
    Thanks!
    Beth

  • I purchased a book from itunes and cannot figure out how to get it on my ipod nano 7.  I cannot find an answer that works.

    I purchased an audio book from itunes and cannot figure out how to get it on my nano 7.  I have tried everything. 

    Have you double checked to make sure these Audiobooks are configured to sync to your iPod from under the iPod's Books configuration tab in iTunes?  This is assuming that the audiobooks are already stored in your iTunes library and appear under the Books category.
    To access this configuration tab, plug in your iPod and select it from under the Devices section in the left hand pane of iTunes to bring yourself to the iPod's Summary tab. Now locate the Books tab across the top in the main iTunes window and select it. Here you can configure what and how audiobooks are synced to the device.
    If you make any changes to this tab, make sure to hit the Apply button on in the lower right hand corner. This will sync the updated changes to your device.
    B-rock

  • Transferring some files from old hard drive to new mac book pro: How do I do this?  I bought a SATA Wire, and can't figure out how to get my files

    Hi there, my old mac book recently died and I opted to buy a new macbook pro, instead of pouring lots of money into the old computer.  I was able to get my hard drive out, and I bought a 2.5" Sata Nootbook Drive Upgrade Kit.  I have also installed superduper!....but I can't really figure out how to get everything to work.  I just want to be able to take some of my files from my hard drive, not everything...
    Any suggestions?
    Thanks!

    I don't know what a "2.5" Sata Nootbook Drive Upgrade Kit" is but if you have a internal drive you need to connect all you needed was a $20 IDE/SATA to USB adapter
    You don't need Superduper, that's software designed to clone a entire Mac's boot drive to a external drive for bootable backup purposes using the same machine/make/model.
    Since the new Mac is different than the old one you can't clone (well you could but it will break the machine) the old drive to the new one.
    However you can use the adapter above and software Apple provides in the Utilities folder on the NEW MAC, called Migration Assistant to transfer your User to the new machine.
    However this might not be the best course of action as it can transfer unwanted data and cause problems in the Library, old programs that won't run on 10.7, etc.
    You can simply create the same named user on the machine (System Preferences > Accounts) log into it and then connect the external drive with the adapter and copy the contents of your users folders over and place into the same.
    It's always good to have another Admin level user account on the machine in case the primary one has a User based issue and you need to log into the other and grab files. So if either manually or via using Migration Assistant you wind up with two user accounts on the machine, it's really not that big of a deal.

  • HT1711 I recently deleted iTunes off my computer by accident, when I reinstalled it I got the new version and I can't figure out how to get my music to store on my iTunes to transfer from my iPhone to iTunes.

    I recently deleted iTunes off my computer by accident, when I reinstalled it I got the new version and I can't figure out how to get my music to store on my iTunes to transfer from my iPhone to my iTunes.  I goal is to get my iPod filled with the music that I have stored on my iPhone and figured the only way to do so is to use iTunes as my transfer hub.  Any suggestions?

    Wow you're kind of a iTunes bully.  Dude the reason I am asking for advice and help is I am completely computer ********.  If I knew the answer I wouldn't be asking.  Anyways.  Question to anyone else. 
    If I have no music on my iTunes at all and no music on my computer, hard drive or any other version of storage yet there is a playlist on my iPhone. While my iPhone is plugged into my PC and my iTunes is up, is there a way to swap my playlist from my iPhone to my iTunes?  Directly?  Without downloading some new media source or backing up my old media source from my history.  The reason everything was deleted (iTunes and media source) was due to the size of everything and space it was requiring.  I am simply trying to get 233 songs from A to B. 
    I have tried magic but it is not working.   
    <Edited By Host>

  • Cant Figure out how to get out of App's like Twitter

    I just got my new Q5 (Traded in Curve)  \i figured out most of the phone but have not been able to figure out how to get out of App's like Twitter or any browser Apps once \i am in there.  I used to have the nice little "back button" on the Curve but no more Back Button on this one  Ive tried swipping every which way but loose with no luck.  Even when I am in my photos, I can figure out how to go back to the main menu (other than to turn the phone off and turn it back on)   Is there a Back button somewhere or is my phone just not working right.  please help
    Solved!
    Go to Solution.

    Hello tomanator
    To close app, swipe up from the bottom of the screen, and tap X at bottom right of each app.
    • Click Likes to appreciate those who helps you
    • If your issue solved, mark the best post in your thread as Solution

  • The last version of Firefox would go to a choice box when a new screen came up. I can't figure out how to get that feature back in Firefox 4

    For example. When checking spam in Gmail.....if I ask to delete all spam mail.....the cursor would automatically go to the box that pops up asking for confirmation. I can't figure out how to get that feature back. Otherwise everything works great!

    I have the same problem getting into Mozilla. Occasionally it comes up when I click on it, but most times it does not. The hour glass stays on for a couple of seconds, then goes off.

  • I installed Photoshop Elements 12 and its icon is on desktop, but when I launch it, I get error messages.  How to get it working?

    I installed Photoshop Elements 12 and its icon is on desktop, but when I launch it, I get error messages.
    How to get it working?

    My guess is that you won't be able to do much if you threw away the serial number before using it.  The serial number will not have been externally visible on the box though... doing that would make it available for use by anyone who sees the box in any store.
    To locate the serial number:
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html
    If you remain unable to locate the serial number you might need to head back to wherever you purchased the product to confirm whether or not you might have thrown out the serial number or if it could even possibly have never been provided.
    Beyond that you need to resolve serial number issues with ASdobe Support directly.  Here is a link for chat:
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • HT203163 I appear to have transferred to the US store and cannot find out how to get back to the UK store- can you help ?

    I have managed to get into the US store and cannot work out how to get back to the UK store - can you help?

    See  >  Change your iTunes Store country
    Here  >  http://support.apple.com/kb/HT1311
    Settings > iTunes & App Stores > Apple ID: > View Apple ID > Country/Region = Change Country / Region

Maybe you are looking for

  • How can I pay an overdue balance with a new account where the old account is no longer valid?

    I used to live in the UAE and was using my UAE local credit card for my apple accout. I returned recently back home and the old account I had is now no loneger valid,I now have a new credit card, I would like to use my new account to settle the balan

  • Can you change the field names in the address book?

    Can you change the Pager field name to read 2nd cell?

  • How to connect Oracle 9.2 using Visual Basic

    Hi all , I have Oracle database which setup in another computer. I need to create VB program to connect to the Oracle Database . I would like to use Oracle ODBC driver to connect . However i did not know what is the parameters that need for ADO conne

  • WLC 2504 7.5 Redundancy

    Hi all, Just a little question about high availability in cisco 2504 WLC Ver 7.5.102.0. Following the cisco documentation for WLC I want to set the HA configuration by going to Controller - Redundancy menu. My issue is that this menu does not exist i

  • Is there a way to slow down all clips by 75%

    I am trying to slow down all the clips in a project to 75% (Sports footage).  There seems to be a way to do this individually but no way to do it across all clips.   Is there?  if not,  sure would like to see this in the next version.