Offline Teases (TeaseMe)
Moderator: 1885
-
wheresmything
- Explorer

- Posts: 62
- Joined: Tue Nov 16, 2010 2:02 pm
Re: Offline Teases (TeaseMe)
d3vi0n and meson1, thanks for taking the time to review. I've been going crazy with work today, so haven't had a chance to try the fix, though what you wrote makes sense mostly. I've been thinking of if-not-set as don't come here if its not set, rather than only come here if it is set. I will try that change (hopefully tomorrow) and let you know. As for placing the set on the regular pages with the delay instead of at the top of the page, that was because in testing I found that it would allow only one page of each group. For instance, if pages 1, 2, & 3 all were in group A: Page 1 gets hit and sets the A flag, neither page 2 nor 3 would load since the flag was already set. I wanted at least 1 of those pages to load, but was fine with all 3 if that's how it worked out, so I moved the set flag elsewhere to remove it from being a page restriction (until it's time to move on). The button on the page with the delay is easy... it's there for debug purposes so I don't have to wait through some long clips or if things get stuck. It will be removed before the final release (so to speak).
Once again, thank you both, I'll let you know how it works out as soon as I've given it a whirl.
Once again, thank you both, I'll let you know how it works out as soon as I've given it a whirl.
-
meson1
- Explorer

