Skip to content

Commit

Permalink
Update DOCUMENTATION.md
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMaster1127 authored Jul 8, 2024
1 parent 0cd1a10 commit b7e570c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,8 @@ With the `Random` feature in HeavenToPython (HTpy), developers can easily incorp

The `Sleep` feature in HeavenToPython (HTpy) allows developers to introduce delays or pauses in their scripts, which can be useful for various purposes such as controlling the timing of actions, implementing animations, or simulating real-time behavior.

This feature does NOT work on the web HTpy playground.

#### Syntax:

```ahk
Expand Down Expand Up @@ -528,6 +530,8 @@ The `MsgBox` function in HeavenToPython (HTpy) provides developers with a versat

The `FileRead` feature in HeavenToPython (HTpy) allows you to read the contents of a file into a variable within your script.

This feature does NOT work on the web HTpy playground.

#### Syntax:

```ahk
Expand Down Expand Up @@ -573,6 +577,8 @@ By following these guidelines, you can effectively use the `FileRead` feature in

The `FileAppend` feature in HeavenToPython (HTpy) enables you to append text content to a file.

This feature does NOT work on the web HTpy playground.

#### Syntax:

```ahk
Expand Down Expand Up @@ -604,6 +610,8 @@ FileAppend, %text%, FileName.txt

In HeavenToPython (HTpy), the `SetTimer` command is used to create and control timers within the script. Timers allow developers to execute specific actions or functions at regular intervals, providing a mechanism for scheduling tasks and automating processes.

This feature does NOT work on the web HTpy playground.

#### Syntax:

```ahk
Expand Down Expand Up @@ -1223,6 +1231,8 @@ Variables play a crucial role in storing and manipulating data within HeavenToPy

The `RunCMD` function in HeavenToPython (HTpy) allows developers to execute a system command or script from within the current HTpy script. This can be particularly useful for integrating external processes or automating tasks that require command-line operations. It works on both Windows and Linux-like systems.

This feature does NOT work on the web HTpy playground.

#### Syntax:

```ahk
Expand Down Expand Up @@ -1254,6 +1264,8 @@ This function will execute the specified system command or script and display th

The `ExitApp` feature in HeavenToPython (HTpy) allows developers to terminate the currently active script. This functionality is particularly useful for terminating script execution programmatically.

This feature does NOT work on the web HTpy playground.

#### Syntax:

```ahk
Expand Down Expand Up @@ -1423,6 +1435,8 @@ Got it! Here's the revised documentation with the correct "Go back" link:

The `Endpoint` command in HeavenToPython (HTpy) is used to define and execute communication Endpoints within a script. This functionality allows developers to specify points of interaction or data exchange, ensuring structured and modular script design.

This feature does NOT work on the web HTpy playground.

#### Syntax:

```ahk
Expand Down Expand Up @@ -1529,6 +1543,8 @@ To see the HTML file you are serving, navigate to `localhost:8000` or the specif

The `getDataFromAPI` function in HeavenToPython (HTpy) performs an HTTP GET request to retrieve data from an external API endpoint and processes the response asynchronously.

This feature does NOT work on the web HTpy playground.

#### Syntax:

```ahk
Expand Down Expand Up @@ -1557,6 +1573,8 @@ jsonOutput := getDataFromAPI("https://api.example.com/data")

The `getDataFromJSON` function in HeavenToPython (HTpy) retrieves specific data from a JSON string using a path-like syntax to navigate nested objects and arrays.

This feature does NOT work on the web HTpy playground.

#### Syntax:

```ahk
Expand Down

0 comments on commit b7e570c

Please sign in to comment.