Error at EOS Tease creation

All about the past, current and future webteases and the art of webteasing in general.
---
Post Reply
hotyannick
Curious Newbie
Curious Newbie
Posts: 1
Joined: Sun Aug 11, 2024 2:41 pm

Error at EOS Tease creation

Post by hotyannick »

Hi, I have the problem, that I created my first EOS tease. SO far so good, evrything was working in preview but when it comes to publishing, I have a huge amount of errors. The errortext is:

Does not match the regex pattern ^!?[a-zA-Z0-9-*{,}(|)?]+$

Does not match the regex pattern ^\$.*$

Failed to match at least one schema

What can I do to fix this?

My code of the page refering to the error is looking like this:

{
var f = 1;
var e = 6;
z1 = Math.random();
z2 = Math.floor(z1*e + 1 + f);
if(z2==2)pages.goto('field2');
if(z2==3)pages.goto('field3');
if(z2==4)pages.goto('field4');
if(z2==5)pages.goto('field5');
if(z2==6)pages.goto('field6');
if(z2==7)pages.goto('field7');
}
User avatar
indyc
Explorer At Heart
Explorer At Heart
Posts: 530
Joined: Sun Mar 28, 2021 10:03 pm
Contact:

Re: Error at EOS Tease creation

Post by indyc »

Usually when I get that error on publishing it is because I have a timer set without a unit. For example I would have a timer for 1 instead of 1s (for one second)

That is the first place I would look because that is one of the ones that only happens when you try to push it into publishing. It's always been odd to me because the previewer clearly counts them as seconds as a default and I wish the error code was more descriptive.

If that is not the case, if you click on the error itself it usually brings you to the bit of code causing problems, perhaps that can narrow it down. Let me know if you still need help.
Post Reply