moved to execution
parent
088512fbba
commit
2ed20404a3
|
@ -2,14 +2,10 @@
|
|||
|
||||
This script can be used to delete a reminder really fast using an iPhone, so iOS system.
|
||||
|
||||
**Category**: Prank
|
||||
|
||||
## Description
|
||||
|
||||
This script can be used to delete a reminder really fast using an iPhone, so iOS system.
|
||||
|
||||
Open search bar, then open the Reminder app (I used the italian name so 'Promemoria'), then delete what is (hidden) stored and write the number, then call it.
|
||||
|
||||
**Category**: Execution
|
||||
|
||||
## Dependencies
|
||||
|
||||
* The phone must be unlocked
|
||||
|
@ -24,13 +20,13 @@ Open search bar, then open the Reminder app (I used the italian name so 'Promemo
|
|||
- You need to change the name of the application according to the language you have on your phone.
|
||||
|
||||
```DuckyScript
|
||||
[20] DEFINE #REMINDER-APP-NAME example
|
||||
[21] DEFINE #REMINDER-APP-NAME example
|
||||
```
|
||||
|
||||
- You should know the reminder name that you want to delete
|
||||
|
||||
```DuckyScript
|
||||
[22] DEFINE #REMINDER-NAME example
|
||||
[23] DEFINE #REMINDER-NAME example
|
||||
```
|
||||
|
||||
## Credits
|
|
@ -0,0 +1,41 @@
|
|||
REM_BLOCK
|
||||
###################################################
|
||||
# #
|
||||
# Title : Delete A Reminder On An iPhone #
|
||||
# Author : Aleff #
|
||||
# Version : 1.0 #
|
||||
# Category : Execution #
|
||||
# Target : iPhone #
|
||||
# #
|
||||
###################################################
|
||||
END_REM
|
||||
|
||||
REM Requirements:
|
||||
REM - The phone must be unlocked
|
||||
|
||||
REM Tested on:
|
||||
REM - iPhone 14
|
||||
REM - iOS 16.4.1
|
||||
|
||||
REM You need to change the name of the application according to the language you have on your phone.
|
||||
DEFINE #REMINDER-APP-NAME example
|
||||
REM You should know the reminder name that you want to delete
|
||||
DEFINE #REMINDER-NAME example
|
||||
|
||||
DELAY 500
|
||||
GUI SPACE
|
||||
DELAY 300
|
||||
STRINGLN #REMINDER-APP-NAME
|
||||
DELAY 2000
|
||||
GUI f
|
||||
DELAY 1000
|
||||
STRING #REMINDER-NAME
|
||||
DELAY 500
|
||||
TAB
|
||||
DELAY 500
|
||||
GUI a
|
||||
BACKSPACE
|
||||
DELAY 500
|
||||
ENTER
|
||||
DELAY 500
|
||||
GUI h
|
|
@ -1,40 +0,0 @@
|
|||
REM ###################################################
|
||||
REM # |
|
||||
REM # Title : Delete A Reminder On An iPhone |
|
||||
REM # Author : Aleff |
|
||||
REM # Version : 1.0 |
|
||||
REM # Category : Prank |
|
||||
REM # Target : iPhone |
|
||||
REM # |
|
||||
REM ###################################################
|
||||
|
||||
|
||||
REM Requirements:
|
||||
REM - The phone must be unlocked
|
||||
|
||||
REM Tested on:
|
||||
REM - iPhone 14
|
||||
REM - iOS 16.4.1
|
||||
|
||||
REM You need to change the name of the application according to the language you have on your phone.
|
||||
DEFINE #REMINDER-APP-NAME example
|
||||
REM You should know the reminder name that you want to delete
|
||||
DEFINE #REMINDER-NAME example
|
||||
|
||||
GUI SPACE
|
||||
DELAY 300
|
||||
STRING #REMINDER-APP-NAME
|
||||
ENTER
|
||||
DELAY 2000
|
||||
GUI f
|
||||
DELAY 1000
|
||||
STRING #REMINDER-NAME
|
||||
DELAY 500
|
||||
TAB
|
||||
DELAY 500
|
||||
GUI a
|
||||
BACKSPACE
|
||||
DELAY 500
|
||||
ENTER
|
||||
DELAY 500
|
||||
GUI h
|
Loading…
Reference in New Issue