Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rossi3713

    How can I pause a nested movie or is the code in the wrong place?

    Tom, Sorry for the delay, I have been out of the office. I have now placed the files at the following url. http://192.148.195.25/testing_folder/mjr_temp/pause_movie.html I could not upload all of the content because it has not been released yet. To see an example that the pause button is not...
  2. rossi3713

    How can I pause a nested movie or is the code in the wrong place?

    Bill Thank you for the code clarification. However I put the code in and it still does not stop the movie being called by the function. on (release) { stop(); } on (release) { _root.container.stop(); } The first Stop is for the audio in the third level movie and the function in that level...
  3. rossi3713

    How can I pause a nested movie or is the code in the wrong place?

    Bill, Thank you for the quick reply. Someone else wrote this code and I'm not sure that I implemented your code correctly because the nested movie still will not stop. This is how I have changed the code. on (release) { stop(); } on (release) { this._root.stop()...
  4. rossi3713

    How can I pause a nested movie or is the code in the wrong place?

    I have a nested movie that is called by the following function. function test(){ _root.createEmptyMovieClip("container",25); loadMovie("images/5_28.swf", "container"); container._x=15; container._y = 95; } test(); On the base movie I have three control buttons for play, pause, and rewind...
  5. rossi3713

    Rewind, Pause, and start Start buttons for base movie and external mov

    Kenneth, Brilliant, just simply brilliant. Thank you very much.
  6. rossi3713

    Rewind, Pause, and start Start buttons for base movie and external mov

    I'm lost... I have a base movie that contains three buttons (Rewind, Pause, and Start) The code for the rewind button that sends the base movie to frame 2 which is set to play and then reloads the external movie (images/4_24.swf). works perfectly and is shown below. on (release) {...
  7. rossi3713

    I'm just not getting it - MovieClip as button loads file

    OH MY GOD --- THIS IS JUST UNREAL. I hope I can learn ActionScript to the point where I can write such code. Thank you again. Now I have to figure out exactly what you did. Have a wonderful Day
  8. rossi3713

    I'm just not getting it - MovieClip as button loads file

    Kenneth, Thank you very much!!! I guess if I could read I'd get things a lot quicker. I am not sure how to unload movie1 when I press the movie 2 button and where that code should go? // Main timeline // Create clip this.createEmptyMovieClip("button1", 2); //Add Text...
  9. rossi3713

    I'm just not getting it - MovieClip as button loads file

    I tried laying the code on the main time line but that didn't work and I got the following. **Error** Scene=Scene 1, layer=nav, frame=1:Line 3: Statement must appear within on/onClipEvent handler this.createEmptyMovieClip("button1", 2); **Error** Scene=Scene 1, layer=nav, frame=1:Line 5...
  10. rossi3713

    I'm just not getting it - MovieClip as button loads file

    I would greatly appreciate any help on this dilemma. What I am trying to do is use four movie clips as buttons to load and unload different .swf files into an empty movie clip on the stage. The first portion of code is what is in my buttons and the second part is what is on my main timeline...
  11. rossi3713

    How to learn about XML and Flash?

    I guess my last post on Apr 6th just confused everyone. I’ve tried a couple of XML tutorials but the really don't lend themselves to what I am trying to accomplish. Can anyone recommend other's on the web that would be a good place to start learning about XML and Flash? Thank you in advance. MJR
  12. rossi3713

    XML file for each section???

    I'm trying to develop a Flash based training piece that has 9 sections and between 10 and 15 pages in each section. The authors want to write one XML file for each section and have that file call 4 text fields and two flash .swf files for each page. I am totally lost and have not worked with...
  13. rossi3713

    Can you just print contents of an Input text box???

    Hello all, I’ve created a swf movie that loads when the user clicks on the notepad button in the GUI and out slides a Input Text box for note taking. Within the movie I have print button which prints the complete movie. But what I want is just the notes contained in the input text box to print...
  14. rossi3713

    Dreamweaver Novice - Connect to MS Access application

    I know it is probably not that difficult to do but, I’m just a novice with Dreamweaver and some how I have to take an Microsoft Access application that currently reads several databases and runs of f of a CD and somehow produce the same thing on the web. For starters, I really do not have a...
  15. rossi3713

    Load and unload movies into a base movie sequentially

    Question: Can you load and unload movies into a base movie sequentially from a script or another loaded movie? Thank you Rossi3713
  16. rossi3713

    Can you activate a button from another movie?

    Crazybeans128 Thank you for your reply, your answer is right but I think I asked the question wrong because you still have to click the button on the next movie to advance. What I am attempting to do here is give the user the option of a Self Guided tour or an Auto run tour. Currently the site...
  17. rossi3713

    Can you activate a button from another movie?

    I have a Flash movie file with a loaded swf file, which contains a next button. When clicked it unloads the current movie and then calls and loads the next movie. Can I activate button actions on named anchor frame in the 1st swf file from the 2nd swf files Action Script? The idea here is if...
  18. rossi3713

    Auto Run or Self Guided option for Flash web challenge

    Below is the code I have in my main movie, which loads the base splash movie on level 2. loadMovieNum("cc_cover.swf", 10); loadMovieNum("popupmenu.swf", 8); loadMovieNum("resources.swf", 11); loadMovieNum("help.swf", 35); loadMovieNum("../section_1/01_top01_pg01_splash.swf", 2); stop()...

Part and Inventory Search

Back
Top