macmini便携性分享+开机无法连接蓝牙键盘应对方案(动态内含包月充电粉...

(省流总结)macmini的便携方案:
1.iPad单屏随航(需自动登录+开机自启快捷指令)
2.使用酒店支持HDMI的电视(视具体情况判断电视能否支持/是否需要自备HDMI线)
3.便携屏幕(需花钱 但省事)
4.笔记本电脑+采集卡推送(花里胡哨)
macmini开机登陆界面,如何使用之前没有绑定过的蓝牙键盘:
长按开机键直到进入安全模式——设置——更换语言——绑定蓝牙设备——重新启动
macmini开机登陆界面,需要无键盘输入密码操作的根本性解决方案:
系统设置——锁定屏幕——辅助功能选项——辅助功能键盘
单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