Skip to main content
Participant
July 31, 2007
Question

Move window view

  • July 31, 2007
  • 2 replies
  • 230 views
Hi, I am trying to create a site where you press button, and the screen moves to the left, moving to hidden text to the right into view ?

Hope this makes sense. I have seen this site which does a similar thing to what I want to do http://www.concentrate.co.uk

Best Regards,
Auztin100
This topic has been closed for replies.

2 replies

Inspiring
August 1, 2007
or you could simply put a motion tween in the timeline to move"theReallyWideMovieClip" - Its not the cleanest nor the smallest (filesize) but its simple and needs little actionscript if any.

Good Luck
Known Participant
August 1, 2007
You could have one really wide movie clip then on a button have:

WhateverButtonName.onPress = function(){

theReallyWideMovieClipInstanceName._x = -400(or whatever the x position would need to be)

}

Hope this helps.