Run-time Creation

Create VGScene's object at run-time

Just use following code:

...
myObject := TvgButton.Create(Owner);
with myObject do
begin
Parent := myRoot;
Align := vaClient;
Text := 'my text';
end;
...

myRoot is a other VGScene's object