Search found 91 matches

by Wavget
Fri Apr 22, 2022 5:26 pm
Forum: Typeitin
Topic: increasing and decreasing a variable
Replies: 1
Views: 14359

Re: increasing and decreasing a variable

It appears there is an issue with the un-numbered variable 'var'. Numbered variables like 'var1' are OK.

{Var1=2}{Var1}{Enter}{Var1 -1}{Var1}{Enter}{Var1 +1}{Var1}{Enter}{Var1 *2}{Var1}{Enter}{Var1 /2}{Var1}{Enter}
2
1
2
4
2

Thanks for letting me know. It will be fixed in the next (beta) version.
by Wavget
Fri Apr 22, 2022 5:05 pm
Forum: Pasteitin
Topic: Pasteitin V1.8 beta 4 available
Replies: 0
Views: 28753

Pasteitin V1.8 beta 4 available

You can download the latest beta version here . This is what is new in Pasteitin version 1.8: Beta 4 * Added favorite color combinations to color dialog. You can now save a favorite button color combination for easier access. * Added QuickFix to format number. The number format QuickFix function now...
by Wavget
Fri Apr 08, 2022 9:30 am
Forum: Typeitin
Topic: How do I upgrade
Replies: 3
Views: 17458

Re: How do I upgrade

You don't have to log into the store to purchase the upgrade.

Just continue and enter your information.

Regards,
Paul.
by Wavget
Tue Apr 05, 2022 6:41 pm
Forum: Typeitin
Topic: Control+B Bold text
Replies: 1
Views: 14732

Re: Control+B Bold text

Control B toggles Bold, so you need one Control B before to turn Bold on and another one after the text to turn it off. The same works for Underline, Control U. {Ctrl b}{Ctrl u} Confidentiality, Non-Disclosure, Non-Solicitation Agreement {Ctrl b}{Ctrl u} Also, Control I works to turn Italic on and o...
by Wavget
Sun Mar 27, 2022 6:34 pm
Forum: Typeitin
Topic: How do I upgrade
Replies: 3
Views: 17458

Re: How do I upgrade

You can purchase a license upgrade to the Network version at a reduced cost at
https://www.wavget.com/product/typeitin ... k-upgrade/
by Wavget
Fri Mar 18, 2022 9:40 am
Forum: Typeitin
Topic: Any way to export to text file?
Replies: 1
Views: 14851

Re: Any way to export to text file?

With the Professional version the only way to 'export' a button is to type it into Notepad and save it as a text file. In the Network or Enterprise version you can use the Export function to save a group of buttons to a Comma Separated Value (CVS) file you could open and manipulate in Excel. Regards...
by Wavget
Thu Mar 10, 2022 1:05 pm
Forum: Typeitin
Topic: Special Functions Future Date
Replies: 2
Views: 15695

Re: Special Functions Future Date

You can add 45 days to the current date like this:

{Date mm/dd/yyyy,45}

Today, 03/10/2022, this would type 04/24/2022.

This function also works with negative numbers to subtract days:

{Date mm/dd/yyyy,-45}

Today, 03/10/2022, this would type 01/24/2022.
by Wavget
Sat Jan 29, 2022 9:59 am
Forum: Typeitin
Topic: Type Out Clipboard
Replies: 1
Views: 15003

Re: Type Out Clipboard

{Var1 GetClip}{Var1} copies the content of the clipboard into variable #1 and then types variable #1.

You can verify that it types the content by slowing things down a little bit

{Var1 GetClip}{Speed 250}{Var1}

This may also help the textbox to recognize it as typing.
by Wavget
Sun Jan 02, 2022 1:10 pm
Forum: Typeitin
Topic: Increase typing speed
Replies: 2
Views: 16912

Re: Increase typing speed

Most likely this is because the program you are typing into is having trouble keeping up with Typeitin. Try the same button in a simple program like Notepad. Complex programs like Microsoft Word do a lot of background processing that slows down input processing. The fastest typing is likely when the...
by Wavget
Wed Dec 08, 2021 4:45 pm
Forum: Typeitin
Topic: Typeitin within Typeitin
Replies: 1
Views: 15442

Re: Typeitin within Typeitin

You can use the Variable prompt to ask for user input. {Var1 =?Time Zone? E/C/M/P} The response, e, c, m, or p, will be stored in variable #1. The time zone is {If (Var1=e) [Eastern Standard Time]} {If (Var1=c) [Central Standard Time]} {If (Var1=m) [Mountain Standard Time]} {If (Var1=p) [Pacific Sta...