Eos Editor Preview - Milovana's new interactive webtease editor
-
Abenteuer82
- Curious Newbie

- Posts: 4
- Joined: Mon Aug 02, 2021 10:35 pm
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Thank you for this clarification! That's a pitty, though I understand the privacy concerns, and I don't want to talk you into something too risky. May using GuideMe help out here?
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Not sure. Probably best to ask in that thread.
- idg69
- Explorer

- Posts: 89
- Joined: Fri Jun 24, 2011 11:31 pm
- Gender: Male
- Sexual Orientation: Open to new ideas!
- I am a: Switch
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Is there a way to change the name of an unpublished EOS tease?
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Yes, go to options, then basic settings.idg69 wrote: Sat Jan 08, 2022 5:52 pm Is there a way to change the name of an unpublished EOS tease?
You can also do this for a published tease but you have to republish it otherwise people can't get into the published tease. (I found this out the hard way)
- idg69
- Explorer

- Posts: 89
- Joined: Fri Jun 24, 2011 11:31 pm
- Gender: Male
- Sexual Orientation: Open to new ideas!
- I am a: Switch
Re: Eos Editor Preview - Milovana's new interactive webtease editor
THANK YOU SO MUCH! Worked easy. I knew it was somewhere. Yay nice people win again.indyc wrote: Sat Jan 08, 2022 6:01 pmYes, go to options, then basic settings.idg69 wrote: Sat Jan 08, 2022 5:52 pm Is there a way to change the name of an unpublished EOS tease?
You can also do this for a published tease but you have to republish it otherwise people can't get into the published tease. (I found this out the hard way)
- 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
Alright, so I have an array of values I want to append another value to. So I do something like this in an Eval:
and then in a Say Eval tag I just do
for example. But I always just get "undefined" as value doing that.
Does anyone have an idea where I screwed up?
Code: Select all
x = [1, 2];
x = x.push(3);Code: Select all
x[1]Does anyone have an idea where I screwed up?
- Drool
- Experimentor

- Posts: 1673
- Joined: Sat Nov 28, 2015 2:24 pm
- Gender: Male
- Sexual Orientation: Open to new ideas!
- I am a: Switch
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Hi,Quarz wrote: Sun Jan 09, 2022 2:31 am Alright, so I have an array of values I want to append another value to. So I do something like this in an Eval:and then in a Say Eval tag I just doCode: Select all
x = [1, 2]; x = x.push(3);for example. But I always just get "undefined" as value doing that.Code: Select all
x[1]
Does anyone have an idea where I screwed up?
it's just
Code: Select all
x.push(3);Code: Select all
x = x.push(3);- 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
Ah, I see. Thanks!Drool wrote: Sun Jan 09, 2022 7:27 am Hi,
it's justinstead ofCode: Select all
x.push(3);Code: Select all
x = x.push(3);![]()
- Shattered
- Experimentor

- Posts: 1391
- Joined: Fri Jan 11, 2013 6:41 pm
- I am a: Switch
- Location: United Kingdom
Re: Eos Editor Preview - Milovana's new interactive webtease editor
I think what I want should be possible, but I don't even know what its called to start googling
I want a notification button that says 'edge' and when its clicked, it adds 1 to the users edge count, without disappearing.
So I imagine I want to set up this as something outside the script that whenever you press the button, it's called and replays itself.
How would one do this does anyone know?
I want a notification button that says 'edge' and when its clicked, it adds 1 to the users edge count, without disappearing.
So I imagine I want to set up this as something outside the script that whenever you press the button, it's called and replays itself.
How would one do this does anyone know?
Salutations, Stranger.
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!
-
Darigaaz
- Explorer

