Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

How to drag links from browser to app?

Featured Replies

  • Author

Hi,

just wanna send some feedback about that problem.So now I did set the SendInput functions into a own thread and till now its working so far without to get the problem again.

                           invoke CreateThread,0,0,offset SendInputData,NULL,NULL,NULL
                           .if eax != FALSE
                               mov esi, eax
                               invoke WaitForSingleObject,esi,INFINITE
                               .if     eax == WAIT_FAILED
                                       invoke CloseHandle,esi
                               .elseif eax == WAIT_OBJECT_0 ; OK
                                       invoke CloseHandle,esi
                               .endif
                           .endif



SendInputData proc Data:DWORD

    invoke RtlZeroMemory,addr INP,sizeof INP
    mov INP.INPUT._type,INPUT_MOUSE
    mov INP.INPUT.mi.dwFlags, MOUSEEVENTF_LEFTDOWN
    invoke SendInput,1,addr INP,sizeof INP
    
    mov INP.INPUT._type,INPUT_MOUSE
    mov INP.INPUT.mi.dwFlags, MOUSEEVENTF_LEFTUP
    invoke SendInput,1,addr INP,sizeof INP

	Ret
SendInputData endp

Not sure why it seems to work now with this method.Otherwise I just hope that it keeps working.Before I also tried to use the mouse_event function (not in thread yet) but this also just failed = hangs inside without to come back anymore = I have to restart the system.

greetz

Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.