Hi,
As shown in this screen-recording (http://bit.ly/2wirjfo), the universal clipper not capturing from certain webpages accessed using Chrome and Chromium variations (e.g. Slimjet). Instead, the last clipboard item is being inserted. Using Firefox there is no issues at all.
If you select certain amount of content, the clipper works. But if you select all content (i.e. ctrl+a then clip) is when the problem always happens.
An example of webpage the clipper isn't working properly:
Wikipedia in general when selected content goes beyond "References" heading:
Thank you!
Carlos
--------------------------------
System Info:
Windows 10 Pro 64bit (Build=17763.475)
Dell XPS 15 9570
Core i7-8750H
Graphics Intel UHD 630 + NVIDIA GTX 1050Ti 4GB
Memory 16GB DDR4
HDD SSD NVMe SK hynix 512GB
Dell UltraSharp 27" U2719D (2560x1440 scaled 120%)
Comments
; InfoQube - Clip to item workaround for Chrome browser only
#IfWinActive, ahk_exe chrome.exe
#!x:: ; set your IQ clip to item shortcut / AHK modifiers (# Win / ! Alt / ^ Ctrl / + Shift)
send ^c ; copy to clipboard before launching IQ clipper
Sleep 100
send #!x ; set IQ clip to item shortcut again
return
#If
; InfoQube - Clip to item workaround GLOBAL
#!x:: ; set your IQ clip to item shortcut / AHK modifiers (# Win / ! Alt / ^ Ctrl / + Shift)
send ^c ; copy to clipboard before launching IQ clipper
Sleep 100
send #!x ; set IQ clip to item shortcut again
return