Text can now be formatted

- Added black to the colors
- Fixed setStroke to be skipped when needed
This commit is contained in:
Unknown
2018-04-12 13:07:56 -04:00
parent 4bf7eca6b0
commit e90c491450
6 changed files with 156 additions and 10 deletions

View File

@@ -1,3 +1,4 @@
#include lib.js
var saveFile = File(arguments[0]);
if(saveFile.exists)
saveFile.remove();
@@ -7,4 +8,5 @@ saveFile.open("e", "TEXT", "????");
for (var i = 0; i < arguments.length; i++) {
saveFile.writeln(arguments[i])
}
setFormatting(0,6, "Arial", "Bold");
saveFile.close();