Page 11 of 24

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Wed Apr 29, 2009 10:16 am
by zooft
Is it at all possible for thoose responsible to fix the cpu-hang issues of nyx ? I have a tease that will have around 150 pages, 8 soundfiles and aprox 100 images, so bugging the script is virtually impossible.

Would it be possible to just upload a script file, instead of pasting it into a text window ?

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Sun May 03, 2009 11:04 pm
by zooft
Hot tip for bugging code (buggy code makes nyx go wild) : use notepad ++ and select language matlab. It adds good colour coding to the code. For me it revealed that the use of ' in text entry is not good.

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Fri Jun 26, 2009 4:57 am
by tallguy2241
Ok...I'm trying to write a more involved flash tease, using random pages, and I had a few questions:

When the tease jumps to a random page, is that page "set", such that it cannot come up again?

Is there a way to set it up so that a page cannot fire randomly unless certain other pages have triggered?

Thanks for any advice.

Tallguy

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Fri Aug 07, 2009 6:44 pm
by schlegL
Hey,

can anyone tell me how to display larger images? I can only find the configuration for the font size, but where can I set the size of the images? (because my high quality images are displayed very small)

Thx!

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Tue Aug 25, 2009 5:13 pm
by cumhardy
Hey, is it possible to make the text appear above the image instead of below?

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Mon Sep 14, 2009 8:10 pm
by Teaser
Is this thread still active?

I was trying to build a first tease and it would really be helpful to have a command / syntax reference as it was already asked in 2007 and 2008. Especially I cannot figure out how to set and unset pages. After a preview the pages are set and even a "reset" and then a new preview from the start page does not work as the pages are still SET. Is there a "unsetall" command available which I can put on the #start page?

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Mon Sep 14, 2009 10:10 pm
by Evals
Teaser wrote:Is this thread still active?

I was trying to build a first tease and it would really be helpful to have a command / syntax reference as it was already asked in 2007 and 2008. Especially I cannot figure out how to set and unset pages. After a preview the pages are set and even a "reset" and then a new preview from the start page does not work as the pages are still SET. Is there a "unsetall" command available which I can put on the #start page?
This is this but I don't think all of it has been implented yet?

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Tue Sep 15, 2009 8:25 pm
by Teaser
Just stumbles across an error. I have 2 teases in the pipeline, one male, one female version. I uploaded all images to the male version and it is complete now, just yet unpublished.
Then I switched to work on the female version in the tab "teasemanager". Uploaded the other images for the female version. They do not show up in the media pane... so I went back to the male version to have at least one version complete... guess what, all images (male and female version) were in the media pane of this tease... wtf? How do I get my media into the appropiate teases. Anyone tried to handle more than one tease?

Oh, yes and I cannot delete the surplus images either... tried Safari 4 and Firefox 3.5 with flash player 10.

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Sun Sep 20, 2009 5:44 am
by BoredOMK17
Alright I've never seen this thread, and I've never used Nyx.
I have a couple teases I'm working on right now in the normal editor.
I figured maybe I could begin using nyx.

At first I thought it would be more intimidating, I thought I'd have to know programing.
But its really just a more organized flash editing "program" I guess huh?
Although you have the option to add programming language into a box I think?

Well anyways, I'm having troubles uploading images.
I don't know if their too large, it doesnt say they are.
But I'm getting 2 error messages and the image never fully uploads.
Really frusterating. The first error message has something to do with bubbles?
The second error message says:

[HTTPStatusEvent type="httpStatus" bubbles=false cancelable=false eventPhase=2 status=500]

Aight? So can you guys help me figure this out? Thanks for any help.

audio and video help

Posted: Mon Oct 05, 2009 7:59 pm
by submichael
hi,

i'm almost done creating my first flash tease and i'd like to add some audio and video files to it.

i've seen other teases with audio embedded so i know that can be done. i've looked thru the thread, but it's gotten very long and am having a hard time finding instructions on how to do it.

i'd also like to add some video files to future teases. not sure that can really be done.

any help would be GREATLY appreciated.

thanks.

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Tue Oct 13, 2009 1:41 pm
by green
Hello submichael,

Video Files can't be implemented yet. For Audio files, you can just use the sound command.

Example:

Code: Select all

2#page(
'Sound Example',
pic("*.jpg"),
go(#nexpage),
hidden:sound('yoursound.mp3')
)
remember to upload your mp3file to the media library first ;)

-green-

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Tue Oct 13, 2009 3:03 pm
by green
cumhardy wrote:Hey, is it possible to make the text appear above the image instead of below?
If you still need it ;-)

Code: Select all

6#page(,
  vert(
    text('Text above an image'),
    pic("*.jpg")
  ),
go(#test)
);

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Wed Oct 14, 2009 12:24 pm
by submichael
thanks green, but i must be doing something wrong. file is uploaded. below is the script for that page. would you mind taking a look at it and see if you can tell me how i screwed it up?

Page4feeta#page(
'Sound Example',
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">Now suck on my toes.</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">God, I love that feeling!</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">you&apos;re rather talented with your mouth slut. you&apos;re actually making Me a little wet.</FONT></P></TEXTFORMAT>',
pic("no-106.jpg"),
hidden:sound ('dirtysweatyfeet.mp3')
delay(2min, Page5#,style:hidden)
);


i really appreciate the help. i believe the audio will make it a much better tease.

submichael

Re: Nyx - The FlashTease Editor - Public Preview Release

Posted: Wed Oct 14, 2009 1:45 pm
by green
hey there again.

You forgot a comma after "hidden:sound ('dirtysweatyfeet.mp3')", and the first area with "'Sound Example'" was supposed to be the space for your text.

Heres the fixed version ;)

Code: Select all

Page4feeta#page(
text:'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">Now suck on my toes.</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">God, I love that feeling!</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">you&apos;re rather talented with your mouth slut. you&apos;re actually making Me a little wet.</FONT></P></TEXTFORMAT>',
pic("no-106.jpg"),
delay(2min, Page5#,style:secret),
sound('dirtysweatyfeet.mp3')
);

Random Pages

Posted: Fri Nov 06, 2009 5:41 pm
by submichael
is there a way to have a button or timer go to a group of random pages?

here's the scenerio......let's say the sub fails a task and deserves a punishment. is there a way to make it that the punishment is not always the same by going to different pages?

am i explaining that well?