- Posts: 88
- Joined: Wed Oct 07, 2020 11:12 pm
- Gender: Male
- Sexual Orientation: Straight
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Impossible with EOS afaik but should be with OEOS
If I am wrong, I would be glad to learn how to do it
If I am wrong, I would be glad to learn how to do it
Re: Eos Editor Preview - Milovana's new interactive webtease editor
I do this by copying the "create notification" line and pasting it on the button code over and over and over nested under each other as many times as you want it to go. I know it isn't the best solution but it's what I did for my tease. It also gets a bit odd when you want to remove notification so hopefully you don't need to do that. (It works sometimes though when you need it to)Shattered wrote: Sun Jan 30, 2022 9:50 pm I think what I want should be possible, but I don't even know what its called to start googling![]()
I want a notification button that says 'edge' and when its clicked, it adds 1 to the users edge count, without disappearing.
So I imagine I want to set up this as something outside the script that whenever you press the button, it's called and replays itself.
How would one do this does anyone know?
Let me know if that doesn't make sense and I can make screenshots to show how I did it.
- Shattered
- Experimentor

- Posts: 1391
- Joined: Fri Jan 11, 2013 6:41 pm
- I am a: Switch
- Location: United Kingdom
Re: Eos Editor Preview - Milovana's new interactive webtease editor
That's what I thought of, but I wanted the button about 100 times so was hoping I could avoid itindyc wrote: Mon Jan 31, 2022 1:53 amI do this by copying the "create notification" line and pasting it on the button code over and over and over nested under each other as many times as you want it to go. I know it isn't the best solution but it's what I did for my tease. It also gets a bit odd when you want to remove notification so hopefully you don't need to do that. (It works sometimes though when you need it to)Shattered wrote: Sun Jan 30, 2022 9:50 pm I think what I want should be possible, but I don't even know what its called to start googling![]()
I want a notification button that says 'edge' and when its clicked, it adds 1 to the users edge count, without disappearing.
So I imagine I want to set up this as something outside the script that whenever you press the button, it's called and replays itself.
How would one do this does anyone know?
Let me know if that doesn't make sense and I can make screenshots to show how I did it.
Salutations, Stranger.
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!
Re: Eos Editor Preview - Milovana's new interactive webtease editor
I guess I can't help but answer this. Must be an illness.Shattered wrote: Mon Jan 31, 2022 9:29 amThat's what I thought of, but I wanted the button about 100 times so was hoping I could avoid itindyc wrote: Mon Jan 31, 2022 1:53 amI do this by copying the "create notification" line and pasting it on the button code over and over and over nested under each other as many times as you want it to go. I know it isn't the best solution but it's what I did for my tease. It also gets a bit odd when you want to remove notification so hopefully you don't need to do that. (It works sometimes though when you need it to)Shattered wrote: Sun Jan 30, 2022 9:50 pm I think what I want should be possible, but I don't even know what its called to start googling![]()
I want a notification button that says 'edge' and when its clicked, it adds 1 to the users edge count, without disappearing.
So I imagine I want to set up this as something outside the script that whenever you press the button, it's called and replays itself.
How would one do this does anyone know?
Let me know if that doesn't make sense and I can make screenshots to show how I did it.Thanks though!
The only way to do this in Eos is to have your notification button's action go to a page that re-creates the notification button, then returns to the page that called it. (Using a simple call stack is one way to record and return to the calling pages.) To return to a specific point in a page after the button is re-created, you'd need to use a tracking a variable that's reset to 0 before calling the page initially, then nest all your page actions in IF actions, like:
Eval right before initially calling page (not on returning to page after notification button press):
Code: Select all
trackerPos = 0Code: Select all
function(){if(trackerPos<1){trackerPos=1;return true}}(If you have nested trackerPos IF actions inside parent trackerPos IF action, then you'd need to adjust the parent tracker's IF condition to something like: (assuming the child tracker's IF actions are between 2 and 4))
Code: Select all
function(){if(trackerPos<1||(trackerPos>=2&&trackerPos<=4)){trackerPos=(trackerPos<1?1:trackerPos);return true}}- Shattered
- Experimentor

- Posts: 1391
- Joined: Fri Jan 11, 2013 6:41 pm
- I am a: Switch
- Location: United Kingdom
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Yeah that's true, that might work for some specific things but this needs to be along the side of the page for dozens of pages. I guess I'll just copy and paste it 100 times, thanks :)fapnip wrote: Mon Jan 31, 2022 4:35 pmI guess I can't help but answer this.Shattered wrote: Mon Jan 31, 2022 9:29 amThat's what I thought of, but I wanted the button about 100 times so was hoping I could avoid itindyc wrote: Mon Jan 31, 2022 1:53 am
I do this by copying the "create notification" line and pasting it on the button code over and over and over nested under each other as many times as you want it to go. I know it isn't the best solution but it's what I did for my tease. It also gets a bit odd when you want to remove notification so hopefully you don't need to do that. (It works sometimes though when you need it to)
Let me know if that doesn't make sense and I can make screenshots to show how I did it.Thanks though!
The only way to do this in Eos is to have your notification button's action go to a page that re-creates the notification button, then returns to the page that called it. (Using a simple call stack is one way to record and return to the calling pages.) To return to a specific point in a page after the button is re-created, you'd need to use a tracking a variable that's reset to 0 before calling the page initially, then nest all your page actions in IF actions, like:
Eval right before initially calling page (not on returning to page after notification button press):Then, nest all of your page actions in an IF action, with the condition:Code: Select all
trackerPos = 0Incrementing the <1 and =1 to <2 and =2, <3 and =3, and so on in each of your IF actions.Code: Select all
function(){if(trackerPos<1){trackerPos=1;return true}}
(If you have nested trackerPos IF actions inside parent trackerPos IF action, then you'd need to adjust the parent tracker's IF condition to something like: (assuming the child tracker's IF actions are between 2 and 4))If you have multiple notifications, your button page will need to remove and re-create all of them to keep them in the correct order.Code: Select all
function(){if(trackerPos<1||(trackerPos>=2&&trackerPos<=4)){trackerPos=(trackerPos<1?1:trackerPos);return true}}
Salutations, Stranger.
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!
- Shattered
- Experimentor

- Posts: 1391
- Joined: Fri Jan 11, 2013 6:41 pm
- I am a: Switch
- Location: United Kingdom
Re: Eos Editor Preview - Milovana's new interactive webtease editor
Sooo I tried this and it may have broke my teaseShattered wrote: Mon Jan 31, 2022 4:38 pmYeah that's true, that might work for some specific things but this needs to be along the side of the page for dozens of pages. I guess I'll just copy and paste it 100 times, thanks :)fapnip wrote: Mon Jan 31, 2022 4:35 pmI guess I can't help but answer this.Shattered wrote: Mon Jan 31, 2022 9:29 am
That's what I thought of, but I wanted the button about 100 times so was hoping I could avoid itThanks though!
The only way to do this in Eos is to have your notification button's action go to a page that re-creates the notification button, then returns to the page that called it. (Using a simple call stack is one way to record and return to the calling pages.) To return to a specific point in a page after the button is re-created, you'd need to use a tracking a variable that's reset to 0 before calling the page initially, then nest all your page actions in IF actions, like:
Eval right before initially calling page (not on returning to page after notification button press):Then, nest all of your page actions in an IF action, with the condition:Code: Select all
trackerPos = 0Incrementing the <1 and =1 to <2 and =2, <3 and =3, and so on in each of your IF actions.Code: Select all
function(){if(trackerPos<1){trackerPos=1;return true}}
(If you have nested trackerPos IF actions inside parent trackerPos IF action, then you'd need to adjust the parent tracker's IF condition to something like: (assuming the child tracker's IF actions are between 2 and 4))If you have multiple notifications, your button page will need to remove and re-create all of them to keep them in the correct order.Code: Select all
function(){if(trackerPos<1||(trackerPos>=2&&trackerPos<=4)){trackerPos=(trackerPos<1?1:trackerPos);return true}}
The tease ID is 39431. I tried to test it, then it was stuck on loading modules. I went to the publish to see the error and it gave me an error for a NULL value, but not for a specific page like it has every other time. I tried a few fixes, and now where I go into the tease edit page the entire page is just white
Anyone else encountered this? I have a backup but it's missing an whole section which would be a terrible shame to use ><
UPDATE: Looking at the code I have managed to recover all but 1 page, and remove this, which is acceptable. But I wouldn't paste this 150 times
Salutations, Stranger.
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!
--
Like my work and want to see more? Consider supporting my Patreon or buying me a Ko-fi!
Try my teases on Milovana!