- Posts: 93
- Joined: Sun Sep 26, 2010 3:28 pm
- Gender: Male
- Sexual Orientation: Straight
Re: Offline Teases (TeaseMe)
That did not happen for me in my testing. For instance, the following definitely works:wheresmything wrote:... As for placing the set on the regular pages with the delay instead of at the top of the page, that was because in testing I found that it would allow only one page of each group. For instance, if pages 1, 2, & 3 all were in group A: Page 1 gets hit and sets the A flag, neither page 2 nor 3 would load since the flag was already set. ...
Code: Select all
<?xml version="1.0" encoding="utf-8"?><Tease scriptVersion="v0.1"> <Title>Test1</Title> <Url>http://www.milovana.com</Url> <Author id="12717"> <Name>meson1</Name> <Url>http://www.milovana.com/forum/memberlist.php?mode=viewprofile&u=12717</Url> </Author> <MediaDirectory>Test</MediaDirectory> <Settings> <AutoSetPageWhenSeen>true</AutoSetPageWhenSeen> </Settings> <Pages> <Page id="start" unset="A,B,C,D,E"> <Text> <p><b>[INTRODUCTION FOR NEW SLAVES]</b></p> <p>Hi there,</p> <p>I'm Kaiden. Welcome to my test.</p> <p>xoxo</p> <p>Kaiden Kross</p> </Text> <Image id="start.jpg" /> <Button target="tease(1..16)">Go</Button> </Page> <Page id="tease1" set="A"> <Text> <p>1A</p> </Text> <Image id="tutorial/tutorial01.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease2" set="A"> <Text> <p>2A</p> </Text> <Image id="tutorial/tutorial01.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease3" set="A"> <Text> <p>3A</p> </Text> <Image id="tutorial/tutorial01.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease4" set="B"> <Text> <p>4B</p> </Text> <Image id="tutorial/tutorial02.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease5" set="B"> <Text> <p>5B</p> </Text> <Image id="tutorial/tutorial02.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease6" set="B"> <Text> <p>6B</p> </Text> <Image id="tutorial/tutorial02.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease7" set="C"> <Text> <p>7C</p> </Text> <Image id="tutorial/tutorial03.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease8" set="C"> <Text> <p>8C</p> </Text> <Image id="tutorial/tutorial03.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease9" set="C"> <Text> <p>9C</p> </Text> <Image id="tutorial/tutorial03.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease10" set="D"> <Text> <p>10D</p> </Text> <Image id="tutorial/tutorial04.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease11" set="D"> <Text> <p>11D</p> </Text> <Image id="tutorial/tutorial04.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease12" set="D"> <Text> <p>12D</p> </Text> <Image id="tutorial/tutorial04.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease13" set="E"> <Text> <p>13E</p> </Text> <Image id="tutorial/tutorial05.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease14" set="E"> <Text> <p>14E</p> </Text> <Image id="tutorial/tutorial05.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease15" set="E"> <Text> <p>15E</p> </Text> <Image id="tutorial/tutorial05.jpg" /> <Button target="tease(1..16)">Next</Button> </Page> <Page id="tease16" if-set="A+B+C+D+E"> <Text> <p>16 Continue</p> </Text> <Image id="tutorial/tutorial06.jpg" /> <Button target="start" unset="tease1,tease2,tease3,tease4,tease5,tease6,tease7,tease8,tease9,tease10,tease11,tease12,tease13,tease14,tease15,tease16">Start Again</Button> </Page> </Pages></Tease>Re: Offline Teases (TeaseMe)
Have to agree with meson1 on this one. set/unset is only for setting/unsetting flags and has nothing to do with conditions. It doesn't influence if a page will be randomly chosen or not. There must be a condition (if-set/if-not-set) on the same page to influence if it gets chosen. Let's look at the following example:wheresmything wrote:... As for placing the set on the regular pages with the delay instead of at the top of the page, that was because in testing I found that it would allow only one page of each group. For instance, if pages 1, 2, & 3 all were in group A: Page 1 gets hit and sets the A flag, neither page 2 nor 3 would load since the flag was already set. ...
Code: Select all
<Page id="Start"> <Text><p>Start</p></Text> <Button target="Random(1..5)">Choose</Button> </Page> <Page id="Random1" set="A"> <Text><p>Random1</p></Text> <Button target="Start">Back</Button> </Page> <Page id="Random2" set="A" if-not-set="A"> <Text><p>Random2</p></Text> <Button target="Start">Back</Button> </Page> <Page id="Random3" set="B"> <Text><p>Random3</p></Text> <Button target="Start">Back</Button> </Page> <Page id="Random4" set="B" if-set="A"> <Text><p>Random4</p></Text> <Button target="Start">Back</Button> </Page> <Page id="Random5" if-set="A+B"> <Text><p>Exit</p></Text> </Page>Random2 can only be chosen as long as A is NOT set.
Random4 can only be chosen when A is set.
Random5 is the exit and can only be chosen when A AND B are set.
Try GuideMe to play Milovana Teases offline or create your own offline teases with highres images and videos...
Look at Hearts Club or Pilgrim Quest or My Succubus if you wanna see whats possible with GuideMe...
Look at Hearts Club or Pilgrim Quest or My Succubus if you wanna see whats possible with GuideMe...
Re: Offline Teases (TeaseMe)
I am not sure. It is a week ago when I downloaded teaseme. I dont think that I need an update.tommarr wrote:I was having same problem when this tease was first time released. Did you apply hotfix? Also are you running newest version of teasemecumping wrote:It works but I think maybe some parts missing.
I press Caress her = black screen
...
But this tease is needing the CODEC. Now I make a decission, that I don't want to use tease which need the codec. It is a little bit too much work. I always have to go through instalation and deinstalation because I need windows movie maker.
Why is it that chloe games works without CODEC, but it has videos inside? I thought codec is need for videos? But it works witout and fine without codec.
I am looking for...
http://www.milovana.com/webteases/showt ... p?id=20574
http://www.milovana.com/webteases/showt ... p?id=20574
Re: Offline Teases (TeaseMe)
I'm not sure what you want. "The CODEC" doesn't exist. Every video uses a specific video and a specific audio codec. There are many different codecs out there (for example divx or xvid). Each codec has certain advantages and disadvantages. Some codecs compress slowly while decompressing takes less time. Other codecs compress and decompress at the same speed. Some codecs can compress a file to 1/100 of its original size, while other just achieve little compression. Some codecs require a specific operating system, while others require a specific processor. If you're working with Windows Movie Maker you should know all of this.
K-Lite is just a easy way to install all possible needed codecs at once. Most people have no problem using K-Lite and Windows Movie Maker. So maybe you did something wrong.
It has nothing to do with TeaseMe. If you wanna play a video file you'll need the codecs used for this specific file. If TeaseMe doesn't play a video file, there is a simple way to test if you have a codec problem: Try to play the video file with Windows Media Player. If it plays without problems in Windows Media Player, its not a codec problem. If it doesn't play in Windows Media Player, try to install the specific codec for this video file. It shouldn't mess with your Windows Movie Maker.
And last thing: The actual version of TeaseMe is displayed on the first post of this thread (at the moment: v0.1.4). Start TeaseMe and look at the version number in the title of the main window. If they match, you have the actual version of TeaseMe.
K-Lite is just a easy way to install all possible needed codecs at once. Most people have no problem using K-Lite and Windows Movie Maker. So maybe you did something wrong.
It has nothing to do with TeaseMe. If you wanna play a video file you'll need the codecs used for this specific file. If TeaseMe doesn't play a video file, there is a simple way to test if you have a codec problem: Try to play the video file with Windows Media Player. If it plays without problems in Windows Media Player, its not a codec problem. If it doesn't play in Windows Media Player, try to install the specific codec for this video file. It shouldn't mess with your Windows Movie Maker.
And last thing: The actual version of TeaseMe is displayed on the first post of this thread (at the moment: v0.1.4). Start TeaseMe and look at the version number in the title of the main window. If they match, you have the actual version of TeaseMe.
Try GuideMe to play Milovana Teases offline or create your own offline teases with highres images and videos...
Look at Hearts Club or Pilgrim Quest or My Succubus if you wanna see whats possible with GuideMe...
Look at Hearts Club or Pilgrim Quest or My Succubus if you wanna see whats possible with GuideMe...
-
philo
- Explorer At Heart

