Page 1 of 1

Help on metronome is tease

Posted: Sun Sep 02, 2012 10:55 pm
by ygpanic
Hey everyone,
Ive been around for a bit now lurking and enjoying all the great teases. Now Ive finally came up with the goods to make a tease of my own. Only problem is I dont get how to get metronome into a flash tease. I know this has been discussed before but I still dont understand. Do I have to use a outside program to get metronome and save it as a file(if so what program do I use). If not pls explain the steps in non Pc savy way. Would be a great help thx

Re: Help on metronome is tease

Posted: Sun Sep 02, 2012 11:18 pm
by Sexytimes 5
Upload your mp3 file. Then once you are completely finished with the visual editor add the sound files manually into the script editor. Don't add the sound and change anything using the visual editor or you will lose the sound files from the script. After adding the sound any future edits or updates will need to made thru the script, not the visual editor. Here is an example:



pic("your pic here"),
delay(15sec, page48#),hidden:sound('Your sound file name here.mp3'));
);


I usually just paste the following into the script and type the exact sound file name between the apostrophies. Don't forget the comma! Look at your uploaded file names to make sure Nyx didn't re-name any of your mp3's by adding no- or something to it.

,hidden:sound(''.mp3));

Re: Help on metronome is tease

Posted: Mon Sep 03, 2012 7:14 am
by Nezhul
Don't really read the post above, because it's written with mistakes.
Basically he's right, all you have to do is add the line in the end of a page. But it actually goes like this:

Code: Select all

hidden:sound(id:'bird.mp3')
However the poster above ripped his example from some code and didnt bother to check what those extra brackets and semicolon signs were FOR.

Also, to mention it, the sound will NOT loop. So your best bet would be to make a 30 second long metronome sound for each speed you need, and if you need a player to stroke longer than 30 seconds - just make a row of a few 30-second pages. A good opportunity to make a slideshow too, instead of keeping 1 picture for several minutes.
Also note that the sound file will be uploaded to the player the moment he sees the page. That creates a problem that if your sound file is too big - there would be a delay before it will start playing for the first time - so keep the size to minimum by making the quality as low as you can (simple beat sound will not actually change that much, but the size will drop a lot)

Re: Help on metronome is tease

Posted: Mon Sep 03, 2012 3:01 pm
by Sexytimes 5
Sorry, don't read this one either. It is to Nezhul.
It might be wrong but it does work. I ripped it directly from one of my Nyx teases which uses sound to be used as a simple example for the author. There is some ripping going on here but I don’t believe it is emanating from me.

I wasn't trying to teach this person how to write code. I was only trying to help by offering an example of "what works" for me in my teases. This is exactly what every line looks like in my teases so there wasn't any need to describe what they mean. They still play so the mistakes must be negligible. Most people don't write in code and don't need or want to know what those things mean. They just want to know how to make it work.

I like the input about the file sizes, loops, and slideshows. I'm curious, it seems like you are directly describing mistakes I’ve made with my teases concerning those things since none of that was mentioned here and I know those are issues with my teases. Maybe I posted something else like this or sent someone a PM about it that you had to correct too. Sorry if that is the case. I will be trying to take your knowledge about this stuff and employing it my future teases. I will be keeping my mouth shut so I don't mislead anyone with my mistakes in the future. Thanks for the constructive criticism about my teases if that was your intent. I appreciate it. 8-)

Re: Help on metronome is tease

Posted: Tue Sep 04, 2012 6:15 am
by Nezhul
Code of the whole page in the studio! ;-)

Re: Help on metronome is tease

Posted: Wed Sep 05, 2012 10:04 pm
by Sexytimes 5
page47#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">Rest for 10 seconds and edge that cock really fast for me again slave. Repeat again and again boy!</FONT></P></TEXTFORMAT>',
pic("allie-rose7.jpg"),
delay(245sec, page48#),hidden:sound('230edge22.mp3', loops: 1));
);

Above is the whole page from which I ripped that example from and this page works even though the loops command and the extra )); stuff apparently isn't needed.


The same page should like this in order not to have errors according to Nezhul.

page47#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">Rest for 10 seconds and edge that cock really fast for me again slave. Repeat again and again boy!</FONT></P></TEXTFORMAT>',
pic("allie-rose7.jpg"),
delay(245sec, page48#)hidden:sound(id:'230edge22.mp3')
);

I wasn't trying to mislead you, only help out and show you what was working for me. Nezhul obviously knows what he's talking about so take a look at his post to learn more: http://www.milovana.com/forum/viewtopic.php?f=2&t=5926
This post may be helpful too: http://www.milovana.com/forum/viewtopic ... 55&start=0

I heard there is a way to use sound files from any tease somewhere but I don't know how other than thru the TeaseMe program. People download Milovana teases and then have the teases and all the files from the teases to use however they want. I make my own metronome mp3 files with a program so if you can't get any it wouldn't be a problem to provide a link for you to download some.

Re: Help on metronome is tease

Posted: Thu Sep 06, 2012 8:28 am
by Nezhul
oh well. Ok it works. It's just that in other parts of the code and extra bracked sometimes ruins the whole tease. This time it just seems to read the first ); as an end of the page, and then the second one it just ignores (or deems an end of another page)
However if you were to put something AFTER your line, it would not be read because your line ends the entire page.