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 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