Monday, April 15, 2024

Factory Reset Sony SRG X120 X400 Camera

 Get a paper clip

Stick it in the hole for at least FIVE seconds where #11 indicates.



The camera will do a quick reset and you can logon with

admin / Admin_1234

The default IP is usually 192.168.0.100

The dip switch in the back, #3 will need to be set to #1 on to access the HTTP 

I hope this post was of help to you! If you have suggestions of how to improve it, let me know in the comments!  Thanks!


Thursday, April 4, 2024

Some autohotkey commands

 Some commands that I fought with but finally was able to make work.

Send key "F2" to a window that might not be active without stealing focus from the active window


In this example, i wanted to first get the actual windows title associated to the executable.

processName := "vMix64.exe"

if (WinExist("ahk_exe " . processName)){

WinGetTitle, title, ahk_exe %processName%

ControlSend,, {F2},%title%