-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Opening Task View by holding the back arrow will hide the "X" #14
Comments
Could we use the DWM API to accomplish this without simulating the keystroke? The last answer in this stackoverflow question seems to indicate that we can activate it programmatically in the same way as Flip3D from Vista. Perhaps that will preserve the "X"? It seems to indicate we can call an undocumented DWM API to invoke Flip3D/Task View, it might be a little hacky and I'm not too sure how to call ordinals from C#... In fact, looks like it can be done with something similar: [DllImport("dwmapi", EntryPoint = "#105")]
extern static void InvokeTaskView(); Then call |
Unfortunately it doesn't work because that entry point on ordinal 105 will always return "0" without doing anything. (address pointed to DwmpEnableDDASupport(), ordinal 143) Btw thank you, there is another way, but it's a bit hard to achieve :)))) |
No problem, just trying to help where I can! Glad to know it wasn't just my PC not doing anything when I used rundll32 to try it. I wonder if Microsoft changed the function for trigger Flip3D then. |
please just update the original product so millions could use it
…On Wed, Sep 11, 2019 at 10:14 PM ShadowEO ***@***.***> wrote:
No problem, just trying to help where I can! Glad to know it wasn't just
my PC not doing anything when I used rundll32 to try it.
I wonder if Microsoft changed the function for trigger Flip3D then.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#14?email_source=notifications&email_token=AIRXJSC7BHNZZIJXKSIYCQTQJERQRA5CNFSM4HYNXVU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6PG5MI#issuecomment-530476721>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AIRXJSBXBSDA3O3VUSEGL53QJERQRANCNFSM4HYNXVUQ>
.
|
I already addressed this in the other comment, if he didn't respond to it there, what made you think he'd respond to it here? ADeltaX is a hobbyist developer, not a full-time employee of the community. He didn't need to release anything, you should be grateful he even released the code at all and that you guys have this much, let alone released it as FOSS so it could be continued if he ever dropped it. I'm not truly affiliated with the project, and the only real project developer here is ADeltaX (I just keep a personalized fork of my own), but your behavior really grinds the gears of many FOSS developers. It's not cool. |
I am sorry if i have offended anyone.. I wasn't being a jerk. I just
wanted DEV to know that how much people are passionate about his work. I my
self am not a dev so i cant continue this project. I Just wanted him to
know that people want this project to be updated... I used the windows
store app othis project and was feeling so hopeful!
Anyway :) thanks
…On Thu, Sep 12, 2019 at 3:08 AM ShadowEO ***@***.***> wrote:
please just update the original product so millions could use it
… <#m_5515844484972881792_>
On Wed, Sep 11, 2019 at 10:14 PM ShadowEO *@*.***> wrote: No problem,
just trying to help where I can! Glad to know it wasn't just my PC not
doing anything when I used rundll32 to try it. I wonder if Microsoft
changed the function for trigger Flip3D then. — You are receiving this
because you are subscribed to this thread. Reply to this email directly,
view it on GitHub <#14 <#14>?email_source=notifications&email_token=AIRXJSC7BHNZZIJXKSIYCQTQJERQRA5CNFSM4HYNXVU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6PG5MI#issuecomment-530476721>,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AIRXJSBXBSDA3O3VUSEGL53QJERQRANCNFSM4HYNXVUQ
.
I already addressed this in the other comment, if he didn't respond to it
there, what made you think he'd respond to it here? ADeltaX is a hobbyist
developer, not a full-time employee of the community. He didn't need to
release anything, you should be grateful he even released the code at all
and that you guys have this much, *let alone released it as FOSS so it
could be continued if he ever dropped it*.
I'm not truly affiliated with the project, and the only real developer
here is ADeltaX, but your behavior really grinds the gears of many FOSS
developers. It's not cool.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#14?email_source=notifications&email_token=AIRXJSANZFHWZHY3PQN2LN3QJFT7LA5CNFSM4HYNXVU2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6QBQPI#issuecomment-530585661>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AIRXJSBRFB5NOC4PTMJLNTDQJFT7LANCNFSM4HYNXVUQ>
.
|
This is because we use keystrokes to invoke the task view (The X automatically hides when a keyboard or mouse is used, keystrokes "simulates" a keyboard)
The text was updated successfully, but these errors were encountered: