Sto provando a creare un oggetto Applescript che cambierà automaticamente l'indirizzo MAC del mio router. Alcuni campi devono essere numeri pari, ma non riesco a capire come generare solo numeri pari. Ecco cosa ho finora ..
set rand1 to (random number from 10 to 98) as string
set rand2 to (random number from 10 to 98) as string
set rand3 to (random number from 10 to 98) as string
set rand4 to (random number from 10 to 98) as string
tell application "Safari"
activate
open location "router-address/WanMAC.asp"
tell application "System Events"
delay 1
keystroke "login"
keystroke tab
keystroke "password"
delay 1
keystroke return
delay 1
keystroke tab
keystroke rand1
keystroke tab
keystroke rand2
keystroke tab
keystroke rand3
keystroke tab
keystroke rand4
submit via javascript?
end tell
end tell
Abbastanza rudimentale lo so. Ma l'idea di base è quella di inserire le credenziali di accesso, la scheda nei campi del modulo che devono essere modificati, inserire un indirizzo MAC valido e quindi inviare il modulo. Qualcuno può aiutare? Grazie.