Search found 36 matches

by EroticDevelopment
Mon Oct 31, 2022 5:05 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Question: are you thinking about adding support for websockets at some point? I'm playing with a connected toy which I would like to integrate in a tease. It would involve sending commands over the websocket and receiving status information back from the device. I know Rhino doesn't support them, a...
by EroticDevelopment
Tue Aug 30, 2022 5:08 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Hey everyone, just wanted to drop by and provide a brief update. Although not as quickly as I'd like, work is still progressing on GuideMe. At this point my intention is for version 5.0.0 to be the next release. With this version I plan to add a number of exciting features as well as some general ma...
by EroticDevelopment
Wed Apr 06, 2022 5:14 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: Dynamically enable/disable TTS

Question for the devs / feature request: Is it possible to dynamically enable/disable TTS in a guide? I had an idea for a tease mixing traditional follow along on screen segments with other segments that give audio instruction using TTS, but would need to be able to turn that on/off. As far as I re...
by EroticDevelopment
Sat Mar 05, 2022 1:22 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

This was designed deliberately. Global variables are a pain and lead to bad programming practices and code that is hard to maintain / understand. I definitely feel that comment.. I've spent a lot of time in my professional development career working with PHP. In recent versions globals are very muc...
by EroticDevelopment
Fri Feb 25, 2022 12:25 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

put this in a new debug.bat). Maybe we should consider adding this to the build? Yeah, I think it wouldn't hurt. Hopefully these are rare, but it would make debugging easier when they happen. Anyway, yeah, the problem was that issue that shows up periodically where startup.state ends up containing ...
by EroticDevelopment
Fri Feb 18, 2022 4:20 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Yes I ran it in command prompt. Well, if you've got it running in a command prompt and you're seeing messages, but it's not letting you scroll up to see them, then I'm just stumped. It's doing that because of the "start" command in the bat file. "start" causes the command being ...
by EroticDevelopment
Sat Feb 12, 2022 2:59 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

When you check equivalency to an object, Java requires it to be the same instance / same heap address. The existing code is looking to see if it's an object of the same class rather than the same instance. Not so; the current code is comparing the window titles. And, uh, it seems to be working now;...
by EroticDevelopment
Sun Feb 06, 2022 7:31 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

It looks to me like just replacing the places that have if (event.display.getActiveShell().getText().equals(shell.getText())) with if (event.display.getActiveShell() == shell) will fix this one. (And it should get rid of the issue with the Library window too, since it won't be trying to call getTex...
by EroticDevelopment
Sun Jan 30, 2022 4:32 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

That reminds me. There is another issue I've noticed with hotkeys. If you are on page of a tease that has buttons with hotkeys and open the debug window to jump to another page (like while debugging or testing), if you start typing in the dropdown box to enter a page name, if that page name uses an...
by EroticDevelopment
Sun Jan 30, 2022 4:25 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

That reminds me. There is another issue I've noticed with hotkeys. If you are on page of a tease that has buttons with hotkeys and open the debug window to jump to another page (like while debugging or testing), if you start typing in the dropdown box to enter a page name, if that page name uses an...
by EroticDevelopment
Sun Jan 30, 2022 4:20 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Hmmm, I believe the term I'd use is "overzealous" - it makes sense some of the time, but it's doing it all of the time whether it makes sense or not. In any event, adding some new options to control this behavior is definitely on my list of things to look into. (Well, technically it was a...
by EroticDevelopment
Sun Jan 30, 2022 4:11 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

I do plan on removing these as discussed. I don't believe any of that was included in the 0.4.5 release I published, but if I missed something let me know. I did some digging and it looks like that never got put back into master on my fork, so there's nothing code-side for you to do; I can just pul...
by EroticDevelopment
Mon Jan 17, 2022 5:21 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

Done some more experimenting with either adding that XInitThreads call myself or using a newer version of vlcj that does that itself. And I keep getting this error: WARNING: Illegal reflective access by org.eclipse.swt.awt.SWT_AWT (path omitted)/org.eclipse.swt.gtk.linux.x86_64-4.6.1.jar) to constr...
by EroticDevelopment
Mon Jan 17, 2022 5:18 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: Image change with Timer node?

The page text updates as expected, but the image doesn't change. Is that a bug, or just me? I've tried several different versions of Guideme, and variations on the imageId attribute like (image, imageId, imageid) but no joy. imageId is correct (and it is case sensitive). It works for me and I'm not...
by EroticDevelopment
Mon Jan 17, 2022 5:16 am
Forum: Teasing Software
Topic: GuideMe (TeaseMe v2.0) - Current Build 0.4.4
Replies: 1783
Views: 829841

Re: GuideMe (TeaseMe v2.0) - Current Build 0.4.4

As always, please let me know here or in a DM if you have any questions, comments, or concerns. Probably want to remove the reference to the addRepeatTimer functions, since I suggested and you agreed with pulling those out. I've also left comments on some issues that I think are resolved now. I do ...