Author Topic: (VBS) Simple Vbscripts does not work in ACA and AMEP  (Read 7390 times)

0 Members and 1 Guest are viewing this topic.

jtm2020hyo

  • Newt
  • Posts: 198
(VBS) Simple Vbscripts does not work in ACA and AMEP
« on: October 20, 2021, 08:23:21 PM »
I am trying to run a simple code like this:

Code: [Select]
Dim x
x=1
Do While x<5
document.write("Welcome.")
x=x+1
Loop

... and the result is this:



anyone know why happen this and how to fix or how should I use this code?