- Posts: 831
- Joined: Sun Jan 08, 2012 3:10 pm
- Gender: Male
- Sexual Orientation: Straight
- Location: UK
Android Tease Me
Update to the android version
http://code.google.com/p/android-tease- ... loads/list
Added most of the functionality from the PC version
target attribute for audio and video to switch the page after media is played.
start-at attribute for audio and video.
Audio loops now supported.
But not stop at for video or multiple images/ videos etc based on flags
I still need to code this.
Also
New full screen mode in preferences will display the text and buttons on top of the image.
techie stuff
More comments added to source code.
Debug logging added (To see this you need a log viewer I use CatLog and filter on ATM)
Oh and thanks to anyone who voted for Kate's Birthday
I am over half way through writing day 4, but am struggling to find time to work on stuff at the moment, work is a bit mad.
http://code.google.com/p/android-tease- ... loads/list
Added most of the functionality from the PC version
target attribute for audio and video to switch the page after media is played.
start-at attribute for audio and video.
Audio loops now supported.
But not stop at for video or multiple images/ videos etc based on flags
I still need to code this.
Also
New full screen mode in preferences will display the text and buttons on top of the image.
techie stuff
More comments added to source code.
Debug logging added (To see this you need a log viewer I use CatLog and filter on ATM)
Oh and thanks to anyone who voted for Kate's Birthday
I am over half way through writing day 4, but am struggling to find time to work on stuff at the moment, work is a bit mad.
GuideMe
viewtopic.php?f=26&t=12944
viewtopic.php?f=26&t=12944
- PlayfulGuy
- Experimentor

