There's another solution, which consists of enabling the preferences option
Aerial view centered on selection then selecting the item that should be used as rotation center.
If you don't want to bother too much with JavaScript, copy these lines of codes just before the last [font=courier new]</script>[/font] line of the HTML page:
Code: Select all
setTimeout(function() {
homeComponent.getUserPreferences().
setAerialViewCenteredOnSelectionEnabled(true);
homeComponent.getHome().setSelectedItems(
[homeComponent.getHome().getFurniture() [0] ]);
}, 1000);
Here, this piece of code selects the first piece of furniture (represented by 0 between brackets []). If you want an other one, change the number between brackets [font=courier new][1][/font] for the second one, [font=courier new][2][/font] for the third one (not taking into account items in groups).
The last number [font=courier new]1000[/font] represents the delay in milliseconds before this code is executed. Maybe it will have to last longer in your case.