StrokesPlus.net
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
beholder  
#1 Posted : Sunday, August 11, 2019 1:25:31 AM(UTC)
beholder

Rank: Advanced Member

Reputation:

Groups: Approved
Joined: 8/9/2019(UTC)
Posts: 91
Slovakia

Thanks: 6 times
Hey, pretty much what the title (subject) says. The task switcher shows for a split second, then disappears.

However when I tried this feature FIRST TIME, it worked, but just for the 1st time.

I think I got this issue fixed with a corrected script. The default script is this:
Code:
sp.SendWinDown();
sp.SendVKey(vk.TAB);
sp.SendWinUp();


.. and it will do exactly what I have described when I pressed [and released] the physical keys on keyboard: show the Task Switcher for a split second and disappear it.

Following code adds Ctrl to the keys pressed and it makes Task Switcher stick to the screen:
Code:
sp.SendWinDown();
sp.SendControlDown();
sp.SendVKey(vk.TAB);
sp.SendControlUp();
sp.SendWinUp();


I am not sure how well this fix will work for others on other systems, I can speak only for Win8.



Rob  
#2 Posted : Wednesday, August 14, 2019 6:30:12 PM(UTC)
Rob

Rank: Administration

Reputation:

Groups: Translators, Members, Administrators
Joined: 1/11/2018(UTC)
Posts: 1,349
United States
Location: Tampa, FL

Thanks: 28 times
Was thanked: 416 time(s) in 354 post(s)
This works fine for me on Win 10

sp.SendModifiedVKeys([vk.LWIN], [vk.TAB]);

I don't have a Win 8 machine or VM around to test.
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.