Search found 29 matches

by JJussi
Jan 24th, ’19, 05:16
Forum: General Discussion
Topic: Show keyboard manager
Replies: 5
Views: 2628

Re: Show keyboard manager

Yes, I can understand that... But could we have "procedure" what calls that function what shows that clipboad menu? Or some other function what shows selectable list of clipboard items? Problem is that when there is "InputBox" on the screen waiting users input, nothing happens wh...
by JJussi
Jan 24th, ’19, 05:03
Forum: General Discussion
Topic: Result of run to clipboard
Replies: 10
Views: 6331

Re: Result of run to clipboard

Yes, you are right. Same code should work both cases. But at least my case it didn't. First I made (and tested) that code as "Start menu" -item. Then I copy paste that code to Shortcut item and noticed that it don't work. Then I created new Start menu item, just right clicking that Shortcu...
by JJussi
Jan 23rd, ’19, 11:19
Forum: General Discussion
Topic: Result of run to clipboard
Replies: 10
Views: 6331

Re: Result of run to clipboard

I tested that too.. At least, 100 ms pause didn't do any difference. And anyway, that content should be at filecache.
by JJussi
Jan 23rd, ’19, 10:35
Forum: Suggestions
Topic: Bug at shortcuts
Replies: 1
Views: 1748

Bug at shortcuts

Same code RunWait % "C:\Windows\SysNative\bash.exe -c /home/jjussi/randpass.sh > /mnt/c/temp/randpass.txt", , hide FileRead, clipboard, "C:\temp\randpass.txt" at "Start Menu" works fine, but not as "Shortcuts". Both run that first "RunWait" commmand ...
by JJussi
Jan 23rd, ’19, 10:28
Forum: General Discussion
Topic: Show keyboard manager
Replies: 5
Views: 2628

Show keyboard manager

Hi! I need to show "list of keyboard contents" to user before other actions, so user can select right answer from clipboard history. With keyboard, I can use Ctrl-Alt-V, but at the script it doesn't work. clipboard = ; to empty clipboard Send, ^!{v} ClipWait InputBox,.... Is there direct c...
by JJussi
Jan 23rd, ’19, 08:53
Forum: General Discussion
Topic: Result of run to clipboard
Replies: 10
Views: 6331

Re: Result of run to clipboard

This is getting interesting. Same code at "Start Menu" works fine, but not as "Shortcuts". Both run that first "RunWait" commmand and result is saved to that temporary file. Only at "Start Menu" version that result is read to the clipboard. With Shortcuts vers...
by JJussi
Jan 23rd, ’19, 08:36
Forum: General Discussion
Topic: Result of run to clipboard
Replies: 10
Views: 6331

Re: Result of run to clipboard

I found information that 32bit and 64bit don't mix... At C:\Windows\System32 -directory there is lot's of .exe files what you cannot start with direct Run command. You need to use that "virtual" Sysnative directory. What comes to that my script, it echoes result to command line and then en...
by JJussi
Jan 23rd, ’19, 07:39
Forum: General Discussion
Topic: Result of run to clipboard
Replies: 10
Views: 6331

Re: Result of run to clipboard

Hi! I don't understand how I can make !^{Left}^c working. Because bash windows is closed automatically after run of the script. I I put echo -en "!^{Left}^c" at the end of my script, it wouldn't select anything. I'm not yet good with this product. Why "command" Run % "C:\Win...
by JJussi
Jan 22nd, ’19, 12:51
Forum: General Discussion
Topic: Result of run to clipboard
Replies: 10
Views: 6331

Result of run to clipboard

Hi!
This maybe simple, but couldn't find it...

I have (bash.exe) script "RadomPassword" what generates random password as result. How I can copy "result of run command" automatically to clipboard?