HT4124 How do I get my volume to play through the tv, when the Hdmi is plugged in?

How do I get the volume to play through the TV and not my MacBook Pro, when a HDMI cable is being used?

I don't think the Mac routes sound through HDMI, or else it's a TV issue.
Use a stereo mini to RCA breakout cable.

Similar Messages

  • In Acrobat, I wrote a script to turn fields gray if a checkbox was checked. How can I get it to reset to white (or clear) when the reset form button is clicked?

    In Acrobat, I wrote a script to turn fields gray if a checkbox was checked. How can I get it to reset to white (or clear) when the reset form button is clicked?

    Thank you so much for your reply . . . but . . . I should have shared my original script with you -- it was a little more complicated than I led you to believer. I was triggering a group of text fields to become disabled as well as gray. Below is the original script so that when the checkbox is checked, it causes several "Co" fields to be disabled and gray.
    // Mouse Up script for check box 
    // If checked, certain fields should be disabled 
    var f_prefix = "Co"; 
    // Get a reference to all of the "Co" fields 
    var f = getField(f_prefix); 
    // Reset the Co fields 
    resetForm([f_prefix]); 
    if (event.target.value === "Off") { 
        // Enable the Co fields 
        f.readonly = false; 
        f.fillColor = color.transparent; 
    } else { 
        // Disable the Co fields 
        f.readonly = true; 
        f.fillColor = color.gray; 
    To recap -- my goal is to get those gray fields to revert to transparent if the form is reset. I'm willing to create my own custom "Reset Form" button but I'm not sure I understand how that would look. Wouldn't it be quite lengthy? I think I'm having a brain freeze -- can't figure it out!

  • How do I get my old Itunes on my new computer when the old one is broken?

    Hi. I have got a new computer because my old one broke down. How do I get everything that I have already bought on Itunes on the new one?

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • How do i get avi's to play in quick look and the preview bar?

    I have a MBP and i was wondering if i can get finder/Quicklook to play AVI's im pretty sure my old MB did it find but my MBP wont?
    Any ideas?
    cheers,
    Sam

    Hello again
    To the best of my knowledge, here is how it works. If you
    have selected a preloader (meaning a SWF file and NOT a "Loading
    screen" - there are two types) You will notice a progress indicator
    of sorts. Normally you see it count up to 60% and the project
    begins to play. What this is designed to accomplish is that the end
    user would never encounter a wait for things to buffer, play a
    little, wait, play a little, and so on.
    So with a preloader, 60% of the project is received from the
    server before the playhead is released and begins to play. The
    thought behind this is that with a linear movie that plays from
    start to finish, by the time the playhead would ever reach the end
    of that 60% part, the remaining 40% will have downloaded and the
    user will never encounter a pause.
    As I understand it, the loading screen (static image) is used
    when you insert a Captivate in a PDF. It serves as an indication
    something is present and must be clicked to play it. I'm sure there
    are other uses as well.
    Cheers... Rick

  • How do i get my navbar to stay on one line when the browser window is minimized?

    I am new to coding and have just created my first website in html and css.  I know that the coding is pretty dire and that I have a lot to learn and hope that someone can guide me in how to solve this problem.  When the browser window is minimized, the navbar breaks down into 2 or 3 lines but I want the navbar to fit to the window whatever the size of the client machine.
    I think I need to add a media query but i'm not sure if i do and if so what code to use and where to put it?
    I am worried that the page will only be viewable properly on a desktop and i really want to learn how to make a fluid layout which can be viewed on 320px, 768px and 1200px.
    Any guidance would be greatly appreciated.
    Here is my code:
    HTML
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>The Engineer's Corset</title>
    <link href="styles/style.css" rel="stylesheet" type="text/css" media="screen">
    <style type="text/css">
    body {
        background-color: #000;
    </style>
    </head>
    <body>
    <div id="container">
    <div id="navbar">
        <ul id="nav">
        <li><span class="current-menu-item">Home</span></li>
        <li><a href="about.html">About Us</a></li>
        <li><a href="workshops.html">Workshops</a></li>
        <li><a href="news.html">News</a></li>
        <li><a href="gallery.html">Gallery</a></li>
        <li><a href="contact.html">Contact Us</a></li>
        </ul>
    </div>
    <div id="header">
      <img src="images/final/headerbeauty3.png" width="1100" height="341" alt="The Engineer's Corset">
    </div>
    <div id="links">
    <ul id="link">
    <li><a href="https://www.facebook.com/Bristolengineer" target="_blank"><img src="images/final/fb3.png" width="200" height="45" alt="Follow Us on Facebook"></li>
    <li><a href="https://twitter.com/Engineerscorset" target="_blank"><img src="images/final/twitter2.jpg" width="200" height="45" alt="Follow us on Twitter"></a></li>
    </ul>
    </div>
    <div class="chantry">
    <img src="images/final/CD Logo fin.png" width="240" height="200" alt="Chantry Dance Company">
    </div>
    <div class="about">
      <p> The Engineer's Corset is a new play written by Janet Goddard for performance by the community of Bristol in 2015. <br>  ~ <br>
    The play is based on the extraordinary real-life events of 1843 surrounding Isambard Kingdom Brunel's near-death experience after swallowing a coin.  We travel through time to explore the adventure and horror of Victorian industrialisation. <br> ~ <br> Using a community theatre group The Engineer’s Corset tells a familiar tale of Brunel’s near death experience when he swallows a gold half sovereign. His wife Mary fights to maintain her composure but is ripped apart by the waiting game. Her servants and his workforce, using dance and sound, broaden her horizons. Just like Mary the audience too will see life in the 1840s through a different lens.</p>
    </div>
    <div class="workshops">
    <img src="images/final/bridgebridge.jpg" width="1100" height="713" alt="clifton suspension bridge">
    <span><a href="workshops.html">We will be running a series of workshops prior to production and hope you will join us.  For further information, click here.</a></span>
    </div>
    <div id="sponsorspace"></div>
    <div id="footer"> <p> &copy; Heartprints Web Design 2014 </p> </div>
    </div>
    </body>
    </html>
    CSS
    @charset "utf-8";
    /* CSS Document */
    body {
        font-family:Arial, Helvetica, sans-serif;
        font-size:125%;
    @media screen {
        #navbar:
    #navbar li {
        font: 25px Arial;
        display: inline;
        list-style-type: none;
        background: #09F;
        color: #000;
        border-radius: 20px;
        padding: 15px 25px;
    .current-menu-item {
        color: #0FF;
    #navbar a {
        padding: 15px 25px;
        background-color: #6cf;
        color: #000;
        text-decoration: none;
        border-radius: 20px;
    #navbar a:hover {
        background-color:#0FF;
        color: #000;
        padding: 15px 25px;
    #header {
        width: 1100px;
        height: 340px;
        margin-left: 50px;
        margin-top: 0px;
        margin-bottom: 0px;
        border-style: ridge;
        border-width: 5px;
        border-color:#09F;
    #links li {
        display: inline;
        width: 700px;
        margin-left: 300px;
    .chantry {
        margin-left: 40px;
    .about {
        position: relative;
        width: 860px;
        text-align:center;
        background-color: #CCC;
        color: #000;
        border-style: ridge;
        border-width: 3px;
        border-color:#09F;
        border-radius: 15px;
        float: right;
        margin-top: -200px;
        margin-right: 90px;
    .workshops{
        position:relative;
        width: 1100px;
        height: 713px;
        font-size:24px;
        margin-left: 50px;
        border-style: ridge;
        border-width: 5px;
        border-color:#09F;
        margin-top: 130px;
    .workshops span {
        position: absolute;
        background: #6CF;
        color: #000;
        left: 30px;
        top: 30px;
        right: 800px;
        padding: 15px;
        font: 1em georgia, serif;
        font-style:italic;
        text-align:center;
        border: 5px solid #09F;
        border-radius: 20px;
        margin-top: 35px;
    .workshops span a {
        color: #000;
    #link li {
        border-style: solid;
        border-color: #6CF;
        padding: 30px 10px 5px 10px;
    .info {
        text-align:center;
        width: 1100px;
        margin-top: 50px;
        margin-bottom: 50px;
    .CDC {
        float: left;
        margin-right: 50px;
        margin-left: 45px;
    .workshopinfo {
        height: 250px;
        text-align:center;
        margin-top: 50px;
    .photos {
        Height: 500px;
        text-align:center;
        margin-top: 50px;
    #footer {
        text-align:center;
        margin-top: 700px;
        color:#0CF;
    .brunel {
        margin-top: 50px;
        margin-left: 400px;
    #workshops2{
        width: 1000px;
        border-style: outset;
        border-width: 5px;
        padding: 15px;
        border-color:#09F;
        background-color: #6CF;
        margin-left: 100px;
        text-align:center;
    #workshops2 a {
        color: #000;
    #sponsorspace {
        height:  300px;
        background-color: #6CF;
        border-style: outset;
        border-color: #09f;
        margin-top: 15px;

    Give #navbar a width that is wide enough to hold all of the buttons within it.
    #navbar {
         width:####px;
    Replace #### with a pixel number large enough to hold the nav buttons.

  • How do i get my ipod to play through the beats audio on my HP TS 17?

    My ipod will not play through the built in beats speakers. HP Envy TS 17, what do I need to do?

    Hi,
    How do you connect your iPod to your computer ? Please use the following instructions:
         http://ipod.about.com/od/tes1/a/manually-manage.htm
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How can I get my iPod to play through the 30 pin connector?

    I bought an 30 pin to 8 pin adapter. I plugged it into my iPod and plugged it into the sound system (new Yamaha MCR -049). The scene says "unknown iPod" and will not play music (it comtinues to play through the iPod's speaker) and it does not indicate that the iPod is charging. What am I doing wrong?

    Is a lightning adapter the same as 8 pin ? The manufacurer says this stereo says this only works with iPod 5 (mine is) and the only way to connect is an adapter. I bought an after market brand instead of Apple branded.  I think I have a bad adapter. I'll buy a 39 pin to lightning adapter. I think that's the only way I can figure put if the dock works.

  • How can i get my iphone to play through the speaker in my car

    i have a wire that go's into the headphonething on the iphone
    then the other end go's into the car put it plays through the iphone speaker do i need to buy a different wire or something plz help
    by the way it work with my ipod

    Is the jack not fitting into the top of the iPhone?
    If so then you would need this adapter for it to fit properly.
    http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wa/RSLID?mco=3DB 4EB78&fnode=home/shopiphone/iphone_accessories/cablesdocks&nplm=TN546LL/A

  • How do i get a dvd to play through my apple tv?

    The tv will mirror everything my macbook does except play the dvd.  as soon as i hit play, both screens turn to a checker board that is gray and white.  if i turn off the apple tv the dvd plays fine on the screen of my macbook. any ideas?

    DVD playback by over AirPlay is blocked, There are other applications that have been reported as not blocking AirPlay, such as VLC.

  • How can i get my Nano to play through all albums/playlists automatically?

    I like to walk for an hour/ hour and a half each day, and would love to know if somehow i can start playing 1 album or playlist, and have the Nano automatically play through the remaining albums/playlists so i don't have to manually start playing an album again each time one finishes???
    I have only had my Nano 3 days, so forgive me if this is a simple question.
    Thanks!!
    iBook G3   Mac OS X (10.4.3)  

    Found my answer in a previous post.
    Thanks.

  • Is there any way to get my alarm to play through my 35mm audio jack that's plugged into my speakers

    JJust wondering if it's possible

    In theory, if headphones are plugged in then the sound should go there.
    35MM I believe is also known a 1/4 inch. Adapters from 3mm to 35mm (which should be headphone to 1/4 inch) are common. You can look online or many stores sell them. (If you have or still have a Radio Shack they should have it)

  • How do I get iTunes to keep playing (radio) when I am not using the compute

    How do I get iTunes to keep playing - radio or CD - when the computer is otherwise idle? It cuts off after about 5 minutes and goes into sleep mode. thanks,
    Vlasta

    Hey vlasta4444,
    It sounds like you'll want to change the time it takes for the computer to goto sleep from System Preferences> Energy Saver.
    http://docs.info.apple.com/article.html?path=Mac/10.5/en/10330.html
    Jason

  • How do i get my ipad to play on my apple tv

    how do i get my ipad to play on my apple tv

    On the AppleTV, Settings > AirPlay.
    On the iPad, play something then tap the AirPlay button next to the volume slider and select the AppleTV..

  • How do I get more volume when watching a movie and can I use headphones?

    How do I get more volume when watching a movie? And can I also use headphones?

    Many governments now limit how loud headphones can go. Europe has been plagued with this for many years. Separate amplifiers are available.  
    I believe volumes should be kept at reasonable levels to avoid hearing loss, but it's not the governments job to protect me.
    I prefer Beyerdynamic over Bose Headphones. (They spend a lot less money on advertising.)
    http://www.amazon.com/beyerdynamic-DT770-PRO-250-ohm/dp/B0006NL5SM/ref=sr_1_1?s= electronics&ie=UTF8&qid=1308969660&sr=1-1

  • How do I get my volume to work on the 4s

    How do i get my volume to work again on my 4s it just stopped

    Without more information on your problem all I can suggest is:
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    iOS: How to back up your data and set up as a new device
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

Maybe you are looking for

  • Error at the time of PR creation

    I am facing a Error at the time of PR creation:- Status "Material Inactive" of material 30001668 does not allow external procurement Message no. ME053 how to active the material.

  • Mac OS Extended

    I am setting up a RAID5 4disk raid and have bought 4 seagate 1.5tb hard drives for the raid unit. I erased the disks (in the raid unit) to use them on Mac OS but the top disk image in disk utilities is showing up as Mac OS Extended (journaled) wherea

  • Multiple Sites, Multiple Domains, one .mac account?

    So, is this possible? Can you create multiple sites in iWeb, save them to a .mac account, and then purchase domain names for each of those sites and have one assigned to each? I'm assuming no, but I'm seeing if someone knows how or someone has some w

  • Exporting XAVC 2k files from premiere

    Hello All, Any help/feedback would be much appreciated. Shot on Sony F5: XAVC 2K format Import into Premiere and can edit no problem. But to export original resolution...I have tried checking the MATCH sequence box and end up with footage that is not

  • MAKE BUTTON CONDITIONAL DISPLAY IN A REPORT BASED ON STATUS OF COL VALUE

    hello, can anyone help me out with this issue. Like I have a normal SQL report with buttons update,delete,insert and I wanted to display these buttons conditionally based on the value of the "status" column. For Example: if the status columnvalue is