Vovdv Posted February 28 Report Posted February 28 Hello. Why can't I use another command while the macro for PMDG 737-800 is running? [Macros] 1=GEAR UP OFF 1.1=PMDG_B737-7_GEAR_UP,0 1.2=C1152,8000 1.3=PMDG_B737-7_GEAR_OFF,0 Is there a way to do this in parallel with other commands? Or create your own event? Only I'm not quite sure about that. If someone could tell me and show me an example, I would be very grateful. And one more question. How can I increase the speed by 10 knots on an MCP when I press a button once? There is a PMDG_B737_MCP_IAS_MACH_INC event for this, but it increases by 1 node.
John Dowson Posted March 1 Report Posted March 1 20 hours ago, Vovdv said: Macros] 1=GEAR UP OFF 1.1=PMDG_B737-7_GEAR_UP,0 1.2=C1152,8000 1.3=PMDG_B737-7_GEAR_OFF,0 Does that even work? Should be: Quote Macros] 1=GEAR UP OFF 1.1=P:PMDG_B737-7_GEAR_UP,0 1.2=C1152,8000 1.3=P:PMDG_B737-7_GEAR_OFF,0 i.e. presets names should be preceded by 'P:'. 20 hours ago, Vovdv said: Why can't I use another command while the macro for PMDG 737-800 is running? Macros are ran in the main thread, and will block that thread until it has finished. If a macro is going to take more than a few hundred ms to complete (and you have an 8 second delay there!), you should use a lua script instead. Lua scripts are ram om separate threads. John
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now