SlideShowPresentation - Removing Buttons

Posted by IanW34 
SlideShowPresentation - Removing Buttons
March 20, 2009 01:11AM
Hi

Is there an easy way to remove the "Previous Slide" & "Next Slide" buttons and slide counter text on the SlideShowPresentation SWF? That is, is tehre something I can put in config.xml to do this?

Thanks
IanW
Re: SlideShowPresentation - Removing Buttons
March 20, 2009 09:58AM
hello

There are two ways to remove those buttons and that index textfield, and none of them has to do with the xml file.

1.First way is to make them visible false. For that you will have to create a new layer name it Actions then press 9 and just paste the code below:

previousButton.visible=false;
nextButton.visible=false;
slideIndex_txt.visible


2. The second way is to delete the button and the textField from the stage and then open the main.as class and delete that lines of codes which sets
their functionality.

Hope this will be helpful.
Re: SlideShowPresentation - Removing Buttons
March 20, 2009 11:01PM
That's awesome thank you. I chose option 2 and it worked nicely :-)

Thanks
IanW
Sorry, you do not have permission to post/reply in this forum.