Page 22 of 24

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Mon Feb 20, 2017 2:32 pm
by lolol2
At the moment the nyx editor has some problem with loading the media?
viewtopic.php?f=4&t=19527&p=229320

Hopefully there will be a fix soon? :)

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Wed May 31, 2017 6:45 pm
by frankentibbers
When I upload images to Nyx, most are being changed in some pic of some brunette with big tits near the pool ? One out of ten remain the same but all others are changing and it is quite annoying...How do I fix it ?

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Thu Jun 01, 2017 7:20 am
by Trusfrated
frankentibbers wrote: Wed May 31, 2017 6:45 pm When I upload images to Nyx, most are being changed in some pic of some brunette with big tits near the pool ? One out of ten remain the same but all others are changing and it is quite annoying...How do I fix it ?
Sounds familiar. See this thread:

viewtopic.php?f=4&t=19536

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Sat Jun 03, 2017 4:59 pm
by lolol2
Yes every picture that has more than 2MB size will be shown as this picture... funniest warning message that your pic is to big :lol: :lol: :lol:

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Tue Nov 07, 2017 9:23 pm
by TrashDick
Re-posting the question here because I'm not certain where it would belong most:
What's the best size for an image to be at so that Nyx doesn't pixelate it when it's resized to be displayed?

I've had the most success with 700 pixels high images, but they're still very notably pixelated when Nyx tries to show them. What size does the engine actually want from you?

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Sun Nov 12, 2017 7:42 pm
by AlltrueSC
I was wondering
Is there any way to have a Text Box
in Nyx??

I have been working on learning a bit of coding

so instead of Button
would I use a text command?

Code: Select all

text page#12
This way the user/victim would type in something

however there is no box
and that page just freezes(as far as I can tell)

any ideas IF it would be possible?
to have a box for text from user/ victim?

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Tue Dec 19, 2017 3:51 am
by TrashDick
So could anyone tell me why the following range() function on page17# isn't working, and is just making the buttons not show up?

Code: Select all

page17#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="1">Still have something to say about it?</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="1"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="1">A. Yes I do!</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="1">B. No M&apos;am!</FONT></P></TEXTFORMAT>',
pic("samui-2d.jpg"),
buttons(range(18,20,'page')#, "A", page169#, "B")
);

page18#page(
'',
pic("samui-2d.jpg"),
buttons(page17#, "DONE")
);

page19#page(
'',
pic("samui-2d.jpg"),
buttons(page17#, "DONE")
);

page20#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="1"><B><U>Ten</U></B> more slaps.</FONT></P></TEXTFORMAT>',
pic("samui-2d.jpg"),
buttons(page17#, "DONE")
);

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Tue Dec 19, 2017 9:14 am
by Drool
I'm not sure if a 'range' command inside a 'button' works anyway. :unsure:
How about this workaround (tested):

Code: Select all

page17#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="1">Still have something to say about it?</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="1"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="1">A. Yes I do!</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="1">B. No M&apos;am!</FONT></P></TEXTFORMAT>',
pic("samui-2d.jpg"),
buttons(17a#, "A", page169#, "B"),
unset(18#,19#,20#)
);


17a#page(
'',
pic("samui-2d.jpg"),
delay(0hrs, range(18,20,'page'), style:hidden)
);


18#page(
'18',
pic("samui-2d.jpg"),
buttons(page17#, "DONE")
);

19#page(
'19',
pic("samui-2d.jpg"),
buttons(page17#, "DONE")
);

20#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="1"><B><U>Ten</U></B> more slaps.</FONT></P></TEXTFORMAT>',
pic("samui-2d.jpg"),
buttons(page17#, "DONE")
);
please note
- the 'help page' 17a that contains the range command
- that pages were renamed page18 -> 18 etc (because 'range' can only jump to pages with pure numbers as names)
- unset(18#,19#,20#) was added in page17 (in case you want the probability for each page always 1 to 3)

Hope that helps :-)

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Fri Jan 05, 2018 1:37 pm
by TrashDick
Pardon the late response, holidays and all that.

I know I've managed to make it work in a button before, I was just a dumbass and scrapped that project without noting down how I did it.

I'll go with your suggested workaround though, I've pulled out too much hair over this already to spend any more time trying to recreate how I originally pulled it off. Thanks for the reply. :love:

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Mon Apr 30, 2018 3:06 pm
by Taeus
Hello all,
I have been working on a tease now, and it all worked fine at the beginning. But now I keep getting this message:

Error contacting server. Try again later or ask for help in the forums.

Does anyone know what causes it, because the servers seem to be working fine.
Thanks

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Tue May 01, 2018 9:57 am
by MisterFlames
There are some words that cause "Error contacting server". I have figured out that you should not use those words in the editor:
  • name
  • limit
  • show
  • distinct
  • having
  • top
  • style
  • where
Sometimes the crash also occur when using secret/hidden delay or putting something in buttons the editor doesn't like. For example exclamation marks can cause those issues. But not always...

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Tue May 01, 2018 12:07 pm
by Taeus
Alright thanks, I will try it out !

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Tue May 01, 2018 12:19 pm
by MisterFlames
Hope it helps :) Those are not all of the words the editor has problems computing though. So you might have to go with trial and error. I will report every problematic word I can find when I find one.

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Sun May 20, 2018 7:39 pm
by AlltrueSC
I am having a problem with Nyx
I was trying to work on my webtease (nyx)" Simulated chat
had written and edited a little, saved it..
wrote a little more went to save again and got a message about connection to server issue
so I logged out
and logged back in
and Neither save was there! :unsure:
Now I didn't lose to much work
But I don't want to be working on Nyx if it can not save my work!

Could you investigate? thanks

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Mon May 21, 2018 1:38 am
by MisterFlames
AlltrueSC wrote: Sun May 20, 2018 7:39 pm I am having a problem with Nyx
I was trying to work on my webtease (nyx)" Simulated chat
had written and edited a little, saved it..
wrote a little more went to save again and got a message about connection to server issue
so I logged out
and logged back in
and Neither save was there! :unsure:
Now I didn't lose to much work
But I don't want to be working on Nyx if it can not save my work!

Could you investigate? thanks
Maybe this helps:
MisterFlames wrote: Tue May 01, 2018 9:57 am There are some words that cause "Error contacting server". I have figured out that you should not use those words in the editor:
  • name
  • limit
  • show
  • distinct
  • having
  • top
  • style
  • where
Sometimes the crash also occur when using secret/hidden delay or putting something in buttons the editor doesn't like. For example exclamation marks can cause those issues. But not always...