In the interactive console, access auto complete with Ctrl+Space.
Auto completion uses the Python global namespace to make a suggestion. That means, any name that can be found by typing dir() in the interactive console can be auto completed or examined to suggest completion for its member. However, how the auto complete list is populated depends on the state of the interactive console:
From a name contained in the global Python namespace, you can also use auto completion to know which functions and properties are available for an object. For example:
For example, on entering FBEdit.On in the Ctrl+Space pops up a list of available events for FBEdit, since all property events begin with "On".
Auto completion also works in the work area, in the same way as in the interactive console. It always checks the Python global namespace. To get the most out of the auto completion, execute the script often, as in the following example.
from pyfbsdk import *
from pyfbsdk_additions import *
tool.StartSizeX = 800
tool.StartSizeY = 200
ShowTool( tool)
It is good practice to execute a script each time you add new variables, and use auto completion. If auto completion does not work, either the name you are trying to complete is not in the global namespace, or you have a typing error.