Eos Editor Preview - Milovana's new interactive webtease editor
- Quarz
- Explorer

- Posts: 85
- Joined: Sat Jan 09, 2016 11:31 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Submissive
- Location: North Germany
Re: Eos Editor Preview - Milovana's new interactive webtease editor
I'm close to finishing my next tease and I thought about having a few people play it before publishing in order to catch bugs and grammar mistakes.
That brings up the question how to share an Eos tease with someone else before publishing it.
Does sending them the backup file work or would they not be able to load that?
Or is there maybe some even better way to do it?
That brings up the question how to share an Eos tease with someone else before publishing it.
Does sending them the backup file work or would they not be able to load that?
Or is there maybe some even better way to do it?
Re: Eos Editor Preview - Milovana's new interactive webtease editor
I added a feature to Eos to allow private sharing of teases. Just go to the new "Share" tab in the Eos editor.Quarz wrote: Thu Jun 13, 2019 10:59 pm I'm close to finishing my next tease and I thought about having a few people play it before publishing in order to catch bugs and grammar mistakes.
That brings up the question how to share an Eos tease with someone else before publishing it.
Does sending them the backup file work or would they not be able to load that?
Or is there maybe some even better way to do it?
Be warned though, once you share a link, you can't take it back!
- Quarz
- Explorer

- Posts: 85
- Joined: Sat Jan 09, 2016 11:31 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Submissive
- Location: North Germany
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Thank you. That makes this a lot easier!seraph0x wrote: Fri Jun 14, 2019 6:08 am I added a feature to Eos to allow private sharing of teases. Just go to the new "Share" tab in the Eos editor.
Be warned though, once you share a link, you can't take it back!
-
RemiHiyama
- Explorer At Heart

- Posts: 203
- Joined: Thu Feb 28, 2019 3:30 pm
- I am a: Switch
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Is there any way to have a dynamically coded image action? That is, pulling the filename from a javascript variable instead of using a hardcoded locator string?
Auto: Replaces selected instances of the word "not" with the word "definitely".
-
Roblsforbobls
- Explorer At Heart

