Page 52 of 121
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Tue Aug 23, 2016 3:39 am
by d3vi0n
Check your application preferences:
There is a checkbox ("Copy text to clipboard"). Uncheck that box and it will not longer do that.
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Tue Aug 23, 2016 4:27 am
by Shattered
Great that was all it is, solved now thanks!
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Tue Aug 23, 2016 5:41 am
by lola88e
Hi there.. the milovana importer seems to be broken , please fix thanks everyone
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Tue Aug 23, 2016 4:56 pm
by philo
Shattered wrote:Great that was all it is, solved now thanks!
It is a feature not a bug.
A lot of text to speech applications can monitor the clipboard.
So GuideMe can copy the text to the clipboard and the application will then read it out loud.
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Tue Aug 23, 2016 4:59 pm
by philo
lola88e wrote:Hi there.. the milovana importer seems to be broken , please fix thanks everyone
Can you give a few more details on what you mean by broken?
You can't down load the program itself?
It doesn't run?
It doesn't download a tease at all?
It downloads teases but they don't run?
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Wed Aug 24, 2016 8:17 am
by lola88e
Hi, the app halts during download :( it used to work perfectly. With complex flash teases
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Wed Aug 24, 2016 9:06 am
by d3vi0n
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Thu Aug 25, 2016 6:32 pm
by lestrian
is the downloader on github? it takes a long time to download a tease and i assume it is because it downloads the images sequentially. if it would download, say, 20 simultaneously at a time, it would be a lot faster. i'd like to see if i could implement it myself.
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Sat Aug 27, 2016 3:28 pm
by philo
lestrian wrote:is the downloader on github? it takes a long time to download a tease and i assume it is because it downloads the images sequentially. if it would download, say, 20 simultaneously at a time, it would be a lot faster. i'd like to see if i could implement it myself.
There is a small delay between each image (and some pages have multiple images)
I thought it a tad rude to write something that could hammer the site bandwidth.
I have done some work on it recently that I haven't released yet, that handles some of the teases that error at the moment.
There is some more to do on it but hopefully will release it fairly soon.
I will consider removing the delay when I do.
It is on github if you want to create a personal copy
https://github.com/philormand/TeaseMeV2 ... r/Download
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Wed Sep 21, 2016 2:19 am
by Trusfrated
I would find it very helpful and welcome if there could be a hotkey in GuideMe for toggling between window and fullscreen. My situation is such that I have to switch somewhat often, and going into the application preferences menu to check and uncheck a box is somewhat cumbersome and tedious.
I would appreciate it if you would consider this for a future release.
Thank you!

Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Fri Sep 23, 2016 11:17 pm
by taylordawn
is there a way to save just certain pages of a tease?
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Sat Sep 24, 2016 8:36 am
by philo
Trusfrated wrote:I would find it very helpful and welcome if there could be a hotkey in GuideMe for toggling between window and fullscreen. My situation is such that I have to switch somewhat often, and going into the application preferences menu to check and uncheck a box is somewhat cumbersome and tedious.
I would appreciate it if you would consider this for a future release.
Thank you!

Will have a look at this.
The way the SWT framework works in java this means closing the window and re-creating it rather than a change to the current window. So probably wouldn't be very smooth.
Any preference for the hot hey?
Not sure when I will be able to do this, am half way through a change that has taken me ages to do. I keep dropping it in frustration then coming back to it. Will do some changes once it is working (or I decide to abandon the change and revert to the previous version)
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Sat Sep 24, 2016 9:19 am
by philo
taylordawn wrote:is there a way to save just certain pages of a tease?
Do you mean when loading a tease and it goes to the last page you were on?
There is a setting to tell it to always start from the beginning.
If you mean like save points.
There are probably ways to do it but not easy.
I can't think of an easy way, within the tease to know that it is coming to a page due to a load rather than a key press.
Possibly saving the date/time a page was loaded in the page load. And then checking it for them being on the page too long and redirecting also in the page load.
so something like this
Get the saved loadTime
Get the current date
If there is a previous loadTime then if it was more than 30 seconds ago go to Page5 instead
finally if we didn't redirect then save the current time in loadTime
The "s" indicates seconds, but can be d, h, m or s (days, hours, minutes, seconds)
Code: Select all
<Page id="start">
<Text>
<div>Start Page</div>
</Text>
<Image id="" />
<Button target="start2" />
<javascript><![CDATA[
function pageLoad() {
loadTime = scriptVars.get("loadTime");
currTime = new Date();
if (loadTime instanceof Date)
{
if (guide.dateDifference("s", loadTime, currTime) > 30)
{
overRide.setPage("Page5");
}
}
scriptVars.put("loadTime", currTime);
}
]]></javascript>
</Page>
There is a setting that forces the tease to always load the start page.
I will look at enhancing that to add a start on page variable so you can do something like set that flag for your tease, then guide.setStartPage = "Page5" anywhere in javascript would start the page on Page5 when loaded.
That way you could set the page at various points in the tease to bring them back to the relevant page if they drop out of the tease
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Tue Sep 27, 2016 8:20 pm
by guardianx
My pc crashed, so I re-downloaded the latest GuideMe (1.5.6, then 1.6 patch) from links in the 1st page. I noticed the vertical scrollbars that other users have been reporting. The problem again, is defaultCSS.txt file being incorrect.
Here is the proper defaultCSS.txt file for those interested:
Code: Select all
body {
color: white;
background-color: black;
font-family: Tahoma;
font-size:MintHtmlFontSizepx;
}
html, body, #wrapper {
height:100%;
width: 100%;
margin: 0;
padding: 0;
border: 0;
overflow-y: auto;
}
#wrapper td {
vertical-align: middle;
text-align: center;
}
Re: GuideMe (TeaseMe v2.0): BETA Thread
Posted: Tue Sep 27, 2016 8:39 pm
by guardianx
philo wrote:
... If you mean like save points....
"Save Points" can be achieved via checking the getCurrPage() function. Here the code I used that performs pageCheck and redirects to the "start" page. It can easily be modified to redirect to a "save point" instead.
Code: Select all
function pageCheck() {
// If the current page != lastPage, redirect to "start"
var vLastPage = scriptVars.get("vLastPage");
if (vLastPage != "" && vLastPage != "start") {
if (vLastPage == guideSettings.getCurrPage()) {
overRide.setAudio("", "","","","","","","");
overRide.setPage("start");
return false;
}
}
scriptVars.put("vLastPage", guideSettings.getCurrPage());
return true;
}
Then for every <Page>, we perform a quick pageCheck() :
Code: Select all
<Page id="Intro.3">
<javascript>
<![CDATA[
function pageLoad() {
if (!pageCheck()) {return false};
}
]]>
</javascript>
<Text></Text>
<Image id="images/4.jpg" />
<Button target="Intro.4">A</Button>
</Page>
This code is used in my
Super Tease Fighter tease. It redirects the user to the start page whenever the tease is loaded. You can look at that for example of how it works.