moving storyboard's display group from outside

I want to move the storyboard from outside it. I added
storyboards display group to another display group which passed as
paramater. When I move the outher group storyboards scene does not move.
I also tried to add it group which is defined global but result was the
same. How can I move the scene from out of the storyboard?

[lua]
function scene:createScene( event )

local group = self.view

local maingroup = event.params.mg

display.newText( group, “content here!”, 100, 200, native.systemFont, 20 )
 

maingroup:insert(group)

…[/lua]
 

Can you give us a better explanation of what you’re trying to do and why you don’t want to use the built in scene transitions?

Hi Rob,

I want to create a menu system that has a top menu bar and side menu bar. When the user presses side menu button which is located top menu, all the top menu display group, side menu display group and the storyboard’s display group will be slided at the same time. I’m creating a main display group and insert side and top menu display groups in it. I’m creating a menu controller and passing main display group in it. Then I’m calling storyboard’s first scene. When creating scene I’m passing scene’s display group to main scene group in order to move it with main group. But when I press the side menu button top and side menu groups slides but storyboards scene doesn’t move.

Can you give us a better explanation of what you’re trying to do and why you don’t want to use the built in scene transitions?

Hi Rob,

I want to create a menu system that has a top menu bar and side menu bar. When the user presses side menu button which is located top menu, all the top menu display group, side menu display group and the storyboard’s display group will be slided at the same time. I’m creating a main display group and insert side and top menu display groups in it. I’m creating a menu controller and passing main display group in it. Then I’m calling storyboard’s first scene. When creating scene I’m passing scene’s display group to main scene group in order to move it with main group. But when I press the side menu button top and side menu groups slides but storyboards scene doesn’t move.