- Posts: 272
- Joined: Tue May 21, 2019 2:27 am
- Gender: Male
- Sexual Orientation: Asexual
- I am a: Switch
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Triple Alfa wrote: Sun Apr 07, 2019 10:40 am First, about the preview code and storage. The storage does not get wiped when entering preview mode. What I would do, is for testing create a button on your start page that will reset the values. You create a function like this in your init file:You can then call this from the button by having it do an eval action with:Code: Select all
function resetValues() { teaseStorage("newPlayer", 0); teaseStorage("myOtherValues", "relevant Values); }Now you can easily reset anything to test the newPlayer/returningPlayer scenarios.Code: Select all
resetValues();
I'm a novice at best when it comes to Java, so I was having the hardest time getting these codes to work to reset my stored variables. Here's my storage code:snakelinux wrote: Tue Apr 09, 2019 5:39 am 2) You should give users the ability to reset their stored variables. This is especially useful if there is a bug in your code. Setup a page that when a user clicks the button to reset it runs this function with the variable names changed to your stored variable names.
function refresh() {
teaseStorage.setItem("storedVariable1",undefined);
teaseStorage.setItem("storedVariable2",undefined);
}
Code: Select all
var apple = teaseStorage.getItem("i") ||0
apple++
teaseStorage.setItem("i", apple) Code: Select all
appleBy fiddling around with the solutions from previous comments and struggling to get them to work, I happened upon a working piece of code to refresh and reset stored variables:
Code: Select all
teaseStorage.setItem("i", 0)-
Roblsforbobls
- Explorer At Heart

- Posts: 272
- Joined: Tue May 21, 2019 2:27 am
- Gender: Male
- Sexual Orientation: Asexual
- I am a: Switch
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Ok two things, I have a suggestion and I think I've found a bug.
Here's the suggestion: it would be great to be able to use eval tags in notification titles. For example, this would allow a notification to display the number of points a player has throughout the game and change that number from page to page. Currently the only way to keep the player updated on their points (to my knowledge) is to have either a notification button to display the points when pushed or to tell the player with a Say action on every page.
Here's the bug:
I use the Say action and insert an eval tag in it:
When "apples" is equal to 1, this code yields 11 instead of 2. However when I do
it gives 0. Furthermore, you can get around the issue by doing
to get the expected value of 2. It follows the same behavior when trying to add two variables as well.
Here's the suggestion: it would be great to be able to use eval tags in notification titles. For example, this would allow a notification to display the number of points a player has throughout the game and change that number from page to page. Currently the only way to keep the player updated on their points (to my knowledge) is to have either a notification button to display the points when pushed or to tell the player with a Say action on every page.
Here's the bug:
I use the Say action and insert an eval tag in it:
Code: Select all
apples+1Code: Select all
apples-1Code: Select all
apples-0+1- Quarz
- Explorer

- Posts: 85
- Joined: Sat Jan 09, 2016 11:31 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Submissive
- Location: North Germany
Re: Eos Editor Preview - Milovana's new interactive webtease editor
I tried this out and get 2 for apples+1 and 0 for apples-1.Roblsforbobls wrote: Sat Jun 22, 2019 12:50 am Here's the bug:
I use the Say action and insert an eval tag in it:When "apples" is equal to 1, this code yields 11 instead of 2. However when I doCode: Select all
apples+1it gives 0. Furthermore, you can get around the issue by doingCode: Select all
apples-1to get the expected value of 2. It follows the same behavior when trying to add two variables as well.Code: Select all
apples-0+1
Could it be that your apples isn't equal to 1, but equal to '1'? 'cause then I get the behaviour you described. (Which is intended, I think)
-
Roblsforbobls
- Explorer At Heart

- Posts: 272
- Joined: Tue May 21, 2019 2:27 am
- Gender: Male
- Sexual Orientation: Asexual
- I am a: Switch
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Thanks for the reply! I went back and looked through all of my pages, but couldn't remember on which I had this issue on. So I couldn't reproduce it, but I think you're right, I probably had apples = ''1'. Plus, I didn't know you could do that with a variable - thanks for teaching me something new!Quarz wrote: Sat Jun 22, 2019 8:06 am I tried this out and get 2 for apples+1 and 0 for apples-1.
Could it be that your apples isn't equal to 1, but equal to '1'? 'cause then I get the behaviour you described. (Which is intended, I think)
-
RemiHiyama
- Explorer At Heart

- Posts: 203
- Joined: Thu Feb 28, 2019 3:30 pm
- I am a: Switch
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Are eval tags supposed to work in the labels of choice actions? I'm getting some weird behavior, but my best guess is that it's evaluating once and then showing the same thing every time the page is shown after that. Which isn't great since the point of the eval is to have dynamic text on the buttons.
Auto: Replaces selected instances of the word "not" with the word "definitely".
Re: Eos Editor Preview - Milovana's new interactive webtease editor
I've been playing around in the EOS editor and it's very cool. I'm a programmer, so I like the built in javascript capabilities. I have a bunch of ideas that I think would enhance the editor even further. I also found a few problems that would be nice to get fixed. I see there's a github project for issues, but it doesn't look like it's being actively used, so I'll list them here for now.
Issues:
Issues:
- Code Editor - In any page that shows the javascript code editor, the displayed cursor position doesn't match where the actual cursor is. I think there's something wrong with the web font used in the editor. I'm using Firefox 67.0.4. Right now I pretty much have to copy and paste the code into an external editor because the built in editor is unusable in this state.
- Upload to Gallery - Only jpeg allowed, but the file browser opens with *.* filename filter
- Notification - Notification.get behaves strangely. If the notification is not yet added, Notification.get doesn't return an object which is expected. When the notification is added and being displayed, Notification.get returns the notification as expected. However, after the notification has been clicked, and the notification is not longer shown, Notification.get still returns the notification object. That might make sense if there were a Notification.show or Notification.hide and a way to get the current visibility of the notification. As it is now, IMO, it should only return an object when the notification is actually on screen.
- Javscript errors - It's pretty difficult to find code errors without resorting to lots of console.log statements. Right now when a code error occurs the browser console just displays a cryptic error that doesn't pinpoint the cause. It would be good if that could be improved to maybe output the statement where the error occurred.
- Allow .js includes - I have lots of javascript objects and the init script is unwieldy. It would be great to allow uploading .js files to the project and then including them.
- Allow png and gif images.
- Say Action - Create from code (not just the text, but an entire bubble) (font size / color / background color)
- Page Labels - Basically an "Action" on a page that doesn't do anything other than being a placeholder with a unique name. Then you can use pages.goto('pagename:label') to jump to that label within a page.
- Notification - Create/Remove from within code
- Change the background color. Is there a way to currently do this? I didn't see one.
- Allow background image
- Allow changing text position
- Allow changing color of text within Choice buttons. I can add a <span> but style="color:#ff0000;" doesn't change the color.
- Image object - There's a Sound object to play sounds from code, let's have an Image object to change images from code.
- Image Action - Allow eval for image file name
- Image Action - Allow clearing displayed image. I want a help page that can be opened up any time, but want to clear the background to just show text. Now I could use a transparent png, but png images aren't allowed.
- Input Field - Allow different types of validated input (text (min/max length), number (integer/float), range, date, regex, etc. ). Right now you can check the input with code, but you have to jump back to ask for the field again if there was an issue which is kind of kludgey.
- Image Action - Gallery Image - Allow using wildcard for file name
- Input Field - When running a tease, auto set focus on the field so you can start typing immediately. Right now you have to click the mouse within the field to start typing
- Use Web Font that has more Unicode 6.0 symbols such as playing cards U+1F0A0–1F0FF
- Button/Notification Labels - Allow eval within labels
- TeaseStorage - Share saved data between scripts. There could be separate storage areas for the authors scripts, as well as everyone's scripts. Global variables like name, gender, age, etc. would be useful and the user can set them once. These global variables can be managed by EOS and read only for teases.
- Start another tease from within your tease. When the other tease ends, it comes back to your tease where you left off. That way we can have small shared sub-teases for various common tasks.
- Allow multiple images on the screen at the same time
- Image Gallery - Allow users to have their own personal galleries, and a tease can pull images from it (maybe based on tags or some sort of grouping capability)
- Web Speech API (Text to Speech). Most modern browsers have this capability now. See https://developer.mozilla.org/en-US/doc ... Speech_API
- Gallery - Allow adding jpegs from "Files" area (not just uploading new jpegs)
- Webm / Webp support
- Webcam support
Last edited by astonia on Fri Jul 05, 2019 2:35 pm, edited 1 time in total.
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Is there a limit to the amount of variables that can be used? After making 'Snakes and Lingerie' I have been writing a new maze style tease that is very complex. I have reached line 98 in the Init Script area of EOS and it is displaying an error ;
! "Too many errors. (100% scanned)."
I have checked all my variables and there are no errors. If I delete a couple of lines the error message disappears. It seems 98 lines is the limit.I estimate that I will need approximately 150 variables for the new tease. If someone could advise that would be great as I can't continue making the current tease. Thanks
! "Too many errors. (100% scanned)."
I have checked all my variables and there are no errors. If I delete a couple of lines the error message disappears. It seems 98 lines is the limit.I estimate that I will need approximately 150 variables for the new tease. If someone could advise that would be great as I can't continue making the current tease. Thanks
Last edited by Lamei on Thu Jul 04, 2019 11:15 pm, edited 1 time in total.
-
RemiHiyama
- Explorer At Heart

- Posts: 203
- Joined: Thu Feb 28, 2019 3:30 pm
- I am a: Switch
Re: Eos Editor Preview - Milovana's new interactive webtease editor
I've seen that message too. It's confusing because my script still seems to function, so I don't know what the issue is.
Auto: Replaces selected instances of the word "not" with the word "definitely".
- xman911
- Explorer At Heart

- Posts: 395
- Joined: Wed Feb 08, 2012 2:39 am
- Gender: Male
- Sexual Orientation: Straight
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Isn't it simpler to just make a button that makes for example "a = 0" that will reset the value of variable "a" to 0. Of course if the default number for said variable is a 100... then you put in code "a = 100" , so it gets its starting value. Basically copy your "Initializaton" values, to Re-initialize the whole thing with a button. Of course for this button to work without going anywhere it should loop to the same page. I tested it with a single variable... after clicking on the button my variable went from number 26 to 0 and then started to "accumulate" again, but it should work for any number of variables.Roblsforbobls wrote: Fri Jun 21, 2019 4:43 amTriple Alfa wrote: Sun Apr 07, 2019 10:40 am First, about the preview code and storage. The storage does not get wiped when entering preview mode. What I would do, is for testing create a button on your start page that will reset the values. You create a function like this in your init file:You can then call this from the button by having it do an eval action with:Code: Select all
function resetValues() { teaseStorage("newPlayer", 0); teaseStorage("myOtherValues", "relevant Values); }Now you can easily reset anything to test the newPlayer/returningPlayer scenarios.Code: Select all
resetValues();
I'm a novice at best when it comes to Java, so I was having the hardest time getting these codes to work to reset my stored variables. Here's my storage code:snakelinux wrote: Tue Apr 09, 2019 5:39 am 2) You should give users the ability to reset their stored variables. This is especially useful if there is a bug in your code. Setup a page that when a user clicks the button to reset it runs this function with the variable names changed to your stored variable names.
function refresh() {
teaseStorage.setItem("storedVariable1",undefined);
teaseStorage.setItem("storedVariable2",undefined);
}
I use Say: "apple =Code: Select all
var apple = teaseStorage.getItem("i") ||0 apple++ teaseStorage.setItem("i", apple)" to assess that the variable storage is working (it does).Code: Select all
apple
By fiddling around with the solutions from previous comments and struggling to get them to work, I happened upon a working piece of code to refresh and reset stored variables:Note that I used "i" here because that's what I used in my stored variable code. Hopefully this helps someone!Code: Select all
teaseStorage.setItem("i", 0)
- xman911
- Explorer At Heart

- Posts: 395
- Joined: Wed Feb 08, 2012 2:39 am
- Gender: Male
- Sexual Orientation: Straight
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Why would you need... 150... variables... that's just mind boggling number... are you going to make an intergalactic spaceship... and not a milovana tease. Are you sure... you need that many...Lamei wrote: Thu Jul 04, 2019 8:06 am I estimate that I will need approximately 150 variables for the new tease. If someone could advise that would be great as I can't continue making the current tease. Thanks
I don't think anyone needs that many variables. Are you putting a variable on every page... why do you need so many?! Even 10 variables is probably overkill for most things.
OK... maybe you need them... you can initialize more than one variable in one line by using separator ";"
here is an example.
Code: Select all
var money = 0
var time = 0
var x = 0
Code: Select all
var money = 0; var time = 0; var x = 0
But I still can't imagine why you would use so many... why would you track a 150... variables... what for... does every girl have her own variable. It would be interesting 150 different girls with their own variables...
P.S. Now I looked at your Snakes and Lingerie tease... and still can't comprehend for what you would initiate this many variables.
Last edited by xman911 on Thu Jul 04, 2019 4:19 pm, edited 3 times in total.
- xman911
- Explorer At Heart

- Posts: 395
- Joined: Wed Feb 08, 2012 2:39 am
- Gender: Male
- Sexual Orientation: Straight
Re: Eos Editor Preview - Milovana's new interactive webtease editor
No it evaluates every time, it can evaluate more than one time in a single page (if you want that). Maybe you somehow botched the thing and it's just stuck.RemiHiyama wrote: Sun Jun 23, 2019 12:13 am Are eval tags supposed to work in the labels of choice actions? I'm getting some weird behavior, but my best guess is that it's evaluating once and then showing the same thing every time the page is shown after that. Which isn't great since the point of the eval is to have dynamic text on the buttons.

