Is there any way to hook up to a vga display

My apple TV is on route and one of my TVs only has a VGA port. Is there any way to hook it up to that TV?

Welcome to the Apple Community.
You'd need a hardware converter to do that, even then you will not be able to watch protected content from iTunes and netflix. You may also have aspect ratio issues if your TV is not widescreen, and even with a converter it may not work at all if your TV doesn't support 720p and the converter doesn't also scale.

Similar Messages

  • Is there any way to hook into the SQL report pagination process?

    I have a SQL report (based on EMP) with a radiogroup row selector.
    The scenario 1 and 2 are in place
    1) When the employee row radio group is clicked the P900007_JOB the text item is populated with the JOB for the employee.
    2) When the page is initially displayed or submitted via the button the first row’s radio group is programmatically clicked and therefore populates the additional job information in P900007_JOB
    Info (radio Group) Employee No Name
    (+) 7369 SMITH
    () 7499 ALLEN
    () 7521 WARD
    P900007_JOB CLERK
    1-3 Next>
    Once the report has been displayed and the next or previous pagination is used then none of the radio groups will be selected and the data in the P900007_JOB text item will still display the job of the last selected employee row.
    What I require is on pagination some sort of mechanism to either
    a) Call the page_init() that should then set the first row as selected and populate the text item via the programmatic click. (preferred option)
    b) OR blank out the additional text item P900007_JOB.
    Is there any way to hook into the pagination process?
    I have a work around – Set the ‘Enable Partial Page Refresh’ to ‘No’ but this means a full refresh every time the pagination is used.
    Details of my page
    Report Region (Based on EMP table) – radio group as a row selector
    select     APEX_ITEM.RADIOGROUP(1,EMPNO,'X21',null) CHECKRG, EMPNO,
         ENAME,
         JOB
    from     EMP
    Report Attributes -
    Report template :- P900007_ROWTEMPLATE (custom template see later)
    Report Attributes Substitution :- id="emp_report" (used in page_init see later)
    Enable Partial Page Refresh :- Yes
    Columns – All columns are selected as show but job is left out of the template below.
    P900007_JOB - Text item in report region (disabled does not save state). Populated with the employees job when the radio group is clicked.
    Control region :- HTML region that just holds a button <GO> just to submit the page and redirect back to the same page.
    P900007_ROWTEMPLATE (named column row template)
    Row template 1
    <tr style="cursor: hand; cursor: pointer;" onmouseover="row_mouse_over(this, 1)" onmouseout="row_mouse_out(this, 1)" #HIGHLIGHT_ROW# ">
    <td class="t15data" onclick="selectRow('#JOB#');">#CHECKRG# </td>
    <td class="t15data">#EMPNO# </td>
    <td class="t15data">#ENAME# </td>
    </tr>
    Before rows
    <table class="t15standard" summary="" #REPORT_ATTRIBUTES# id="report_#REGION_STATIC_ID#" >
    <th class="t15header" #ALIGNMENT# >Info</th>
    <th class="t15header" #ALIGNMENT# >Employee Number</th>
    <th class="t15header" #ALIGNMENT# >Name</th>
    After Rows
    <tr>
    <td colspan="99" class="t15afterrows">
    <span class="left">#EXTERNAL_LINK##CSV_LINK#</span>
    <table style="float:right;text-align:right;" summary="pagination">
    #PAGINATION#</table>
    </td>
    </tr>
    </table>
    *Javascript in page Header*
    <script src="#WORKSPACE_IMAGES#apex_show_hide_region.js" type="text/javascript"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    function selectRow(pJob)
    /* console.log('pete got here!'+pJob)*/
    $x('P900007_JOB').value =pJob;
    /* Start Page init*/
    function *page_init*()
    /* Used to set radio groups on reports */
    /*console.log('START pete got here!');*/
    var is_checked = false;
    var l_check = $x_FormItems($x('emp_report'), 'radio');
    /*Loop and set flag if checked*/
    for(var i=0,len=l_check.length;i<len;i++)
    if(l_check.checked){
    is_checked = true;
    /*end loop*/
    /*If none checked force a click*/
    if(!is_checked){
    /*no longer need as doing click below*/
    l_check[0].checked=true;
    /*Force a click on the first radio group - extra details should then be
    populated*/
    var l_click = l_check[0].click();
    /* console.log('END pete got here!');*/
    /*END page_init*/
    // -->
    </script>
    *Application shared component.* – This fires a DB packaged procedure when the page is loaded.
    P330_PART_NO_HIST
    Process Point On load after Body region
    Process Text show_hide_memory.part_no_history_details();
    *Packaged Procedure* – This kicks off the page_init javascript in the header (earlier) to click on the radio group in the first row.
    PROCEDURE part_no_history_details AS
    BEGIN
    htp.prn('<script type="text/javascript">' || CHR(10));
    htp.prn('<!--' || CHR(10));
    htp.prn('page_init();'|| CHR(10));
    htp.prn('//-->' || CHR(10));
    htp.prn('</script>' || CHR(10));
    END part_no_history_details;
    Thanks Pete
    Edited by: Pete @ LSC on 26-Jan-2010 06:56

    Anybody any ideas? Should I be looking down the route of using my own pagination buttons and adding my code to this?
    There seems to be a routine $a_report that I can use for the pagination but I am finding it difficult to get the current first and last record values that I would need to pass. I've seen references to below in the form but when I'm using partial refresh they do not seem to change.
    wwv_flow.g_flow_current_min_row
    wwv_flow.g_flow_current_max_rows
    wwv_flow.g_flow_current_rows_fetched
    wwv_flow.g_request
    Thanks Pete

  • Is there any way to hook my iPhone up to my iPad to' transfer pictures?

    I would like to hook my iPhone up to my iPad to transfer pictures. Is there any way to do this?

    Meg is correct. I have transferred from iPhone to iPad with the camera connection kit.
    I use the photo transfer app mostly because it requires no cables and allows transfer in any direction. iPhone, iPad and computer.

  • Is there any way to hook into the TextModel from ICompositionStyle?

    When creating a new custom attribute in IAttrReport there is the ability to hook into the ICompositionStyle interface. But I don't see any way from there to see which TextIndex it is composing. Does anyone know if it's possible?

    Anybody any ideas? Should I be looking down the route of using my own pagination buttons and adding my code to this?
    There seems to be a routine $a_report that I can use for the pagination but I am finding it difficult to get the current first and last record values that I would need to pass. I've seen references to below in the form but when I'm using partial refresh they do not seem to change.
    wwv_flow.g_flow_current_min_row
    wwv_flow.g_flow_current_max_rows
    wwv_flow.g_flow_current_rows_fetched
    wwv_flow.g_request
    Thanks Pete

  • Is there any way to hook up the iPad 2 to an external CD/DVD drive?

    I want to get my girlfriend an iPad for college, but her textbooks frequently come with CD's with supplemental learning resources. She also enjoys watching DVD's. Unfortunately, the iPad lacks a USB port, so it can't be connected to an external CD/DVD drive. Is there any workaround, such as a USB adapter that can be used with the existing iPad interface? Or is there some sort of wireless solution to be able to use an external CD/DVD drive? Knowledgeable feedback is appreciated, and please don't suggest buying a laptop, as I have already considered that. My inquiry refers strictly to my query regarding hooking up an external CD/DVD drive to the iPad 2. Thanks in advance!
    Lou

    louven23 wrote:
    please don't suggest buying a laptop, as I have already considered that.
    Ok - then since the answer to your question is NO - then you have all of ....
    Knowledgeable feedback
    that there is on the subject. There is no way to connect any device to the iPad except for a camera using the camera connection kit.

  • TS3308 is there any way to hook up a wireless air card that hooks up through a usb to a ipad

    i have a ipad 2 and i want to hook up a wireless air card to it, is it possible do they make a cable for it

    There used to be some wifi routers around with a USB port made just for these USB wireless sticks to create a personal hotspot. I don't think they really caught on since they are pretty tough to find by searching the net. I believe they need to be made specifically for this function, routers with USB ports for printers and hard drives do not work. Your other option is to plug it into a computer and create an "ad-hoc" wifi network with the computer.

  • Is there ANY way to hook up l and r rca cable to x-

    or am I looking at getting a converter?

    No offense, but 428 posts it's surprising you would ask such a question; so maybe I'm simplifying the answer too much. It should be the same quality, if that's the question. If you're looking to connect digital you need a 3.5mm (/8") mono miniplug to RCA mono converter which plugs into the digital input of your receiver. Replace mono with stereo in the previous statement if you're looking to hook up the analog outs and connect them to the external input of your receiver.

  • Is there any way to hook up to beatbox by dre bluetook to my pro?

    ?? I try and select it and it just says an "error occured cnnecting to this device"
    is the pro not capable of running this stereo via bluetooth?

    Mactracker show that you have a mini-dvi port on the 2006 iMac.  Should be able to use the mini-dvi to Hdmi adapter.
    Regards,
    Captfred
    On my late 2006 20" imac, it's the port closest to the center of the machine. (On the far right looking at the back)

  • HT3924 Is there any way to use 2010 iMac on a display from PC's HDMI or DVI port?

    Is there anykind of adapter for my problem? I would like sometimes use my PC and I would like to use 2010 iMacs display as my PC's display.

    If you your iMac is a 2009 or 2010 27" iMac then yes you can use it as an external display for your PC. Please read Target Display Mode 2009 & 2010 iMacs for additional information.

  • I just got the iPhone 5 and took it on a trip and took a bunch of photos on it. I just came home and hooked it up to my Mac for the first time and hit restore. All of my trip pictures disappeared. Is there any way I can retrieve them?

    I just got the iPhone 5 and took it on a trip and took a bunch of photos on it. I just came home and hooked it up to my Mac for the first time and hit restore. All of my trip pictures disappeared. Is there any way I can retrieve them?

    Did you by chance have photo stream turned on? If so then they might be there. When you restored your phone it deleted everything and they will be unretreivable from your computer.

  • I have my Macbook Air hooked up to a Tunderbolt Display, is there any way to either power on or wake from sleep mode using an Apple USB keyboard pluged into the Thunderbolt display?

    I have my Macbook Air hooked up to a Thunderbolt Display, is there any way to power on the Macbook Air using an Apple USB keyboard plugged into the Thunderbolt display? I would like to be able to keep the Macbook Air in the Archbook dock and not have to open it to power it on?
    Thanks for any advise.

    SadisticIron wrote:
    i just baught my first iphone and it is a jalbroken
    Buzz! Thank you for playing!
    Discussing jailbroken devices is forbidden here by the Terms of Service.
    You can not get help here.

  • Is there any way to find the serial number of an ipod touch that is no hooked up to the computer?  It was stolen and we need the number to give to the police.

    Is there any way to find the serial number of an ipod touch that is no hooked up to the computer?  It was stolen and we need the number to give to the police.

    If the product was registered, the serial number should be here, under My Products:
    https://supportprofile.apple.com/MySupportProfile.do

  • My wifes contacts just disappeared on her iphone 4s, I hooked it up to the computer and it  automatically backedit self up,is there any way to restore her contacts?

    my wifes phone lost all contacts for no apparent reason, i hooked it to itunes and it backed itself up.  When i tried to restore from back up it only offered me the back up that it just created.  Is there any way to get her contacts back?

    I have the exact same issue. All of my contacts disappeared .

  • HT201263 my iphone 4s was partially submerged in water for a period of time is there any way to pull pictures out of it? I have tried to hook up to itunes and an apple appears on the screen but does not respond

    is there any way to retrieve photos off of my phone after it was submerged in water? An apple icon appears on the screen but the phone will not respond

    Probably not.

  • I purchased an used iPod nano 4th with many many songs on it,but when i hooked the usb cable to try and change the name,something went wrong.i had to reset it,thinking my music would still be there,but i lost everything! Is there any way to get these back

    I purchased an used iPod Nano 4th.with many,many,many songs and albums on it,but when i plugged the usb cable into my laptop(i am a new comer to computer) i thought i was changing the name and thought i was syncing but something went wrong and everything was gone! is there any way possible to get these back? Please I need Help!!! Thank you!

    Was the music purchased via your iTunes account and/or did you buy it from other sources or copy it from your own CDs, or did the music belong to the previous owner ? If the music was yours then you can sync it back to the iPod via your computer's iTunes. If the music is not still on your computer then have you got a backup of it ? If not then for iTunes purchases you might be able to re-download it depending on which country you are in. If the music was put on the iPod by the previous owner then you will need to buy your own copies of it.

Maybe you are looking for

  • Adobe Acrobat 11.0.06 Crashing after scan

    Hello I am facing problems esp when using 'Create -> PDF from Scanner ' I am using Cannon MX472 multifunction printer and after it completes the scans I see the scanned pages for few brief second and then it crashes and I have to do the scan all over

  • Table in ECC

    Hi Can somebody tell the System table which Stores all the Class data i.e Methods ,Interfaces etc . Regards

  • Process Level Config in SRM 7.0 workflow

    Hi, I am implementing Process-controlled workflow in SRM 7.0 for the first time. We have identified some 5 levels of approver depending on the total shopping Cart value. 1. >= $XXX; Product Category manager (based on UNSPSC code at item level) 2. >=

  • How to Enchance Search Purchase Order function in MIGO

    Hello guys, In MIGO transaction there is a Search functionality of PO is available. But it has limited fields. Is there a way we can add more fields in this search criterion? Thanks Abhijit

  • Why does Version Conflict occur?

    Dear Experts, I made a change in my DEV box for a mpping and transported it using CTS+ to both QA and PRD. No changes were made directly in either QA or PRD boxes. I have resolved the conflict by choosing the imported version. However, I would like t