I do not know much about programming but have recently needed to accomplish something that requires applescript which I was able to do by googling. This is what I ended up with:
CIPAFilter is a program that communicates with the network filter at my school (I am on the faculty). However, the mac version of this program is poorly developped and it does not recognize my username unless I quit and restart the program each time I connect to the school's network.
My question is, can I set this up to automatically run each time I connect to the wireless network at the school (or any wireless network would work too as it wouldn't have any effects).
I'd even be thankful for anyone who might be able to point me in the right direction if no solution is available.
Code:
do shell script {"killall CIPAFilter"}
delay 8
tell application "CIPAFilter" to activate
CIPAFilter is a program that communicates with the network filter at my school (I am on the faculty). However, the mac version of this program is poorly developped and it does not recognize my username unless I quit and restart the program each time I connect to the school's network.
My question is, can I set this up to automatically run each time I connect to the wireless network at the school (or any wireless network would work too as it wouldn't have any effects).
I'd even be thankful for anyone who might be able to point me in the right direction if no solution is available.