OSA Menu | L'enregistrement d'un script | Les Compléments de pilotages | Configurer le sélecteur d'application | Réception manuelle de Fax avec FaxSTF 5.0 | Changer le type et et le créateur d'un fichier
Il est possible de modifier l'apparence de la palette du sélecteur d'application grâce à Apple script :
exemples de présentation :
il faut écrire le script suivant avec l'éditeur de script
-----------------
tell application "Sélecteur d'application"
--mettre ici les réglages comme expliqué ci dessous.
end tell
------------------
les différentes propriétés et leurs valeurs respectives sont :
exemple : set the visible of the palette to true
exemple : set the position of the palette to lower left
exemple : set the frame visible of the palette to false
exemple : set the button ordering of the palette to launch order
exemple : set the position of the palette to {65, 450}
set the cycling keystroke to {key:tab key, modifiers:{command down}} --> réglage par défaut
set the cycling keystroke to {key:"a", modifiers:{option down}}
set the cycling keystroke to {key:"8", modifiers:{command down, option down}}
avec :
key : n'importe quel caractère ou les touches suivantes : escape key/delete key/tab key/return key/clear key/enter key/up arrow key/down arrow key/left arrow key/right arrow key/help key/home key/page up key/page down key/forward del key/end key/F1 key/F2 key/F3 key/F4 key/F5 key/F6 key/F7 key/F8 key/F9 key/...
modifiers : option down/command down/control down/caps lock down
exemple de script :
au premier lancement le script demande ou se trouve l'application "Sélecteur d'application", il faut aller la chercher dans le dossier extension du dossier système
tell application "Sélecteur d'application" set the visible of the palette to true set the icon size of the palette to small set the constraint of the palette to none set the names visible of the palette to false set the name width of the palette to 0 set the frame visible of the palette to false set the orientation of the palette to horizontal set the anchor point of the palette to lower right set the button ordering of the palette to launch order set the position of the palette to lower left set the cycling keystroke to {key:tab key, modifiers:{command down}} end tell