Search found 17 matches

by Mr.Aky
Sep 20th, ’23, 06:06
Forum: General Discussion
Topic: operation with integer
Replies: 3
Views: 1036

Re: operation with integer

by Mr.Aky
Sep 19th, ’23, 05:44
Forum: General Discussion
Topic: operation with integer
Replies: 3
Views: 1036

operation with integer

I need to know the integer part of a division.
For example in this code, why the second message (the variable var4) is 2.5 and
not 2 ?

Code: Select all

var1 := 5
var2 := 2

var3 := var1 / var2
var4 := integer (var1 / var2)


MsgBox, %var3%
MsgBox, %var4%
by Mr.Aky
Sep 2nd, ’21, 06:45
Forum: General Discussion
Topic: Forcing Lowercase in TextExpander output
Replies: 2
Views: 546

Forcing Lowercase in TextExpander output

Usually if a text is written in lower case is expanded in lowercase,
if it is written in UPPERCASE is expanded in UPPERCASE.
Is it possible to expand always in lowercase ?
by Mr.Aky
Feb 9th, ’21, 07:08
Forum: General Discussion
Topic: UPGRADE TO VERSION 5 VIDEO AND EXAMPLE
Replies: 1
Views: 1926

UPGRADE TO VERSION 5 VIDEO AND EXAMPLE

After upgrading I find difficult to find what are the new features.
Are the some videos or examples ?

Massimo
by Mr.Aky
May 22nd, ’20, 06:19
Forum: General Discussion
Topic: pasting to excel changes . to , points to comma
Replies: 12
Views: 8551

Re: pasting to excel changes . to , points to comma

Thank you for your support, I'im investing a bug (or something I do not know) of a more complex macro. Do you know why When copy nome.cognome@test.it and put the clipboard value into User_1 When I paste if I use Clipboard:=User_1 Sendinput, %Clipboard% becomes nome,cognome@test,it (with commas) whil...
by Mr.Aky
May 21st, ’20, 06:33
Forum: General Discussion
Topic: pasting to excel changes . to , points to comma
Replies: 12
Views: 8551

Re: pasting to excel changes . to , points to comma

Copy shotcut ClipBoard:="" Send ^c ClipWait Clipboard=%Clipboard% Sleep, 200 User_1 := ClipBoard Paste shortcut Sendinput, %User_1% A copy of nome.cognome@test.it in excel produces nome,cognome@test,it If instead of Sendinput, %User_1% I use Send ^v it pastes correctly nome.cognome@test.i...
by Mr.Aky
May 20th, ’20, 07:33
Forum: General Discussion
Topic: pasting to excel changes . to , points to comma
Replies: 12
Views: 8551

Re: pasting to excel changes . to , points to comma

No, I don't use them

https://www.loom.com/share/ce3048ea5812 ... 0c686090fe

As you can see correctly nome.cognome is sent to libreoffice calc but in the cell I see nome,cognome

Do you have any idea why this happens ?
Or I can I solve this problem ?

Massimo