Great tutorial! Exactly what I was looking for. Also great pace and voice. Appreciate that you explained the very starting points of writing a script, and also ways to run it after the script was created. cheers
This reminds of years ago writing simple dBase programs on a PC before Windows. You encourage me to try writing a script to work on a Numbers spreadsheet. I need to modify the spreadsheet, select certain columns, put the spreadsheet in order, and save as a .csv file. I need to use that csv file on a web page to display a roster. Maybe some day I'll find a web program that will work with Numbers and keep the website updated as the spreadsheet changes.
Can you please write me a script that toggles functions keys, i tried and it wont work. When i play games i need F1, F2 to be normal F keys not macbook keys and then everytime i want to play something i need to go to settings > keyboard > keyboard shortcuts > functions keys > toggle option is there a way to automate this process?
Hi there! Great question! I took on the challenge and was able to figure it out. I'll put together a tutorial on this in the next few days. I'll post a link here when it's ready. Thanks for watching!
Thanks for the detailed explanation. Had an old project, run couple of scripts to change settings, my question is on macOS14, is it still necessary to "set UI elements enabled to true" first? Also sometimes when changing settings, requires either password or touch ID to continue, can we do something to skip this, Cheers
Hi there! I don't believe there's a way around the password/Touch ID requirement from the OS - something we just have to live with as far as I know. Regarding your OS14 question... I'll have to test that. I'll get back to you either tonight or tomorrow. Thanks for the questions an thanks for watching!
I really liked this app - but I had problems creating it on Sonoma. This snippet is what I ended up with if you are interested. The rest of the script was the same as yours. if value = "Never" then set theResult to "Changed to 5 Minutes" click delay 1.5 keystroke "F" --takes us to the top of the menu delay 0.5 repeat 3 times --down arrow 3 times to get to 5 minutes key code 125 delay 0.5 end repeat keystroke return delay 1 else set theResult to "Changed to Never" click delay 1.5 keystroke "N" delay 0.5 keystroke return delay 0.5 end if
Great tutorial! Exactly what I was looking for. Also great pace and voice. Appreciate that you explained the very starting points of writing a script, and also ways to run it after the script was created. cheers
Thanks for the kind words! Glad it was useful and thanks for watching!
Absolutely agree, thank you very much!
Great tutorial! Easy to follow and did the trick! Thanks
Thanks so much! Glad it was helpful!
Exactly what I was looking for! Great content. Subbed! :)
Awesome, thank you!
Thank you!
Thanks A lot!
Great lecture!
Glad you enjoyed it... thanks for watching!
@@apple-a-day I was stuck trying to automate disabling OSK dwell feature until I found your video!
This was gold :)
Thank you! And thanks for watching!
This reminds of years ago writing simple dBase programs on a PC before Windows. You encourage me to try writing a script to work on a Numbers spreadsheet. I need to modify the spreadsheet, select certain columns, put the spreadsheet in order, and save as a .csv file. I need to use that csv file on a web page to display a roster. Maybe some day I'll find a web program that will work with Numbers and keep the website updated as the spreadsheet changes.
Very cool! Good luck automating Numbers with AppleScript. Let me know if you're able to achieve your goal. Thanks for watching!
Can you please write me a script that toggles functions keys, i tried and it wont work.
When i play games i need F1, F2 to be normal F keys not macbook keys and then everytime i want to play something i need to go to settings > keyboard > keyboard shortcuts > functions keys > toggle option
is there a way to automate this process?
Hi there! Great question! I took on the challenge and was able to figure it out. I'll put together a tutorial on this in the next few days. I'll post a link here when it's ready. Thanks for watching!
New tutorial that does exactly this!
ua-cam.com/video/s8HP-EK-2vk/v-deo.html
Very nice, thank you!
Glad you like it! Thanks for watching!
Thanks for the detailed explanation. Had an old project, run couple of scripts to change settings, my question is on macOS14, is it still necessary to "set UI elements enabled to true" first? Also sometimes when changing settings, requires either password or touch ID to continue, can we do something to skip this, Cheers
Hi there! I don't believe there's a way around the password/Touch ID requirement from the OS - something we just have to live with as far as I know. Regarding your OS14 question... I'll have to test that. I'll get back to you either tonight or tomorrow. Thanks for the questions an thanks for watching!
Legendary
Thanks!
I really liked this app - but I had problems creating it on Sonoma. This snippet is what I ended up with if you are interested. The rest of the script was the same as yours.
if value = "Never" then
set theResult to "Changed to 5 Minutes"
click
delay 1.5
keystroke "F" --takes us to the top of the menu
delay 0.5
repeat 3 times --down arrow 3 times to get to 5 minutes
key code 125
delay 0.5
end repeat
keystroke return
delay 1
else
set theResult to "Changed to Never"
click
delay 1.5
keystroke "N"
delay 0.5
keystroke return
delay 0.5
end if
Hi there! Thanks for the code snippet - I hadn't tried it on Sonoma yet. This is great feedback! Thanks for watching!