Hey Paulo-
In the "Keyboard/GPI Mapping" area, you should be able to drag a "Script Action" into the Project Shortcuts. Then, you'll edit the script action (Sub OnKeyPress) to do something like this...
Option 1, if you always want to play a scene director from a particular scene:
dim Scene as xpScene
dim sd as xpSceneDirector
Engine.GetSceneByName("ExampleScene", Scene, false)
Scene.GetSceneDirectorByName("ExampleSceneDirector", sd)
sd.play
Option 2, if you want to play a particular scene director for whatever scene is on framebuffer 1, layer 1:
dim output as xpOutputFrameBuffer
dim onlineScene as xpScene
dim sd as xpSceneDirector
engine.Getoutputframebuffer(0, output)
output.GetSceneonlayer(1, onlineScene)
onlineScene.GetSceneDirectorByName("ExampleSceneDirector", sd)
sd.Play
Once you get a script working, you can assign a keyboard shortcut to this GPI/Script Action. Let me know if you have issues!
Bo
#XPression