There are a JavaScript IDE I know:
DroidScript, http://www.droidscript.org
Hi! I'm Yusuf Bera ERTAN. I'm 13 years old. I'm very very interested programming. I learned Python, Kivy, Scratch, Bash, Basic-256, HTML. And i'm learning Javascript. I want to write programs, games for Linux, Windows and Android (sometimes IOS). Now i'm writing a toolbox. It is a file manager, music video player, picture displayer, notepad, paint, simple games , shell commander, traslater.
06 July 2015 - 01:25 AM
There are a JavaScript IDE I know:
DroidScript, http://www.droidscript.org
06 July 2015 - 12:55 AM
Welcome to part 2!
Now we are typing functions.
There are two functions. Save and load.
Save:
function save() { filename=prompt("Write file name.") txt=txtbox.GetText() //Before filename there is path. app.WriteFile(filename, txt) }
Load:
function load() { filename=prompt("Write file name.") //Before filename there is path. txt=app.ReadFile(filename) txtbox.SetText(txt) }
And run! My tutorial is ended. Hope you like it!
02 July 2015 - 03:24 AM
Thanks!