Bonjour,
J'ai créé une application via Automator que j'ai glissé dans ouverture lors de la session, hors celle-ci ne se lance pas, qu'est ce que rate ?
Merci de votre aide.
Voilà le script de mon app.
on run {input, parameters}
tell application "Finder"
open location "cifs://utilisateur:mdp@Server/Archives"
end tell
tell application "Finder"
open location "cifs://utilisateur:mdp@Server/Partage"
end tell
tell application "Finder"
open location "cifs://utilisateur:mdp@Server/Serie"
end tell
tell application "Finder"
open location "cifs://utilisateur:mdp@Server/Film"
end tell
delay 1
tell application "Finder"
if (exists window "Archives") then
close window "Archives"
end if
end tell
tell application "Finder"
if (exists window "Film") then
close window "Film"
end if
end tell
tell application "Finder"
if (exists window "Partage") then
close window "Partage"
end if
end tell
tell application "Finder"
if (exists window "Serie") then
close window "Serie"
end if
end tell
return input
end run
J'ai créé une application via Automator que j'ai glissé dans ouverture lors de la session, hors celle-ci ne se lance pas, qu'est ce que rate ?
Merci de votre aide.
Voilà le script de mon app.
on run {input, parameters}
tell application "Finder"
open location "cifs://utilisateur:mdp@Server/Archives"
end tell
tell application "Finder"
open location "cifs://utilisateur:mdp@Server/Partage"
end tell
tell application "Finder"
open location "cifs://utilisateur:mdp@Server/Serie"
end tell
tell application "Finder"
open location "cifs://utilisateur:mdp@Server/Film"
end tell
delay 1
tell application "Finder"
if (exists window "Archives") then
close window "Archives"
end if
end tell
tell application "Finder"
if (exists window "Film") then
close window "Film"
end if
end tell
tell application "Finder"
if (exists window "Partage") then
close window "Partage"
end if
end tell
tell application "Finder"
if (exists window "Serie") then
close window "Serie"
end if
end tell
return input
end run