Compiled EXE file doesn't formatting

Report problems with documented functionality
kirby
Posts: 2
Joined: 18 May 2018, 09:46

Compiled EXE file doesn't formatting

17 Sep 2018, 02:27

I've following code to remove formatting from copied text on CTRL+SHIFT+v (because Windows 10 unable to do that at all):

Code: Select all

;Paste without formatting
; Source: 
; https://www.howtogeek.com/186723/ask-htg-how-can-i-paste-text-without-the-formatting/

; CTRL+SHIFT+V
$^+v::ReplaceText_PasterWithoutFormatting()

ReplaceText_PasterWithoutFormatting()
{
	ToolTip, Paste w/o formatting...
	
	clipSaved := ClipboardAll	; Save clipboard content
	Clipboard = %Clipboard%   	; Will remove formatting
	Sleep, 100   				; Wait for Clipboard to update
	Send ^v						; Paste
	Clipboard := clipSaved		; Recover clipboard
	
	Sleep, 200
	ToolTip
	
	Return
}
It works fine when open my AHK file.
But compiled version of this code doesn't work.
Bug?.. =)
lexikos
Posts: 9583
Joined: 30 Sep 2013, 04:07
Contact:

Re: Compiled EXE file doesn't formatting

02 Nov 2018, 23:55

What doesn't work?

It works just fine for me, compiled or not.

Return to “Bug Reports”

Who is online

Users browsing this forum: No registered users and 19 guests