SHOW:
|
|
- or go back to the newest paste.
| 1 | InputBox, inUrl, URLRunner, Paste in the url to decode here. | |
| 2 | IfInString inUrl, _n | |
| 3 | {
| |
| 4 | StringSplit items, inUrl, _ | |
| 5 | outValue = items2 | |
| 6 | Run http://facebook.com/photo.php?fbid=%items2% | |
| 7 | } | |
| 8 | else, ifInString, inUrl, flickr | |
| 9 | {
| |
| 10 | StringSplit items, inUrl, / | |
| 11 | StringSplit fileName, items%items0%, _ | |
| 12 | Run http://flickr.com/photo.gne?id=%fileName1% | |
| 13 | } | |
| 14 | else, ifInString, inUrl, deviantart | |
| 15 | {
| |
| 16 | ;http://fc09.deviantart.net/fs71/f/2013/227/a/4/ryky_id_by_ryky-d6i93rf.jpg | |
| 17 | StringSplit slashFrags, inUrl, / | |
| 18 | StringSplit hyphen, slashFrags%slashFrags0%, - | |
| 19 | Run % "http://fav.me/" . substr(hyphen%hyphen0%, 1, -4) | |
| 20 | } | |
| 21 | else MsgBox no item found |