Updated
parent
bf1cf5957b
commit
777d28a254
|
@ -2,14 +2,10 @@
|
|||
|
||||
This script can be used to change a reminder name really fast using an iPhone, so iOS system.
|
||||
|
||||
**Category**: Execution
|
||||
|
||||
## Description
|
||||
|
||||
This script can be used to change a reminder name 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,19 +20,19 @@ 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
|
||||
[21] DEFINE #REMINDER-APP-NAME
|
||||
```
|
||||
|
||||
- You should know the old name of the reminder that you want to change
|
||||
|
||||
```DuckyScript
|
||||
[22] DEFINE #OLD-REMINDER-NAME example
|
||||
[23] DEFINE #OLD-REMINDER-NAME example
|
||||
```
|
||||
|
||||
- Here you should set the new reminder name
|
||||
|
||||
```DuckyScript
|
||||
[24] DEFIN #NEW-REMINDER-NAME example
|
||||
[25] DEFIN #NEW-REMINDER-NAME example
|
||||
```
|
||||
|
||||
## Credits
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
REM #################################################
|
||||
REM # |
|
||||
REM # Title : Edit A Reminder On An iPhone |
|
||||
REM # Author : Aleff |
|
||||
REM # Version : 1.0 |
|
||||
REM # Category : Execution |
|
||||
REM # Target : iPhone |
|
||||
REM # |
|
||||
REM #################################################
|
||||
|
||||
REM_BLOCK
|
||||
#################################################
|
||||
# #
|
||||
# Title : Edit A Reminder On An iPhone #
|
||||
# Author : Aleff #
|
||||
# Version : 1.0 #
|
||||
# Category : Execution #
|
||||
# Target : iPhone #
|
||||
# #
|
||||
#################################################
|
||||
END_REM
|
||||
|
||||
REM Requirements:
|
||||
REM - The phone must be unlocked
|
||||
|
@ -23,10 +24,10 @@ DEFINE #OLD-REMINDER-NAME example
|
|||
REM Here you should set the new reminder name
|
||||
DEFIN #NEW-REMINDER-NAME example
|
||||
|
||||
DELAY 500
|
||||
GUI SPACE
|
||||
DELAY 300
|
||||
STRING #REMINDER-APP-NAME
|
||||
ENTER
|
||||
STRINGLN #REMINDER-APP-NAME
|
||||
DELAY 2000
|
||||
GUI f
|
||||
DELAY 1000
|
||||
|
@ -36,7 +37,6 @@ TAB
|
|||
DELAY 500
|
||||
GUI a
|
||||
BACKSPACE
|
||||
STRING #NEW-REMINDER-NAME
|
||||
ENTER
|
||||
STRINGLN #NEW-REMINDER-NAME
|
||||
DELAY 500
|
||||
GUI h
|
||||
|
|
Loading…
Reference in New Issue