- Posts: 1068
- Joined: Sat Jul 07, 2012 10:08 pm
- Gender: Male
- Sexual Orientation: Bisexual/Bi-Curious
- I am a: Switch
- Dom/me(s): No domme
- Sub/Slave(s): No sub
- Location: British Columbia, Canada
Feature Request for Teaseme
Hey guys. I'm relatively new here and lately I've been playing around with Teaseme. First off let me say I love it. It's great to have those offline teases when I'm not connected, and to be able to create my own special playtimes.
Anyway, I've been experimenting and have a request for a couple features. I know I can achieve the same result with existing features by copying code here and there, it would just be easier to maintain or enhance a tease, and would reduce code duplication.
1) Could you add conditional support (if-set/if-not-set) for <Text> tags. This would allow text on a page to vary depending on what's happened before.
2) Could you add a way to support something like subroutines.
The structure I want to create is like this:
Ideally I could use a button or delay as shown in the line to jump to a punishment, which could be a single page or a series of pages, and then when the punishment was finished a statement like <Delay seconds="60" return> or <button return>Continue</button> would send us back to the preset return point.
The goal is to re-use segments so I don't have to copy the same stuff if I want to include a punishment or whatever at different points in the tease.
Another very common use would be a page or short sequence of pages for stroking for a while between other activities, resting after an edge, etc. You get the idea.
Thanks again for the great program, and for considering the suggestions.
PG
Anyway, I've been experimenting and have a request for a couple features. I know I can achieve the same result with existing features by copying code here and there, it would just be easier to maintain or enhance a tease, and would reduce code duplication.
1) Could you add conditional support (if-set/if-not-set) for <Text> tags. This would allow text on a page to vary depending on what's happened before.
2) Could you add a way to support something like subroutines.
The structure I want to create is like this:
Code: Select all
..... other stuff leading to here..... <Button target="CT(1..3)" >Continue</button> <!-- Select a random toy --> </Page> <Page id="CT1" > <Delay seconds="0" target="Toy_Selected" set="usingCT1" style="hidden" /> </Page> <Page id="CT2"> <Delay seconds="0" target="Toy_Selected" set="usingCT2" style="hidden" /> </Page> <Page id="CT3" > <Delay seconds="0" target="Toy_Selected" set="usingCT3" style="hidden" /> </Page> <Page id="Toy_Selected" > <Text if-set="usingCT1"> <p>Go get toy 1</p> </Text> <Text if-set="usingCT2"> <p>Go get toy 2</p> </Text> <Text if-set="usingCT3"> <p>Go get toy 3</p> </Text> <!-- Show an image --> <Image id="*.jpg" /> <Button target="NextStage">Ready</Button> <Delay target="Took2Long" seconds="60" style="hidden"> </Page> <Page id="Took2Long" > <Text > <p>You know I don't like to be kept waiting slave. What shall we do for your punishment? </p> </Text> <!-- Show an image --> <Image id="*.jpg" /> <Button target="GetPunished" return="NextStage" >Punish me</Button> </Page> <Page id="NextStage"> ........ </Page> Code: Select all
<Button target="GetPunished" return="NextStage" >Punish me</Button>The goal is to re-use segments so I don't have to copy the same stuff if I want to include a punishment or whatever at different points in the tease.
Another very common use would be a page or short sequence of pages for stroking for a while between other activities, resting after an edge, etc. You get the idea.
Thanks again for the great program, and for considering the suggestions.
PG
I'd rather be stroking!
New tease downloader for GuideMe with EOS support.
Downloads of teases I've converted to GuideMe
New tease downloader for GuideMe with EOS support.
Downloads of teases I've converted to GuideMe
-
philo
- Explorer At Heart

- Posts: 831
- Joined: Sun Jan 08, 2012 3:10 pm
- Gender: Male
- Sexual Orientation: Straight
- Location: UK
Re: Offline Teases (TeaseMe)
@playfulguy
Sounds like you are a developer from your comments.
The source code is available to down load for tease me. There is nothing to stop you doing the grunt work and submiting it to the two devs to be included. They have already added the set logic for most of the tags, setting it for text should be easy. They are working on adding variables at the moment I think.
I wanted to try android development so wrote a port rather than asking to join in on the pc version (plus the code has no comments so it is a bit difficult to work out what it is doing
)
The subroutine I think would be a major bit of work to implement a call stack and I suspect most tease authors are not developers and would not use it.
Sounds like you are a developer from your comments.
The source code is available to down load for tease me. There is nothing to stop you doing the grunt work and submiting it to the two devs to be included. They have already added the set logic for most of the tags, setting it for text should be easy. They are working on adding variables at the moment I think.
I wanted to try android development so wrote a port rather than asking to join in on the pc version (plus the code has no comments so it is a bit difficult to work out what it is doing
The subroutine I think would be a major bit of work to implement a call stack and I suspect most tease authors are not developers and would not use it.
GuideMe
viewtopic.php?f=26&t=12944
viewtopic.php?f=26&t=12944
-
wheresmything
- Explorer

- Posts: 62
- Joined: Tue Nov 16, 2010 2:02 pm
Re: Offline Teases (TeaseMe)
OK, with all the help, I was able to get everything working, thank you. I'm left with only 2 questions:
1) There is a "try again" option in the tease, which requires unsetting all the set flags and pages. Is there an option for unset="*" ?
2) The start page uses a pic, as does the end page (they are different pics). I notice that when the final vid ends and the app switches back to pic, the start page pic is displayed for a fraction of a sec before the end page pic loads. Is that normal, or am I doing something wrong?
Thanks
1) There is a "try again" option in the tease, which requires unsetting all the set flags and pages. Is there an option for unset="*" ?
2) The start page uses a pic, as does the end page (they are different pics). I notice that when the final vid ends and the app switches back to pic, the start page pic is displayed for a fraction of a sec before the end page pic loads. Is that normal, or am I doing something wrong?
Thanks
-
meson1
- Explorer

