Page 26 of 59

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Fri Nov 16, 2018 9:35 pm
by ski23
VoIDoo wrote: Fri Nov 16, 2018 9:33 pm Now its working. I had clicked a broken link which wanted a decrytion key for downloading the experimental build. Just got the same link from the previous page. Thanks for the support :)
Great! Let me know if you have any other issues or questions.
By the way there are some links in my signature that you might find helpful to get started.

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Fri Nov 16, 2018 10:46 pm
by Lucifie
I have loaded your personality and also had a look at the folders. I am not sure how this can be used to create a game that needs work at the core and not just scripting.

I guess the scripts call some core functionalities to do something on the main form (write something, play sound, show media,...). But what if I want to make an own form and add functionalities there? Connecting to a local database for example. Can they be called from other modules or have they to be included in the core? Can those scripts be seen like modules in .NET? Do I have to create a personality to create something?

I am new to java and dont know the concept of your application :look: Sorry for the questions.

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Fri Nov 16, 2018 11:33 pm
by ski23
VoIDoo wrote: Fri Nov 16, 2018 10:46 pm I have loaded your personality and also had a look at the folders. I am not sure how this can be used to create a game that needs work at the core and not just scripting.

I guess the scripts call some core functionalities to do something on the main form (write something, play sound, show media,...). But what if I want to make an own form and add functionalities there? Connecting to a local database for example. Can they be called from other modules or have they to be included in the core? Can those scripts be seen like modules in .NET? Do I have to create a personality to create something?

I am new to java and dont know the concept of your application :look: Sorry for the questions.
All the scripting is done in javascript and it uses java underneath so you can use any function, or object in java or javascript. This will let you accomplish nearly anything you can think of. There are some examples of how to use java on the wiki. Also, if you can give me an example of what you want to do, I can show you how to do that. Also, when you say database, what do you mean exactly, an actual database like MySQL or MSSQL server, or loading data from sort of file. I can’t see what purpose you would have to use a sql database. Also, when you say create an own form, I think you mean create your own gui page. This can be done using javafx in the scripts through nashorn. If you could clarify and give me some more details of what you’re trying to accomplish, I can help more.

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Sat Nov 17, 2018 9:27 am
by silverpanda
Hi I have installed java from the link provided and unzipped the first file with 7zip but cannot open TeaseAI, it just dosnt do anything at all when I click on it.

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Sat Nov 17, 2018 5:13 pm
by ski23
silverpanda wrote: Sat Nov 17, 2018 9:27 am Hi I have installed java from the link provided and unzipped the first file with 7zip but cannot open TeaseAI, it just dosnt do anything at all when I click on it.
Download the experimental build for now from this url: https://mega.nz/#!P7YFwQbb!T-2ByDs9oX2S ... KMHUpL8CXQ
This should work for you

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Sat Nov 17, 2018 6:44 pm
by Lucifie
Also, when you say database, what do you mean exactly, an actual database like MySQL or MSSQL server
Its an *.accdb database which is stored localy. I managed to get access to it and build some forms and datagrids in .NET to modify the data add new entries and so one. Building such connections and tables in javascript without any knowledge of the java language and tools is currently far above my head :unsure:

I want to use it as interface to get data in the application from external sources. Other applications can add and modify data in the table and the application can use it then.

For example - The application uses table X, Y and Z
- The application can change values in table X and Y but not in Z (read only)
- An other external application can edit table Z but not table X and Y

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Sat Nov 17, 2018 7:06 pm
by ski23
VoIDoo wrote: Sat Nov 17, 2018 6:44 pm
Also, when you say database, what do you mean exactly, an actual database like MySQL or MSSQL server
Its an *.accdb database which is stored localy. I managed to get access to it and build some forms and datagrids in .NET to modify the data add new entries and so one. Building such connections and tables in javascript without any knowledge of the java language and tools is currently far above my head :unsure:

I want to use it as interface to get data in the application from external sources. Other applications can add and modify data in the table and the application can use it then.

For example - The application uses table X, Y and Z
- The application can change values in table X and Y but not in Z (read only)
- An other external application can edit table Z but not table X and Y
I’m not sure what type of devices you’re looking to interface with but here are some guides/posts that you might find useful for accessing accdb with java:
https://stackoverflow.com/questions/633 ... ccess-2010
https://gist.github.com/knowbody/5139388
https://coderanch.com/mobile/t/644133/d ... n-NetBeans

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Sun Nov 18, 2018 9:25 pm
by lot5000
Good. Another OSX user :)

I do not remember how I have solved similar problem with different JAVA versions. But I needed to edit some library files or bash_profile. Try first to look what you have there:
/Library/Java/JavaVirtualMachines/
(to go there - in Finder - GO -> Go to folder -> /Library/Java/JavaVirtualMachines/)

Also you might try this:
https://springorama.wordpress.com/2018/ ... with-jenv/
playyyer wrote: Wed Nov 14, 2018 7:57 pm And when I attempt to launch it by clicking, it says I have java version 1.8, even though I just installed 11.

MacOS 10.14.1

java -version
java version "11.0.1" 2018-10-16 LTS
Java(TM) SE Runtime Environment 18.9 (build 11.0.1+13-LTS)
Java HotSpot(TM) 64-Bit Server VM 18.9 (build 11.0.1+13-LTS, mixed mode)

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Sun Nov 18, 2018 9:29 pm
by ski23
lot5000 wrote: Sun Nov 18, 2018 9:25 pm Good. Another OSX user :)

I do not remember how I have solved similar problem with different JAVA versions. But I needed to edit some library files or bash_profile. Try first to look what you have there:
/Library/Java/JavaVirtualMachines/
(to go there - in Finder - GO -> Go to folder -> /Library/Java/JavaVirtualMachines/)

Also you might try this:
https://springorama.wordpress.com/2018/ ... with-jenv/
playyyer wrote: Wed Nov 14, 2018 7:57 pm And when I attempt to launch it by clicking, it says I have java version 1.8, even though I just installed 11.

MacOS 10.14.1

java -version
java version "11.0.1" 2018-10-16 LTS
Java(TM) SE Runtime Environment 18.9 (build 11.0.1+13-LTS)
Java HotSpot(TM) 64-Bit Server VM 18.9 (build 11.0.1+13-LTS, mixed mode)
This issue is a new one caused by java 11. Using the experimental build should fix this issue.

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Thu Nov 22, 2018 10:29 pm
by ski23
Keermirr wrote: Thu Nov 22, 2018 10:12 pm Sorry if this question is already answered. Somebody running it under linux? My java 11 is actually 10.0.2 for some reason. :-/
I’m not sure I understand you exactly. Java 10 should work fine too. Thats what I use. Are you encountering an error or issue. If so, what is the error message you’re getting.

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Fri Nov 23, 2018 10:02 pm
by Bonsai50
Hello,
a user tell me about teaseAI-java !

What all need I do get start whis TAI-J ?
where can I download the PRG and the pic`s and a domme ?

I am german so here manny place that tell over TAI-J .

Have you links for the prg and pics and a domme `?

Big thank you to you to help me !

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Fri Nov 23, 2018 10:20 pm
by ski23
Bonsai50 wrote: Fri Nov 23, 2018 10:02 pm Hello,
a user tell me about teaseAI-java !

What all need I do get start whis TAI-J ?
where can I download the PRG and the pic`s and a domme ?

I am german so here manny place that tell over TAI-J .

Have you links for the prg and pics and a domme `?

Big thank you to you to help me !
You should be able to get all the links u need in my signature. You can download TAJ in this thread. Make sure to download the experimental version if you are using java 11. Then download Mischevious to get started.

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Mon Nov 26, 2018 4:22 pm
by Spielers
Hey I download Tease AI Java and the jdk 11.01 and it still don't open the program.

On my old pc it runs but there is Tease AI Java 1.012 and jdk10.

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Mon Nov 26, 2018 4:35 pm
by ski23
Spielers wrote: Mon Nov 26, 2018 4:22 pm Hey I download Tease AI Java and the jdk 11.01 and it still don't open the program.

On my old pc it runs but there is Tease AI Java 1.012 and jdk10.
Download the experimental version here:
https://mega.nz/#!P7YFwQbb!T-2ByDs9oX2S ... KMHUpL8CXQ

Re: [Tease Program] Tease-AI Java (1.0.15)

Posted: Tue Nov 27, 2018 7:09 pm
by Bonsai50
I have downloading the java tease AI !

But the AI is running verry fast ! I have it set to slow, but is so verry fast that I can not read or see annything.

I hope you understand me. I run Mischevious Tease AI Java Personality.

Please can you help me what I make wrong?