Skip to content
View in the app

A better way to browse. Learn more.

The AVSIM Community

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.

Pause and unpause

Featured Replies

Is it possible to use SimConnect to pause and unpause the simulation, and if so how?

>Is it possible to use SimConnect to pause and unpause the>simulation, and if so how?>>You can send the events below to do so.KEY_PAUSE_ON PAUSE_ON Turns pause onKEY_PAUSE_OFF PAUSE_OFF Turns pause offusing SimConnect_TransmitClientEvent and SimConnect_MapClientEventToSimEvent.

Thanks very much, that works nicely. ( I didn't make the connection from the SDK docs).MRG

>Thanks very much, that works nicely. >( I didn't make the connection from the SDK docs).>>MRGThere's a number of events that you may not expect to be there. I've found quite a few things that I didn't think I'd have access to.

What about the full screen toggle + ?Although there may be a better way to achieve what I want to do - see other thread.MRG

  • 8 months later...

>>Is it possible to use SimConnect to pause and unpause the>>simulation, and if so how?>>>>>>>You can send the events below to do so.>KEY_PAUSE_ON PAUSE_ON Turns pause on>KEY_PAUSE_OFF PAUSE_OFF Turns pause off>>using SimConnect_TransmitClientEvent and>SimConnect_MapClientEventToSimEvent.>>I am just having problems with these event ID's. I have done similar events such as Toggle Slew mode, and numerous others. HOwever, I cannot get the PAUSE_TOGGLE, SOUND_TOGGLE, PAUSE_ON, PAUSE_OFF to work. I have tried several things, but this is currently what I have using C#. Can anyone maybe help? Also, what do the numbers 1 and 0 do for the transmitclientevent command?bool Pause = false;enum EVENT_ID { EVENT_KEY_PAUSE_ON, EVENT_KEY_PAUSE_OFF, }simconnect.MapClientEventToSimEvent(EVENT_ID.EVENT_KEY_PAUSE_ON, "PAUSE_ON"); simconnect.MapClientEventToSimEvent(EVENT_ID.EVENT_KEY_PAUSE_OFF, "PAUSE_OFF");private void Pausebutton_Click(object sender, EventArgs e) { if (Pause == false) { simconnect.TransmitClientEvent(1, EVENT_ID.EVENT_KEY_PAUSE_ON, 1, GROUP_ID.GROUP_0, SIMCONNECT_EVENT_FLAG.DEFAULT); Pause = true; } else { simconnect.TransmitClientEvent(1, EVENT_ID.EVENT_KEY_PAUSE_OFF, 1, GROUP_ID.GROUP_0, SIMCONNECT_EVENT_FLAG.DEFAULT); Pause = false; } }

Create an account or sign in to comment

Account

Navigation

Search

Search

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.