Jump to content

freakmac5

Member
  • Posts

    6
  • Joined

  • Last visited

freakmac5's Achievements

Helping Hand

Helping Hand (3/5)

0

Reputation

  1. Hi Andrew, thank you very much. After the Update everthing works perfektly.
  2. The issue also wont dissapear if you rebuy the App from the App Store. I just tried.
  3. I was trying to say, that I did exactly what you told me to do, several times. But it just won't work... The only Mac I can connect with, after I have added both, is the one I set up first. When trying to switch to the other, the screen always reads 'disconnected'... Even if I reboot my Phone, I still can only connect to one Mac, namely the I connected first with. Same with iPad.
  4. Hi, at the momnet my iPhone is connected to the MacBook an d my iPad is connected to the iMac. I rebooted my iPad and was able to connect it with the MacBook too, I also was able to add the iPad to the iMac, but after switching back to the MacBook I couldn't reconnect with the iMac. I rebooted the iPad again an connected it at first with the iMac and afterwards with the MacBook. But after switching to the iMac, I could not reconnect with the MacBook. Same on the iPhone. After adding the remote to the computer, it works fantastic as long as I don't switch.
  5. Hello, I have an iMac (Early 2014) and a MacBook (late 2008 - the last white one). Now I habe some problems with my Remote. It looks like, I only can use my iMac with the Remote. The Remote Server is enabled on both Macs and I can add my iOS devices (iPad Air and iPhone 4) without any problems, but if I will change the connected Mac on the iOS device, I only get an connection to the Mac the Remote device was connected too first. If I want to conntect to the other Mac, I'll get the message "Disconnected - Unable to verify receipt, please re-download Alfred Remote from App Store" If I delete the Alfred Remote and download it again from the App Store, I can add the iOS device again to both Macs without any problems, but I can only use it with the Mac, which was added first. Trying to connect to the second Mac will cause the message shown above. Do I have to use/buy a family license? I'm a little bit confused. Thanks for the help.
  6. Hello, I'm a freshman, but i made a small workflow, especially an applescript which allows you to shut down or restart your computer. Thats not really a big thing, but the script quits all apps before shutting down so that no app is reopened after restart. Additional the script ejects one or all mounted HDs. I need this small section in the script, because my mac wouldn't shut down if one special external HD is mounted while shutting down. I made three workflows/scripts, the first one only shuts down, the second makes a restart and the third combines both, all with the additional functions I mentioned at the beginning. I hope you can use it Only the shut down-script: display dialog "Your mac will shut down in 5 seconds!" with title "shut down" giving up after 5 tell application "System Events" to set quitapps to name of every application process whose visible is true and name is not "Finder" and name is not "Alfred" repeat with closeall in quitapps quit application closeall end repeat tell application "Finder" if (exists disk "Bildmaterial") then tell application "Finder" eject disk "Bildmaterial" end tell else shut down end if shut down end tell -> download the workflow Only the restart-script: display dialog "Your mac will restart in 5 seconds!" with title "restart" giving up after 5 tell application "System Events" to set quitapps to name of every application process whose visible is true and name is not "Finder" and name is not "Alfred" repeat with closeall in quitapps quit application closeall end repeat tell application "Finder" if (exists disk "Bildmaterial") then tell application "Finder" eject disk "Bildmaterial" end tell else restart end if restart end tell -> download the workflow One for all - shut down/restart: display dialog "Your mac will shut down in 5 seconds!" with title "shut down" buttons {"cancel", "restart", "shut down"} default button 3 giving up after 5 set button_pressed to the button returned of the result tell application "System Events" to set quitapps to name of every application process whose visible is true and name is not "Finder" and name is not "Alfred" repeat with closeall in quitapps quit application closeall end repeat if button_pressed is "shut down" then tell application "Finder" if (exists disk "Bildmaterial") then tell application "Finder" eject disk "Bildmaterial" end tell else shut down end if shut down end tell else if button_pressed is "restart" then tell application "Finder" if (exists disk "Bildmaterial") then tell application "Finder" eject disk "Bildmaterial" end tell else restart end if restart end tell end if tell application "Finder" if (exists disk "Bildmaterial") then tell application "Finder" eject disk "Bildmaterial" end tell else shut down end if shut down end tell -> download the complete workflow
×
×
  • Create New...