+ Replica alla discussione
Mostra risultati 1 a 3 di 3
  1. #1
    'zzo Guardi? marco_alza avatar
    Iscritto
    11-04
    Luogo
    Milano
    Messaggi
    4.702

    Aiuto AppleScript per status iChat

    Chiedo un piccolo aiuto a chi conosce un po' AppleScript.

    Ho trovato un comodo AS per cambiare in modo semplice lo status

    set userInput to display dialog "What Status?" default answer "" with icon note
    set msg to text returned of userInput
    tell application "iChat"
    set status message to msg
    end tell

    on handle_string(input)

    tell application "iChat"
    set status message to input
    end tell

    end handle_string

    Mi fa apparire una finestra in cui dico cosa scrivere nello status.
    Ma mi farebbe comodo se ci fosse l'ultimo status scritto e non una finestra vuota. E' fattibile?

    Grazie per chi mi risponde

  2. #2
    Think Mitola. apo758 avatar
    Iscritto
    02-06
    Messaggi
    8.214
    Prova questo.

    Codice:
    tell application "iChat"
    	set oldStatus to status message
    end tell
    
    set userInput to display dialog "What Status?" default answer oldStatus with icon note
    set msg to text returned of userInput
    tell application "iChat"
    	set status message to msg
    end tell
    
    on handle_string(input)
    	
    	tell application "iChat"
    		set status message to input
    	end tell
    	
    end handle_string
    

  3. #3
    'zzo Guardi? marco_alza avatar
    Iscritto
    11-04
    Luogo
    Milano
    Messaggi
    4.702
    Grazieeee!!!

Discussioni simili

  1. Aiuto AppleScript (pivello)
    By jeby in forum Programmazione
    Risposte: 8
    Ultimo messaggio: 05-06-11, 14:05
  2. applescript e textedit: replace AIUTO!
    By sting in forum Programmazione
    Risposte: 0
    Ultimo messaggio: 06-01-07, 13:47
  3. Shipment Status?
    By DR1 in forum Applestore e acquisti online
    Risposte: 0
    Ultimo messaggio: 18-12-06, 15:46
  4. Aiuto AppleScript (pivello)
    By jeby in forum Programmazione
    Risposte: 3
    Ultimo messaggio: 05-07-06, 07:45
  5. AIUTO!!!!!!! AppleScript!
    By giangiboy in forum Parliamo di Mac e dintorni
    Risposte: 5
    Ultimo messaggio: 22-02-05, 08:03

Regole messaggi

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts