Search found 91 matches

by Wavget
Thu Nov 11, 2021 12:02 pm
Forum: Typeitin
Topic: Drag and Drop No Longer Working
Replies: 1
Views: 19022

Re: Drag and Drop No Longer Working

To enable Typeitin to type in all other programs it runs at an elevated level compared to a regular Windows user. For security reasons Windows does not allow interaction between a user level program like Windows Explorer and an elevated program like Typeitin. If you install Typeitin in a folder othe...
by Wavget
Thu Nov 11, 2021 9:52 am
Forum: Typeitin
Topic: Running Multiple Programs as One
Replies: 1
Views: 17844

Re: Running Multiple Programs as One

You could create a button that starts gzdoom and uses mouse functions to drag the other programs to it. However, it seems gzdoom accepts command line parameters to start. https://zdoom.org/wiki/Installation_and_execution_of_ZDoom https://zdoom.org/wiki/How_to_autoload_files This may work {run A:\Gam...
by Wavget
Wed Nov 03, 2021 2:54 pm
Forum: Typeitin
Topic: Rounding Variables (Currency Values)
Replies: 1
Views: 18382

Re: Rounding Variables (Currency Values)

Not sure this is simple-ish, but here is a solution. {Var1=12.34} //store the result into Variable #1 {Length 2,{Var1}} //get the length of the number and store it into variable #2 {If (Var2=4) [{Var1}0]} //if the length is 4 the number is missing a zero. type the number and type an extra zero {If (...
by Wavget
Mon Oct 25, 2021 2:24 pm
Forum: Typeitin
Topic: Restore from backup
Replies: 1
Views: 19653

Re: Help Needed

To restore your buttons you need two files, datafile.enc (enc file) and typeitin.ini (Configuration settings). If you have date coded backup files like datafile.enc.211024 , make sure you use the typeitin.ini file with the same data code, like typeitin.ini.211024 . To restore your buttons, right cli...
by Wavget
Sat Oct 16, 2021 12:30 pm
Forum: Typeitin
Topic: Random & List
Replies: 1
Views: 18368

Re: Random & List

1. You can use the random function to select and type a section of a string. {Var1=RA1,LA1,RA2,LA2,RB1,LB1} Store the list in a variable. All items have to be the same length {Var2 Random 6} Generate a random number between 1 and the number of items {Var2={Var2}-1} Subtract 1 to make the random numb...
by Wavget
Mon Oct 11, 2021 10:58 am
Forum: Typeitin
Topic: Typeitin V3.6 beta 5 available - V3.6 Released!
Replies: 3
Views: 24727

Re: Typeitin V3.6 beta 4 available

Added the SPLIT and SPLITCSV that can be used to split a string separated by a delimited into separate strings. Usage: {Split input_string, separator_character, var_num_columns, var_column_one} Input_string: String to be split. Separator_character: Delimiter character. Var_num_columns: Variable numb...
by Wavget
Sat Oct 09, 2021 1:02 pm
Forum: Typeitin
Topic: Reading CSV Files
Replies: 1
Views: 18610

Re: Reading CSV Files

Typeitin currently does allow for some text manipulation, but it is not easy to separate text based on a delimiter. I've added two new functions to the upcoming beta version, SPLIT and SPLITCSV. SPLIT uses a specified delimiter while SPLITCSV uses comma by default. Typeitin V3.6 beta 4 should be ava...
by Wavget
Sat Oct 09, 2021 12:05 pm
Forum: Typeitin
Topic: 3.1
Replies: 1
Views: 18234

Re: 3.1

To upgrade your Typeitin Professional license to the latest version 3.5 there is a small ($2.95) maintenance fee. You can purchase it at https://www.wavget.com/product/typeitin-professional-maintenance/ To restore your buttons from a previous version you will need two files, datafile.enc and typeiti...
by Wavget
Tue Sep 21, 2021 5:18 pm
Forum: Typeitin
Topic: Typeitin V3.6 beta 5 available - V3.6 Released!
Replies: 3
Views: 24727

Re: Typeitin V3.6 beta 1 available

Thank you for the suggestion. I think it would improve the readability when creating complex buttons.

I also think that adding a type function that can be used inside the code block might be a good idea.

{Begin Code}

{Var1=Hello}
{Var2=World}

{Type This program say's {Var1} {Var2}!}

{End Code}
by Wavget
Tue Sep 21, 2021 10:14 am
Forum: Typeitin
Topic: Using GetMouse
Replies: 1
Views: 18155

Re: Using GetMouse

You can assign a shortcut key to the button to activate it. In the Button Edit window, click on the Shortcut Key button to open the shortcut key window. As an example, check the Alt and Control boxes and select A from the character list. Then click the Update Key button. Close the shortcut key windo...