Vous pourriez écrire une application qui prendrait vos données. Enregistré l'entrée. Faire en sorte que le projecteur fasse une recherche. Vous auriez toujours à exécuter cette application pour que votre entrée soit enregistrée.
J'ai écrit cet applescript pour faire le travail. Comment lancer cette application.
https://www.youtube.com/watch?v=tysKhdpYorE
on run
set spotLightInput to the text returned of (display dialog "What is spotlight input?" default answer "")
log "spotLightInputis " & spotLightInput
-- write a log file of the query to the user's home folder with name translation.txt
set unixActualInput to "echo " & (quoted form of spotLightInput) & " >>~/translation.txt"
log "unixActualInput is " & unixActualInput
try
set fromUnix to do shell script unixActualInput
log "fromUnix is " & fromUnix
on error errMsg number n
log "run spotlight..." & errMsg & " with number " & n
end try
tell application "System Events"
keystroke space using {command down}
end tell
log "delaying for spotlight to appear"
delay 2
log "typing..."
tell application "System Events"
keystroke spotLightInput
delay 1
keystroke return
end tell
end run