You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-2Lines changed: 24 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,9 +69,9 @@ Here, the first two characters are `ao`, which means adding the option tag, and
69
69
- Line 6: `al(InputName)=My Input Title`
70
70
Here, the first two characters are `al`, which means adding a title, and then it is specified that it will be applied to a tag named `InputName`, and after the equal character (`=`), the title text is specified.
71
71
72
-
## Explanation of the action controls
72
+
## Explanation of the Action Controls
73
73
74
-
Action controls are received in the form of an INI file format. In the first line of the response there is the word `[web-forms]` and each of the following lines is an action control.
74
+
Action Controls are received in the form of an INI file format. In the first line of the response there is the word `[web-forms]` and each of the following lines is an action control.
75
75
76
76
The first two characters determine the action code. For example, things like adding styles and removing tags can be obtained from action codes. The first two letters stand for actions and indicate that an action must be performed.
77
77
@@ -179,6 +179,28 @@ The following decrease the current numerical values:
179
179
180
180
> Note: Action controls are executed sequentially; if an action control decides to change an `id` attribute from a tag, subsequent action controls cannot perform actions with the previous `id` attribute.
181
181
182
+
### Pre Runner
183
+
184
+
Pre Runners are added before Action Control values.
185
+
Each Pre Runner usually consists of one character, followed by the values of the Pre Runner, and then ends with the closing parenthesis (')') character.
186
+
187
+
- →: **Delay** - Value: `Second`
188
+
- ↑: **Period** - Value: `Second`
189
+
190
+
Example:
191
+
192
+
`↑4)+w<b>1=10px`
193
+
194
+
The above example means that every 4 seconds, the width of the second b tag is added by 10 pixels.
195
+
196
+
Pre Runners are placed in the queue and can be called one after the other.
197
+
198
+
Example:
199
+
200
+
`→10)↑4)+w<b>1=10px`
201
+
202
+
The above example is the same as the previous example, except that it is executed after 10 seconds.
203
+
182
204
## Define the tag
183
205
184
206
After the first two characters, there are 6 status types that define the tag:
0 commit comments