Facebook auto deleter: Delete facebook apps using Simba
Today, I was browsing facebook, and found that I have granted 200 applications to use my facebook account. I thought it is a good time to remove some of them, most of them were unwanted.
Unfortunately, I realised that there was no way to remove all 200 applications: something like check all option. I have to delete one by one, and confirm each action 2 times.
Suddenly, this reminded me of clicking the same thing again and again in runescape which SRL scripting could do very easily. Thus, I made my mind to write a script to automate the clicking process in facebook. It took less than 10 minutes for me to do it. And I am proud that my knowledge can be used at least somewhere for my betterment.
I apologize if I am not clear with what I say. It is a very simple script as demonstrated in this youtube video.
The script is very basic. i.e No Failsafes, so will go in a continuous loop, if something messes up. However, since it a one time process and you would most probably be watching it, it should be all right.
Simba Code:
program facebook; {$i srl\srl.simba} var i, x, y, bmp1, bmp2, numApp: Integer; begin ActivateClient; MouseSpeed :=20; numApp :=100;//how many applications to remove
Love things like this, always lovely to see non Runescape scripts!
Might want to make it not use MMouse/Mouse so it will be super faster!
Just use MoveMouse/ClickMouse etc along with waits.
Great work!