commit
b697112f2b
|
@ -0,0 +1,46 @@
|
||||||
|
# Play A Song On An iPhone
|
||||||
|
|
||||||
|
This script can be used to play a song really fast using an iPhone, so iOS system.
|
||||||
|
|
||||||
|
Open search bar, then open the Music app (I used the italian name so 'Telefono'), then delete what is (hidden) stored and write the number, then call it.
|
||||||
|
|
||||||
|
**Category**: Execution
|
||||||
|
|
||||||
|
## Dependencies
|
||||||
|
|
||||||
|
* The phone must be unlocked
|
||||||
|
|
||||||
|
## Test
|
||||||
|
|
||||||
|
- iPhone 14
|
||||||
|
- iOS 16.4.1
|
||||||
|
|
||||||
|
## Settings
|
||||||
|
|
||||||
|
- You need to change the name of the application according to the language you have on your phone.
|
||||||
|
|
||||||
|
```DuckyScript
|
||||||
|
[20] DEFINE #MUSIC-APP-NAME example
|
||||||
|
```
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
|
||||||
|
<h2 align="center"> Aleff :octocat: </h2>
|
||||||
|
<div align=center>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td align="center" width="96">
|
||||||
|
<a href="https://github.com/aleff-github">
|
||||||
|
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/github.png?raw=true width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
<br>Github
|
||||||
|
</td>
|
||||||
|
<td align="center" width="96">
|
||||||
|
<a href="https://www.linkedin.com/in/alessandro-greco-aka-aleff/">
|
||||||
|
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/linkedin.png?raw=true width="48" height="48" />
|
||||||
|
</a>
|
||||||
|
<br>Linkedin
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
|
@ -0,0 +1,30 @@
|
||||||
|
REM_BLOCK
|
||||||
|
##############################################
|
||||||
|
# #
|
||||||
|
# Title : Play A Song 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 #MUSIC-APP-NAME example
|
||||||
|
|
||||||
|
DELAY 500
|
||||||
|
GUI SPACE
|
||||||
|
DELAY 300
|
||||||
|
STRINGLN #MUSIC-APP-NAME
|
||||||
|
DELAY 1000
|
||||||
|
SPACE
|
||||||
|
DELAY 500
|
||||||
|
GUI h
|
Loading…
Reference in New Issue