Too much static text in a flash movie clip makes it slow?

Hello...
First of all, I am new to flash. I have one pre-designed web site made entirely in flash. I have made a lot of modifications to the website, changing text, images, adding effects, text and all sorts of things. The navigation bar has 5 buttons. If you click on any button but the middle one ("Servicios"), all subpages load fast, however, if that "servicios" button is clicked, the display of that subpage is really slow. In that subpage there are 6 items that reveal additional text when the mouse rolls over them. I have tried removing the text and the subpage load fast. I have seen web sites with a LOT more content than mine and I think my problem is not the amount of text rather the way it shows. I have also removed all the effects and just try to load all the contents on that subpage and I still get a really slow subpage. Now, the design has two ways of loading those subpages. The first is by doing something like
_root.pages.pages2.gotoAndStop(_root.link);
which is executed when the main slideshow is running and a navigation button is pressed. The second one is something like
_root.pages.play();
which is executed when the main slideshow is NOT running and a navigation button is pressed. This pages.play() movieclip contains all subpages and the movieclip that is slow.
I hope I explained myself relatively well. Thanks in advance.
I have uploaded the SWF & FLA files compressed in a 7z format
http://hotfile.com/dl/90576224/39cd96c/GAP24_PureFlash.7z.html
Also I have a test host where I uploaded the website temporarily for testing purposes
http://www.gildemeister.com.ve/GAP24/
Thanks

Ok so it looks like you're referring to the method of placing a screenshot of the flv on the stage in front of the flv so that users don't notice that the flv loads more slowly than the other bitmaps on the stage, right?
yes
Looks like I'll have to do this (since embedding the flv in the main swf, which avoids the slow-to-show problem, is not recommended).
that's also correct (and it will make your entire swf load slower).
Thanks Kglad.
you're welcome.

