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');
}
Error at EOS Tease creation
Re: Error at EOS Tease creation
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.
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.


