Can you run airplay mirroring WITH airplay to other speakers (airports?)

I'd love to have the iTunes visualizer running on our AppleTV enabled flatscreen while running our usual output of music to several sets of remote speakers.  When I select Apple TV in the Airplay taskbar it disconnects any speakers running and vice versa.
Late 2012 MacbookPro i5 etc. Running 10.8.2  Thx

Yes, you need Mountain Lion.

Similar Messages

  • Can you run microsoft office with mavericks

    can you run microsoft office with mavericks?

    Yes if its the Microsoft office for Mac version
    Check the Microsoft packaging
    http://www.microsoft.com/uk/mac/products
    and
    http://store.apple.com/us/browse/guide/windows
    see thread
    https://discussions.apple.com/thread/5480447

  • Can you run (G550) laptop with screen closed?

    I'm thinking of using my laptop as my main machine connected ot my monitor and use input devices. However, when I tried, closing the screen automatically hibernates the laptop. Is it possible to run the laptop with the screen closed?
    Solved!
    Go to Solution.

    you can do it on every laptop
    cause there is a power option on windows operating system  that you can set it to the prefrences that you like
    for instance not to shut down or hybernate when you close the lid

  • Can you run Action Scripts with Adobe Photoshop Elements 8?

    I have Photoshop Elements 5 and i cant find the 'Action' tab. Im considering buying Elements 8 but ONLY if i know for sure if i can use action scripts with it.
    Message was edited by: Jochem van Dieten

    Elements does not include Photoshop's Actions Palette function.  You can get an add on for elements that will is able to Play some Photoshop Actions in Elements. Not all Photoshop Actions actions can be played for some action use Photoshop features that are not in Elements like Photoshop Scripting. http://help.adobe.com/en_US/PhotoshopElements/8.0/Win/Using/WS961FF412-5006-4364-B315-1576 62B1F7E9.html
    http://hiddenelements.com/
    http://www.photokaboom.com/photography/learn/Photoshop_Elements/actions/1_actions.htm

  • How can you run a command with elevated rights on a remote server with invoke-command ?

    I am trying to run a script on a remote server with invoke-command.  The script is starting and is running fine, but the problem is that it should be running with elevated rights on the remote server.  On the server where I start the invoke-command, my account has the necessary rights.
    The server were I launch the invoke-command is a W2K8 R2.  The remote box is a W2K3 with powershell v2.0 installed.
    When I launch the script on the remote-box from the command line, I don't get the access denied's.
    Is there a way to do this ?
    Thanks in advance

    The script that I want to run is to install the windows updates.  I get an access denied on the download of the updates.
    When I execute the script on an W2K8 box, (not remotely) and I run it with non-elevated rights, I get the same error.
    The script is running fine when it is launched on W2K3 box locally with a domain account that has local admin rights, or on a W2K8 R2 server with a domain account that has local admin rights, but with elevated rights.
    Thanks in advance for your help.
    #=== start script ====
    param($installOption="TESTINSTALL",$rebootOption="NOREBOOT")
    Function Show-Help
    Write-Host ""
    Write-Host "SCRIPT: $scriptName <installOption> <RebootOption>"
    Write-Host ""
    Write-Host "DESCRIPTION: Installatie van WSUS updates op de lokale server"
    Write-Host ""
    Write-Host "PARAMETERS"
    Write-Host " -installOption <[INSTALL|TESTINSTALL]>"
    Write-Host " -rebootOption <[REBOOT|NOREBOOT|REBOOT_IF_UPDATED]>"
    Write-Host ""
    Write-Host "EXAMPLE:"
    Write-Host "$ScriptName -installOption INSTALL -rebootOption REBOOT_IF_UPDATED"
    Write-Host "$ScriptNAme INSTALL NOREBOOT"
    Write-Host ""
    Write-Host "Indien beide parameter weggelaten worden zijn de defaultwaarden :"
    Write-Host " installOption=TESTINSTALL "
    Write-Host " RebootOption=NOREBOOT"
    Write-Host ""
    Exit
    #Include alle globale variablen
    $CEIF_WIN_PATH = (get-content env:CEIF_WIN_PATH)
    $includeFile=$CEIF_WIN_PATH + "\Scripts\include_win.ps1"
    . $includeFile
    #initialiseer error count
    $errcnt=0
    $scriptName=$MyInvocation.MyCommand.Name
    #argumenten controleren
    $arrInstallOption= "TESTINSTALL", "INSTALL" # Mandatory variable with predefined values
    If (!($arrInstallOption –contains $installOption)){ Show-Help }
    $arrRebootOption = "REBOOT", "NOREBOOT","REBOOT_IF_UPDATED" # Mandatory variable with predefined values
    If (!($arrRebootOption –contains $rebootOption)){ Show-Help }
    #Logfile opbouwen
    $logfile = get-logfileName($MyInvocation.MyCommand.Name)
    Log-scriptStart $MyInvocation.MyCommand.Name $logfile
    function Get-WIAStatusValue($value)
    switch -exact ($value)
    0 {"NotStarted"}
    1 {"InProgress"}
    2 {"Succeeded"}
    3 {"SucceededWithErrors"}
    4 {"Failed"}
    5 {"Aborted"}
    function boot-server()
    if ($installOption -eq "TESTINSTALL")
    logger "TESTINSTALL : - Reboot local Server" $logfile
    else
    logger " - Reboot local Server" $logfile
    $thisServer = gwmi win32_operatingsystem
    $thisServer.psbase.Scope.Options.EnablePrivileges = $true
    $thisServer.Reboot()
    $logmsg="Install option = " + $installOption + ", RebootOption = $rebootOption"
    logger "$logmsg" $logfile
    logger "" $logfile
    logger " - Creating WU COM object" $logfile
    $UpdateSession = New-Object -ComObject Microsoft.Update.Session
    $UpdateSearcher = $UpdateSession.CreateUpdateSearcher()
    logger " - Searching for Updates" $logfile
    $SearchResult = $UpdateSearcher.Search("IsAssigned=1 and IsHidden=0 and IsInstalled=0")
    logger " - Found [$($SearchResult.Updates.count)] Updates to Download and install" $logfile
    $Updates=$($SearchResult.Updates.count)
    logger "" $logfile
    foreach($Update in $SearchResult.Updates)
    if ($Update.EulaAccepted -eq 0)
    $Update.AcceptEula()
    # Add Update to Collection
    $UpdatesCollection = New-Object -ComObject Microsoft.Update.UpdateColl
    $UpdatesCollection.Add($Update) | out-null
    if ($installOption -eq "TESTINSTALL")
    else
    # Download
    logger " + Downloading Update $($Update.Title)" $logfile
    $UpdatesDownloader = $UpdateSession.CreateUpdateDownloader()
    $UpdatesDownloader.Updates = $UpdatesCollection
    $DownloadResult = $UpdatesDownloader.Download()
    $Message = " - Download {0}" -f (Get-WIAStatusValue $DownloadResult.ResultCode)
    if ($DownloadResult.ResultCode -eq 4 )
    { $errcnt = 1 }
    logger $message $logfile
    # Install
    logger " - Installing Update" $logfile
    $UpdatesInstaller = $UpdateSession.CreateUpdateInstaller()
    $UpdatesInstaller.Updates = $UpdatesCollection
    $InstallResult = $UpdatesInstaller.Install()
    $Message = " - Install {0}" -f (Get-WIAStatusValue $InstallResult.ResultCode)
    if ($InstallResult.ResultCode -eq 4 )
    { $errcnt = 1 }
    logger $message $logfile
    logger "" $logfile
    #Indien er een fout gebeurde tijdens download/installatie -> stuur mail naar windowsteam
    if ( $errcnt -gt 0 )
    logger " - Fout tijdens de uitvoering van script -> send mail" $logfile
    $mailSubject=$MyInvocation.MyCommand.Name
    $msg = new-object Net.Mail.MailMessage
    $att = new-object Net.Mail.Attachment($logfile)
    $smtp = new-object Net.Mail.SmtpClient($smtpServer)
    $msg.From = $mailFrom
    $msg.To.Add($mailTo)
    $msg.Subject = $mailSubject
    $msg.Body = “Meer details in attachement”
    $msg.Attachments.Add($att)
    $smtp.Send($msg)
    #Moet de server herstart worden ?
    if ($rebootOption -eq "REBOOT_IF_UPDATED" )
    if ($Updates -gt 0)
    #Reboot the server when updates are installed
    boot-server
    elseif ($rebootOption -eq "REBOOT")
    #reboot the server always
    boot-server
    else
    #Do not reboot the server
    logger "Do not reboot the server" $logfile
    Log-scriptEnd $MyInvocation.MyCommand.Name $logfile
    exit 0

  • Can you do visual mirroring with an ipad 2 wirelessly?

    Is there a way to do this wirelessly yet?
    Are there particular projectors spec'd to do this?

    Possible, but not fun.
    Check it out:
    http://www.tuaw.com/2011/03/29/video-extender-powers-ipad-2-wireless-projection- hack-the-strea/
    Basically, you're doubling the weight of the iPad.  This is definitely a science project at this time.  I'm sure someone will come up with a much sleeker option, but if you really need it now, this is the path you're looking at.

  • Can you share a harddrive with Itunes and other music applications.

    So here's my issue....
    I have been using PCDJ FX on a Windows based laptop for quite a few years.
    So what I would like to do is basically beable to take my harddrive and plug it into my desktop and have Itunes use that music disk and then unplug it and put it on my DJ system.
    now the issue is there is kind of a process to get the music ready for PCDJ which consists of:
    rip the music to my HD
    Run MP3Gain to set the Gain.
    load it into a temp folder on my harddrive
    bring up PCDJ to do the BPM scan to set the Beats per minute.
    once this is all done I then go and place the music into it's proper folders such as Bass/breakbeats/bassnectar or 70's Rock/led Zepplin.
    the problem that I found is after I do that if I take that harddrive back to Itunes it doesn't realize the new music is there.
    is there a way to refresh and scan the folder for the new stuff so Itunes knows it's there???
    John

    wow I stumped the all mighty Apple Discussion group????

  • Can you do AirPlay Mirroring with the Apple Ipad 1 with the Apple tv

    can you do AirPlay Mirroring with the Apple Ipad 1 with the Apple tv because in the video for the ios 5 it says that the ipad 2 can do it but i have a Ipad 1 and i was wondering wither you could do it with ipad 1 aswell, if yes i will buy the apple tv 

    Wow, please use a smaller font next time!!
    Original iPad does not provide mirroring.  iPad 2 does.....

  • HT4437 Can you use airplay to stream from an iPad to a TV with a network connection without internet access

    Can you use airplay to stream from an iPad to a TV with a network connection without internet access

    Yes, you can use a network storage device for the storage of your content and use it on the Apple TV, but only as part of your iTunes library. So if your question is whether or not you can do this without using your computer or iTunes the answer is no.

  • I have a 2006 iMac running Lion 10.75. can I run Airplay Mirroring on this machine

    I have a 2006 iMac running Lion 10.75. can I run Airplay Mirroring on this machine

    The problem I'm facing is that I cannot make any changes to anything because my home folder is no longer found.  I can't even reset it to boot from something other than the installed OS (OS X 10.6.80.  Is there any solution to this problem?  I have made a USB drive bootable but cannot get the machine to boot off of that either.  I am at my wits end.  Please help!

  • Can you run Adobe Photoshop CS version 8 on Yosemite?

    Can you run Adobe Photoshop CS version 8 on Yosemite?

    Well if you want permanent license Adobe software, here is the price list for the CS6 catalog .  Creative Suite 6
    Just know that with the exception of Adobe Camera Raw updates, CS6 will have maintenance updates, but not the features of CC 2014.
    The rental model called Creative Cloud means you will have the software installed on your Mac and you can work with your files as before, it's just that activation depends on a $50 monthly fee. Upgrades are piped in at no further cost, and you have the freedom to switch platforms and interface languages. You activate on up to two computers, PC, Mac or mixed. 20 GB online storage for collaboration, and you can also store and sync your settings and custom presets. Typekit if you'd like to try new and difference fonts.
    Look at it this way, it's not a big deal if you are in business. You rent many things and this is probably not your largest monthly expense.
    Gene

  • Can I run 2 monitor with one of the monitor having Full Screen for Elgato Eye TV?

    My mac mini has Elgato 'Eye TV' software that runs in 'Full Screen'.  I want to keep this setting & also connect another monitor to the macmini & use other Appilications on the other monitor?  Can I run 2 monitor with one of the monitor having Full Screen for Elgato Eye TV?
    My early 2009 macmini can run Mac OS 10.5, 10.6, 10.7 & 10.8

    Yes, run one from HDMI and the other from Thunderbolt/minidisplayport sockets. In EyeTV Preferences check the screen you want for full screen use and make sure your Dock is on the other one.

  • Can you use nike+  sensor with iPhone 5

    can you use nike+ sensor with iPhone 5. like the device you place in your shoe. Can it be connected to your phone.

    However, you don't need the sensor if you use the Nike+ Running app. It uses the phone's built in accelerometer.

  • Can you run labview on Windows Tablet PC Edition?

    Can you run labview on Windows Tablet PC Edition?...or does LabVIEW executable and Run-time engine operate with this OS?

    LabVIEW 7.x will run without any problems on a Windows Tablet PC with SP1. There have been documented issues with Windows XP SP2 and LabVIEW subsequently not exiting properly--LabVIEW's window closes but somehow it is still present in the task manager.
    Hope this helps.

  • Can you run two separate vi's in parallel

    Can you run two seperate Vi's in parallel? Will this make response considerably slower? 
    Solved!
    Go to Solution.

    eugeniap wrote:
    Hi, what more detail is needed? They are two entirely seperate independent vi's with no shared sub vis.
    I just wanted to know if you can run two independent vi's at the same time, as in just have two seperate programs and run them.
    Separate isn't the same as independent.  That's why they wanted more information. 
    Your second question asked about slowed response.  That's another place you didn't offer anywhere near enough information for a true answer.  How many loops are you running in each of these independent VIs?  How many cores does your processor have?  Are you including a 0ms wait in your loops to avoid railing your processor?
    It's possible you'll see such a negligible change in processing that you won't notice.  It's also possible you'll feel like you're draining your system.  It's generally best to err on the side of too many details rather than too few when you're asking questions.  If you don't know the answer, you likely don't know how each piece plays a part in the answer.  More information allows others to pick out the relevant pieces and give you a better answer.

Maybe you are looking for

  • Multiple instances of a subVi to display data

    What is the best method for creating and using a subVi that was created specifically for displaying results? I created a subVi for displaying stress (tension & compression). I started with a Numeric Control/Vertical Pointer Slider which I changed to

  • My kid has "hacked" my AEBS security....HELP please!

    I don' know how to set up RADIUS on my Airport Extreme, so implemented access control via MAC address of my teen's ipod touch, macbook pro and Xbox. But after the briefest of technical conversations with him about MAC address cloning, he's gone off a

  • IPod stops after 2 minutes of playing, consistantly

    this is the first Apple product I can truly say I am disappointed in. Brand new user, I have used up my one call and now I have a product that I have to talk outsiders to get help with a manufacturers product? I use that iPod for assissting going to

  • Do NOT use text.autoSize onEnterFrame or any other loops!!

    do NOT use test.autoSize = true - with onEnterFrame or any other loops!! - it kills the processor i just found out the other day why my movieclip scrollers and dynamic menus have been laggin so much sins the dawn of time -- its all because of text.au

  • Loading videos into Itunes

    I have some video files that are not in a quick time format, so i wanted to use the convert selection to ipod feature, but whenever i try add the file to itunes it doesnt show up. Is there any way to do this or why doesnt it work? thanks, appreciated