Similar Messages

  • Flash Movie Clip Run Very Slow

    I have about 10 of "coconut tree" Movie Clips, 1 clouds movie
    clip, 1sea movie clip. The problem is when i run all of the movie
    clips together, the animation run very slow. Can anyone help me
    please................................................
    thanks

    It's hard to tell without knowing what those movie clips
    contain. If they contain raster images (bitmaps), have tons of
    points, utilize a lot of alpha tweening, etc. it could be the
    cause. How does it run with each movie clip running by itself? Are
    coconut trees vector or raster? If vector, can you optimize the
    shapes any to reduce the number of points?
    (Modify>Shape>Optimize)

  • Input text field nested in movie clip?

    Hello,
    Is it possible to have an input text field inside a movie
    clip in Flash Lite 2? I've tried targeting it all different ways
    and it doesn't seem to work, so I just thought I'd check with
    someone who knows.
    Thanks for your help in advance!

    Hi Nirnalatha,
    I have newly joined this forum and while going through the
    posts I came across your post which I thought I could help out. But
    I think I am too late for the reply.
    I am also into Flashlite development couple of months from
    now. Coming to your questions:
    1. Textbox problem: I am surprised to know that E70 mobiles
    (Device central list has E70-1 only) does not show input text box
    when cursor is in input box. Anyways its a good thing that you dont
    get an additonal input box. Like all J2ME applications you will be
    able to type the text inline. Infact we had reverse problem where I
    was told to create inline edit input box instead of flashlite input
    box. I think this is the mobile setting. Check the device features
    in the Adobe Device Central under Flash - Standalone player - Text
    and Fonts features. It will be mentioned whether inline text is
    allowed or not.
    2. Soft keys issues: You need to use
    fscommand2("SetSoftKeys", "Previous", "Next");
    and use a key listener in order to override the Mobile
    Softkey commands. Check out the flashlite help which clearly
    explains this.
    Hope I have given youa way to solve ur problem.

  • How do i make an image pause in a flash movie clip

    Please can someone help me. I am trying to find out how to pause or stop an image in a basic flash movie clip,  after it has entered from one side and before it exits the other side.
    I have been trying to work it out myself for three days but no joy. I am practicing  for a test with a training agency which gave me a disk to use but nowhere in it does it say how this is done. I am also having a lot of difficulty making stop start buttons work with this movie clip. I am using a trial cs5.5 version of Flash which expires in 7 days so i need to know this soon. I am up to speed on most of the features, its just this one thing that has me stumped. A lot of the tutorials or examples  i have found on the net are very long winded and hard to follow exactly. Could someone let me know, step by step the sequence i should follow after i have created an object  and made it go from one side of the stage to the other.

    Hi
    Thank you for getting back to me. Yes i am using a timeline tween. I have an image on my stage which moves in from one side and out the other side. I am trying to stop or pause the image. The effect i will be asked to reproduce in my exam will be something very much like the banner on the website http://www,iactweb.com. If you go to this website you will see images arrive on the banner and pause before exiting the other side. I am fairly up to speed on all the aspects of getting this effect but i have forgotten what i learned during the course on how stop or pause the images. I am using the trial cs5.5 version of flash . Thanks again for getting back to me.

  • Flex and a flash movie clip

    Hi All,
    I'm looking for some information on how to take an embedded
    flash movie clip and control it through Flex. I want to be able to
    manually move through the movie clip, select frames to display etc.
    Any information pointing me in the right direction would be
    greatly appreciated.
    Thanks in advance

    For Flash SWF's:
    Inside your componet/app def:
    private var movie_clip:MovieClip;
    private var myLoader:SWFLoader = new SWFLoader();
    onInit() {
    myLoader.addEventListener(Event.INIT,loadHandler);
    myLoader.trustContent = true;
    myLoader.load("../assets/my.swf");
    this.addChildAt(myLoader,0);
    private function loadHandler(e:Event):void{
    movie_clip= e.target.content;
    movie_clip.gotoAndPlay(2);
    movie_clip.some_custom_as3_method();
    For Flex SWF's here is an example:
    import mx.events.FlexEvent;
    import mx.managers.SystemManager;
    import mx.core.Application;
    // * gets rid of type checking so we can leave strict enabled
    [Bindable]public var _appLoaded:*;
    private function
    onCurrentApplicationComplete(oEvent:Event):void
    _appLoaded = Application(oEvent.target.application);
    private function onCompleteAppLoader(oEvent:Event):void
    var smAppLoaded:SystemManager =
    SystemManager(oEvent.target.content); //get a ref to the loaded app
    //listen for the application.complete event
    smAppLoaded.addEventListener(FlexEvent.APPLICATION_COMPLETE,
    onCurrentApplicationComplete);
    // call a custom public method in your application mxml file:
    public function setPlaylist(id:int):void {
    if(_appLoaded) {
    _appLoaded.change_playlist(id);
    ]]>
    </mx:Script>
    <!-- <mx:SWFLoader id="player" x="0" y="0" source="
    http://...Player.swf"
    complete="onCompleteAppLoader(event);" trustContent="true"/>
    --> <mx:SWFLoader id="player" x="0" y="0"
    source="@Embed('../assets/Player.swf')"
    complete="onCompleteAppLoader(event);" trustContent="true"/>

  • Controlling flash movie clips...

    I made a flash animation using timelines and broke my movie up into three clips. The clips run fine in their own time line. I was reading about clip.play() clip.stop() and it seemed like I could do this. I have a main timeline with three frames. Each frame has a movie clip symbol on it. Each movie clip symbol has a timeline a few seconds long in it.
    I did this because I want to put a click event that will go to a different url depending on which clip the viewer is currently seeing. This swf file will be embedded into an html document.
    When I run the resulting swf - the three frames on the main timeline zip along like crazy and the movie clips don't play at all. I've tried every combination of stop() and play() I can think of but this is just not working as advertised...
    My movie clips have instance names of Clip1, Clip2 and Clip3. Can someone help me with
    1) some sample code that works so that I can run these clips in consecutive order;
    2) the appropriate onClick code to use in the main timeline frames for my url events
    Thanks much.
    BC

    I had to put this on hold to make a deadline and never really got back to it until just now - another similar request. So here is a modification to the code provided to me that I made and seems to do exactly what I wanted. I am not an expert at script but I haven't had a problem with this so I am going with it. If this helps anyone else - great! I never got a reply from the original poster on how to fix the problem where the script they provided looped around on my final movie clip.
    This is the code I used in frame one to control the loop for the three movie clips:
    var myMov:MovieClip
    myMov = Clip1
    this.stop();
    // myMov.play()
    this.addEventListener (Event.ENTER_FRAME, onEnterFrame); function onEnterFrame (event:Event):void {
    // is "myMov" current frame, play head, at the end of "myMov"
    if (myMov.currentFrame >= myMov.totalFrames) {
    // if it is then move the main timeline on 1 frame  
    if (this.currentFrame == 3) {
      myMov = Clip1;
      this.gotoAndStop (this.currentFrame-2);  }
    else {
      this.gotoAndStop (this.currentFrame+1);  }

  • Flash Movie Clip Help

    I've been trying to recreate the flash movie they have on
    http://www.comcast.net/news/
    its in the middle of the page.
    I have everything except I cannot get that black fadein to
    go as smooth and fast. I've tried making more frames
    and less frames, but it doesn't seem to make open as smooth.
    Is there a way to code a different fps for just the fade in?
    or
    Does anyone have any ideas?
    Thanks in advance

    Your attachment appears to be lost in the queue... not abnormal for the new and improved forums.
    Anyways, for what I think you are trying to do you should look into using the Tween class.  If you Google "AS2 Tween" the first result you get  (a Kirupa article) may be enough to get you started--I didn't look beyond that one.  In your case you would probably be tweening the _y property of the page movieclip.  When it comes to changing pages, you might also want to incorporate a listener so that you can first tween out the current page before you tween in the new page.  You can have multiple tweens working at the same time for the same object, so you might want to add an _alpha tween into the mix as well.

  • Cs4 flash movie clip question

    I have started this animation and I am turning rain drops into movie  clips with a small splash animation in the clip.I can just copy and  paste them so I won't have to animate each one or do programming. When I  test this with the swf file they turn out fine. But when I try to  export this into a jpeg/png,or avi the full animation in the movie clip  doesn't work.It just shows the first frame.Is there a way to make this  work since I would really like the single jgep files or avi since I need to transfer this to other programs. I thought  there was a way to do this but I cannot remember or I don't know if they  changed it with cs4 XD.

    Oh I am sorry I didn't say what I mean clearly XD. I want export it as a image jpeg sequence so I would have the many frames to import else where. But also I would like different single shots to show as previews as well. But when I try to do that the movie clips are not moving slowly in each image.
    And I keep trying to do avi's but the movie clips are still not working.

  • Movie Clip Button Not Working

    I'm working on creating buttons right now as movie clips so when you roll over it they rise up. The third one "print" is jumping around like crazy and I can't figure out why. I've deleted and re-done it 3 times without luck. I've attached my file - if anyone can spot where I've made a mistake that would be great. Thanks!

    Got it - realized the text wasn't staying as static text and was a movie clip before the final frame. So if anyone else has this problem, create a new keyframe on the ending frame, and make THAT the movie clip.

  • Trying to change text in a movie clip

    i'm trying to replace text in a dynamic text field within a movie clip, and it seems as if it's treating it like static text. Is there a way around this?
    theBtn1.addEventListener(MouseEvent.CLICK, adjustText1);
    theBtn2.addEventListener(MouseEvent.CLICK, adjustText2);
    function adjustText1(e:MouseEvent):void
        textField1.text = "Foo"; // this works
    function adjustText2(e:MouseEvent):void
        theMC.getChildByName("textField2").text = "Bar"; // this doesn't
    It throws this error:
    1119: Access of possibly undefined property text through a reference with static type flash.display:DisplayObject.

    You don't need to use the "getChildByName" function.
    Try:
    theMC.textField2.text = "Bar";

  • How to load dynamic text inside a movie clip?

    hello all - i have a main stage where on the first frame my
    "home" movie clip displays. i did this by dragging/dropping, and
    then i put a stop action. all works fine.
    inside this home movie clip on the main stage, there are
    links to other movie clips. for example, to get to my faq's page -
    you click that button, then it takes you to frame 4 on my main
    stage, where my faq's movie clip (followed by stop action) has been
    dragged/dropped and displays properly.
    within the faq's movie clip this process is repeated, with
    buttons taking to you various pages (different frames where
    different movie clips play - all works fine).
    so now i want to add a dynamic text field within my faq's
    movie clip. i have read numerous tutorials where i have created the
    text file but i have not been able to display it with success
    within my faqs movie clip.
    here is some code that my dvd tutorial instructs me to place
    on main stage as i practice getting this to work:
    var myMCL:MovieClipLoader = new MovieClipLoader ();
    var myListener:Object = new Object();
    myMCL.addListener(myListener);
    var myLV:LoadVars = new LoadVars();
    myLV.onLoad = function (success:Boolean) {
    if (success) {
    _level5.loadedInfo.htmlText = myLV.info;
    } else {
    _level5.loadedInfo.text = "There has been an error loading
    the requested information. Please contact the webmaster.";
    and here is some code that i place on the faqs button within
    my main movie clip that takes me back to main stage and plays faq
    movie clip all successfully:
    on (release) {
    //Movieclip GotoAndPlay Behavior
    _root.gotoAndPlay("4");
    //End Behavior
    and finally, here is some code that i place within my faqs
    movie clip in an attempt to display my dynamic text within the faqs
    movie clip - so far unsuccessful:
    _level0.myLV.load("vars/faqs.txt");
    NOTE:
    i have published this to view - not working.
    i have my faqs text file starting as info=
    i have eliminated white space within my text file
    i am using flash 8 pro
    can anyone offer some sugestions? thanks!

    hmmmmm lemme double check as i seem to be a bit lost now.
    // this is my actions layer code on frame 4 of main timeline:
    stop();
    var myLV:LoadVars = new LoadVars();
    myLV.onLoad = function (success:Boolean) {
    if (success) {
    _level5.loadedInfo.htmlText = myLV.info;
    } else {
    _level5.loadedInfo.text = "There has been an error loading
    the requested information. Please contact the webmaster.";
    myLV.load("vars/faqs.txt");
    1. fyi - at frame 4 on main timeline, one layer beneath the
    actions layer where i dragged/dropped my faqs movie clip i gave my
    faqs movie clip an instance name of "mainfaqs" - although nowhere
    do i refer to this specific mc within my code.
    2. where would i replace/insert the following code?
    _level0.faq_mc.loadedInfo.text = myLV.info;
    3. i didn't know about embedding font but i saw the option
    and embedded it - still no results.
    4. i'm not sure how to do the following:
    _level5.loadedInfo.text ='test'; //although I would still
    change the path as above
    To see if your getting a return from the load call adn text
    file, use a trace statment before the success condition and see
    what it returns:
    trace(myLV);
    sorry to be such a pain - i really have looked around for
    answers through previous postings and i googled it and i've been
    taking instruction through lynda.com and dvds but i seem to be
    stuck here.... as always - thanks for your time

  • Flash Movie

    I was wanting to know how to edit text in a flash movie.i
    need to change the word Moderator to Administrator any one know how
    to do this.Thanks for any help

    You URL is http://homepage.mac.com/kevinpartridge/.Movies/jobstocareers.swf. What I was referring to by it not playing in the browser when you click on that link is that you need top use that URL with code that links it to a flash player as in:
    <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/ flash/swflash.cab#version=6,0,40,0" border="0" width="640" height="360"><param name="movie" value="http://homepage.mac.com/kevinpartridge/.Movies/jobstocareers.swf"><param name="quality" value="High"><embed src="http://homepage.mac.com/kevinpartridge/.Movies/jobstocareers.swff" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="640" height="360"></object>
    However, I tried that code with your URL and I can't get it to work either. I can get it to work with one of my swf files located in my Movies folder. Evidently the issue is with your swf file.
    Email it to me at otforums at me dot com and I'll give it a try here.

  • Question about text rendering in flash authoring tool and in flash player.

    Hi everyone, i have found that:
    1. There has a subtle difference between a static text field in flash authoring tool which has been set to use the device font when it's got focus(state that user can type character in) and lose focus;
    2. There also has a subtle difference between when it is being rendered in flash player and in flash authoring tool.
    (Note that the key factor here is setting the text field to use device font.)
    I want to know  what causes this difference. Thanks in advance!

    both in flash authoring tool not flash player.

  • How to add coloumns in the static text view

    Hello all,
    I am using answers and I want to use the static text view
    Now I want to make my own table.
    I was thinking somthing like this:
    <TABLE>
    <TR>
    <TD>
    @1
    </TD>
    </TR>
    </TABLE>
    Where @1 is the first column on my answer report.
    Unfortunately this isn't working.
    I can't find anything in the manual about this.
    I know @1 works for the ticker view, so thought it must work on the static view as well

    Hi
    Use a Narrative view instead, works perfectly.
    Ed

  • Visitors to Flash site post content onto movie clips?

    Can visitors to a Flash web site post content like images on
    to Flash movie clips?
    Do you know of a Flash web site that does this that I can
    visit?
    Thanks.

    What I mean is Flash capable of excepting content such as
    images posted from visitors to a Flash web site or must a server
    side program be used with Flash such as PHP or Coldfusion.
    Thanks for any advice.

Maybe you are looking for

  • IPad 2 loosing conection with printer

    Hello everybody, I got my iPad 2 since a few months, bought an HP Officejet 6500 E710N printer to be able to print from my iPad. I've gone through most of the web discussions, done most of all suggestions from everybody and nothing solved the problem

  • Oracle Data integrator Set up Steps

    Hi All, I am very new to ODI. Can somoeone help me with the steps involved in ODI or how to get started with it after its installation? Thanks, Renu.

  • Restoring Messages from 6085 to N73

    I have upgraded my 6085 to N73 recently. I am not able to restore the messages from 6085 Backup file to N73. The required Messages in 6085 are in folder "Saved Items" but the name of the similar folder in N73 is "My Folders". Pls provide me a solutio

  • Service order replication with Spare parts( Item category SRVM) to R/3

    Hi Experts, We are  creating service order in CRM with spare parts details(Item category SRVM) and this service order has to replicate to backend R/3. As per my knowledge Service orders are replicated as Sales orders in R/3 with sales items only i.e.

  • Swipe backwards problem

    I seem to have a Swipe backward problem with Safari 6.0.2 When Im browsing and wants to go back to a previous page and use the two finger backward swipe, it almost everytime take 1-3 seconds to reload the previous page, and often it takes longer. Som