macmini便攜性分享+開機無法連接藍牙鍵盤應對方案(動態(tài)內(nèi)含包月充電粉...

(省流總結)macmini的便攜方案:
1.iPad單屏隨航(需自動登錄+開機自啟快捷指令)
2.使用酒店支持HDMI的電視(視具體情況判斷電視能否支持/是否需要自備HDMI線)
3.便攜屏幕(需花錢 但省事)
4.筆記本電腦+采集卡推送(花里胡哨)
macmini開機登陸界面,如何使用之前沒有綁定過的藍牙鍵盤:
長按開機鍵直到進入安全模式——設置——更換語言——綁定藍牙設備——重新啟動
macmini開機登陸界面,需要無鍵盤輸入密碼操作的根本性解決方案:
系統(tǒng)設置——鎖定屏幕——輔助功能選項——輔助功能鍵盤
單iPad的用戶使用代碼
(直接復制,不需要修改)
主語言為簡體中文的用戶:
set counter to 0 set x to 0 beep 1 repeat while counter = 0 and x < 5 tell application "System Settings" activate delay 1 tell application "System Events" tell process "System Settings" click menu item "顯示器" of menu "顯示" of menu bar item "顯示" of menu bar 1 delay 0.5 tell group 1 of group 2 of splitter group 1 of group 1 of window "顯示器" try click pop up button 1 delay 0.6 if (menu item "連接鍵盤和鼠標至" of menu 1 of pop up button 1) exists then click menu item 5 of menu 1 of pop up button 1 else click menu item 2 of menu 1 of pop up button 1 end if say "iPad Connecting" set counter to 1 on error if x = 0 then say "Sorry,Try again" set x to x + 1 delay 2 end try end tell end tell end tell end tell end repeat if x = 5 then say "there are some errors" end if
主體語言為繁體中文的用戶:
set counter to 0 set x to 0 beep 1 repeat while counter = 0 and x < 5 tell application "System Settings" activate delay 1 tell application "System Events" tell process "System Settings" click menu item "顯示器" of menu "顯示方式" of menu bar item "顯示方式" of menu bar 1 delay 0.5 tell group 1 of group 2 of splitter group 1 of group 1 of window "顯示器" try click pop up button 1 delay 0.6 if (menu item "將鍵盤和滑鼠連結到" of menu 1 of pop up button 1) exists then click menu item 5 of menu 1 of pop up button 1 else click menu item 2 of menu 1 of pop up button 1 end if say "iPad Connecting" set counter to 1 on error if x = 0 then say "Sorry,Try again" set x to x + 1 delay 2 end try end tell end tell end tell end tell end repeat if x = 5 then say "there are some errors" end if