- Posts: 93
- Joined: Sun Sep 26, 2010 3:28 pm
- Gender: Male
- Sexual Orientation: Straight
Re: Offline Teases (TeaseMe)
@wheresmything. I can do a quick answer for question number 1.
Short answer: No.
Long answer: You'll have to unset everything explicitly I'm afraid.
Question 2, I'm not sure about and I don't have time to look right now.
Short answer: No.
Long answer: You'll have to unset everything explicitly I'm afraid.
Question 2, I'm not sure about and I don't have time to look right now.
-
wheresmything
- Explorer

- Posts: 62
- Joined: Tue Nov 16, 2010 2:02 pm
Re: Offline Teases (TeaseMe)
Well, that's what I expected for #1. As for 2, it's no big deal really, just wanted to put it on the radar in case it starts causing problems for others as well.
- PlayfulGuy
- Experimentor

- Posts: 1068
- Joined: Sat Jul 07, 2012 10:08 pm
- Gender: Male
- Sexual Orientation: Bisexual/Bi-Curious
- I am a: Switch
- Dom/me(s): No domme
- Sub/Slave(s): No sub
- Location: British Columbia, Canada
Re: Offline Teases (TeaseMe)
Hi Philo, thanks for the reply. Yes, I am a developer, but with no experience in the platform used to develop teaseme. I could learn, but it's not that important.philo wrote:@playfulguy
Sounds like you are a developer from your comments.![]()
The source code is available to down load for tease me. There is nothing to stop you doing the grunt work and submiting it to the two devs to be included. They have already added the set logic for most of the tags, setting it for text should be easy. They are working on adding variables at the moment I think.
I wanted to try android development so wrote a port rather than asking to join in on the pc version (plus the code has no comments so it is a bit difficult to work out what it is doing)
The subroutine I think would be a major bit of work to implement a call stack and I suspect most tease authors are not developers and would not use it.
Nice to hear variables are in the works. That would help too.
Thanks again
I'd rather be stroking!
New tease downloader for GuideMe with EOS support.
Downloads of teases I've converted to GuideMe
New tease downloader for GuideMe with EOS support.
Downloads of teases I've converted to GuideMe
Re: Offline Teases (TeaseMe)
Hi,
I downloaded everything and it still doesn't work.
It says in windows media player it doesnt support the file.
Can you please help?
I downloaded everything and it still doesn't work.
It says in windows media player it doesnt support the file.
Can you please help?
- janmb
- Experimentor

- Posts: 1658
- Joined: Sun Aug 16, 2009 3:25 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Submissive
Re: Offline Teases (TeaseMe)
In that case you are clearly still missing the necessary codecs. Have you installed K-Lite codec pack?
As long as it wont play in media player it definitely wont play in teaseme either.
As long as it wont play in media player it definitely wont play in teaseme either.
Yes, I most certainly CAN do it again!
- les
- Experimentor

- Posts: 6126
- Joined: Thu Apr 19, 2007 10:04 am
- Gender: Male
- Sexual Orientation: Bisexual/Bi-Curious
- I am a: Dom (Male)
- Sub/Slave(s): My serfs
All 2 True is head Serf - Location: London England
- Contact:
Re: Offline Teases (TeaseMe)
VLC media player
VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia files as well as DVD, Audio CD, VCD, and various streaming protocols.
VLC media player
VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia files as well as DVD, Audio CD, VCD, and various streaming protocols.
VLC media player
Lord Les
Be careful what you wish for!
Growing OLD Is Inevitable,
But Growing UP... Is Optional
OR
Why do I have to stop being a KID now I can afford it.
Be careful what you wish for!
Growing OLD Is Inevitable,
But Growing UP... Is Optional
OR
Why do I have to stop being a KID now I can afford it.

