Oh and for everyone:
Don't forget to visit Network > Keyring and accept everyone to grow your network! If you're new you may not know this.
I don't know of a fast built-in way of accepting HUNDREDS of people... But I do know AutoHotKey. While this is not automation, it's 1 button press instead of a bunch of clicks.
1. Save the script below in a text document. Call it `Test.ahk` for example. Press the number 0 on top of your keyboard to automatically double click the user you're hovering over and accept the request (Assuming the accept window is thesmallest size possible - You may need to manually open one and make it as small as it goes).
Don't forget to visit Network > Keyring and accept everyone to grow your network! If you're new you may not know this.
I don't know of a fast built-in way of accepting HUNDREDS of people... But I do know AutoHotKey. While this is not automation, it's 1 button press instead of a bunch of clicks.
1. Save the script below in a text document. Call it `Test.ahk` for example. Press the number 0 on top of your keyboard to automatically double click the user you're hovering over and accept the request (Assuming the accept window is thesmallest size possible - You may need to manually open one and make it as small as it goes).
Code:
$0::
{
Click
Click
Sleep 50
ControlClick, x530 y530, Retroshare profile,, Left, 1, NA
Send {enter}
}