I am looking for a script that would say that when one button is pressed it brings you to a certain frame and that a button on that frame is pressed. I am making new links to an already created site, it was not done with frames but rather has a series of movieclip buttons that make related info appear. Now I have new frames that will link to that info. I can get to the right frame by inputting
arru_btn.onPress function() {
gotoAndStop(5)
but I need to have a movieclip button (arru_txt) on that frame to be pressed so that the info that goes with the link appears as well. Is there a way to do this?
Have you tried arru_txt(onRelease){ gotoAndPlay(5); }
Not sure if this is what you were looking for, if not, provide a little more clarity.
I currently have a site which has details on buildings. There are a lot of buildings so instead of having multiple frames for each building I built the site primarily as 1 frame. I set up a function so that all the buildings details were visibility false and then set buttons up for each building and when the button is clicked the visibility is true.
I was given another site which has other info on the buildings. This site is set up with 1 frame per building. I am supposed to combine the sites so they work as one. My plan is to set up a new button on the other site that will bring you to my details frame. The problem is that if you are looking at building “A” and click on the new button to go to my frame, the user must click the building “A” button on my page for the details to show up.
I would like to have the new button on the other site to bring you to my frame as well as press the button on my frame that will bring up the matching details. So if the user is looking at building “F” and clicks on the button to go to my frame; then the button brings him/her to my frame and presses the building “F” button on my frame, thus turning building “F”'s details to visibility true. And would be the same for all the new building buttons.
I hope this is more understandable, I guess the essence of the question is can you script so that when one button is pressed that another button is pressed so that the used does not have to press it.
I cant quite visualize how they are “combined” because if they are 2 separate flash projects I don’t that there is a way.
I plan on replicating the other site into mine, It is a basic site and shouldn’t take long to put together. So the 2 sites will be one flash file, its just a matter of creating a button which will bring you to a specific frame and press a button on that frame.