Newbie Questions - Page 6 loads before page 1?

I'm pretty new to Flash.  I'm trying to help out the company I work for by updating the Flash website that was built in 2008.  Unfortuantly, the person who built it has exactly nothing documented or even labeled, so it's been rough and again, I'm pretty new.  I'm more used to creating new sites than picking through ones that are already up and running.
The problem I'm having is this:
The site is entirely in flash.  I was asked to add a page to the existing site that would contain images of our company's certifications.  Through a lot of trial and error, I was able to add this new page, but now the images on that page show up first when the website is loaded.  To explain it another way, the images on the new page (page 6) show up and then "fade out" when the site is first loaded.  The same problem does not occur one the site has been completeld loaded.  For instance, if I load the site and then click a link to the About Us page and then back to the first page, the images from the new page don't show up like they do when the website is first loaded.
I know that's not much to go on, but has anyone run into this problem before?
What additional information can I post that would make this issue easier for people to help diagnose?
Thank you for your input!

Thank you for the reply!  I'm pretty sure it's something I'm doing wrong, I just don't know what that is. 
As for my process, I copied an existing button and updated it new information.  Same with creating the page itself - I copied an existing one and then edited it with new content.
So the original menu had
Home | Services | Gallery | About Us | Contact Us
I added a 6th page to the end: Certifications
My menu action script looks like this (I bolded the stuff that I added):
//includes
#include "mc_tween_2_28_29.as"
#include "rollOvers.as"
midBox_mc.Img1_mc.words_mc.titleText = "Company Tagline";
midBox_mc.Img1_mc.words_mc.subText = "Description of our Company.";
var btnPos:Number = 1;
var secNumber:Number = 0;
intro();
otherHome_mc.home_btn.onPress = function() {
            btnPos = 1;
            moveBtns();
            secNumber = 0;
            fatNumber = 0;
            looseWeight();
            midBox_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, sectionSwitch);
nav_mc.home_btn.onPress = function() {
            btnPos = 1;
            moveBtns();
            secNumber = 0;
            fatNumber = 0;
            looseWeight();
            midBox_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, sectionSwitch);
nav_mc.services_btn.onPress = function() {
            btnPos = 2;
            moveBtns();
            btn2beBlocked = 0;
            btnBlocker();
            secNumber = 1;
            fatNumber = 0;
            looseWeight();
            midBox_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, sectionSwitch);
            midBox_mc.Img2_mc.serviceText_mc.gotoAndStop(1);
nav_mc.hserv_btn.onPress = function() {
            btn2beBlocked = 0;
            btnBlocker();
            servNumber = 0;
            fatNumber = 0;
            looseWeight();
            midBox_mc.Img2_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, servFill);
sub_mc.gsub1_btn.onPress = function() {
            btn2beBlocked = 1;
            btnBlocker();
            servNumber = 1;
            fatNumber = 1;
            looseWeight();
            midBox_mc.Img2_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, servFill);
sub_mc.gsub2_btn.onPress = function() {
            btn2beBlocked = 2;
            btnBlocker();
            servNumber = 2;
            fatNumber = 2;
            looseWeight();
            midBox_mc.Img2_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, servFill);
sub_mc.gsub3_btn.onPress = function() {
            btn2beBlocked = 3;
            btnBlocker();
            servNumber = 3;
            fatNumber = 3;
            looseWeight();
            midBox_mc.Img2_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, servFill);
sub_mc.gsub4_btn.onPress = function() {
            btn2beBlocked = 4;
            btnBlocker();
            servNumber = 4;
            fatNumber = 4;
            looseWeight();
            midBox_mc.Img2_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, servFill);
sub_mc.gsub5_btn.onPress = function() {
            btn2beBlocked = 5;
            btnBlocker();
            servNumber = 5;
            fatNumber = 5;
            looseWeight();
            midBox_mc.Img2_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, servFill);
sub_mc.gsub6_btn.onPress = function() {
            btn2beBlocked = 6;
            btnBlocker();
            servNumber = 6;
            fatNumber = 6;
            looseWeight();
            midBox_mc.Img2_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, servFill);
sub_mc.gsub7_btn.onPress = function() {
            btn2beBlocked = 7;
            btnBlocker();
            servNumber = 7;
            fatNumber = 7;
            looseWeight();
            midBox_mc.Img2_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, servFill);
sub_mc.asub1_btn.onPress = function() {
            btn2beBlocked = 8;
            btnBlocker();
            aboutNumber = 1;
            fatNumber = 8
            looseWeight();
            midBox_mc.Img4_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, aboutFill);
sub_mc.asub2_btn.onPress = function() {
            btn2beBlocked = 9;
            btnBlocker();
            aboutNumber = 2;
            fatNumber = 9;
            looseWeight();
            midBox_mc.Img4_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, aboutFill);
sub_mc.asub3_btn.onPress = function() {
            btn2beBlocked = 10;
            btnBlocker();
            aboutNumber = 3;
            fatNumber = 10;
            looseWeight();
            midBox_mc.Img4_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, aboutFill);
nav_mc.habout_btn.onPress = function() {
            btn2beBlocked = 0;
            btnBlocker();
            aboutNumber = 0;
            fatNumber = 0;
            looseWeight();
            midBox_mc.Img4_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, aboutFill);
function looseWeight () {
            sub_mc.gsub1_btn.btn_text.gotoAndStop(1);
            sub_mc.gsub2_btn.btn_text.gotoAndStop(1);
            sub_mc.gsub3_btn.btn_text.gotoAndStop(1);
            sub_mc.gsub4_btn.btn_text.gotoAndStop(1);
            sub_mc.gsub5_btn.btn_text.gotoAndStop(1);
            sub_mc.gsub6_btn.btn_text.gotoAndStop(1);
            sub_mc.gsub7_btn.btn_text.gotoAndStop(1);
            sub_mc.asub1_btn.btn_text.gotoAndStop(1);
            sub_mc.asub2_btn.btn_text.gotoAndStop(1);
            sub_mc.asub3_btn.btn_text.gotoAndStop(1);
            switch(fatNumber){
                                    case 0:
                                                break;
                                    case 1:
                                                sub_mc.gsub1_btn.btn_text.gotoAndStop(10);
                                                break;
                                    case 2:
                                                sub_mc.gsub2_btn.btn_text.gotoAndStop(10);
                                                break;
                                    case 3:
                                                sub_mc.gsub3_btn.btn_text.gotoAndStop(10);
                                                break;
                                    case 4:
                                                sub_mc.gsub4_btn.btn_text.gotoAndStop(10);
                                                break;
                                    case 5:
                                                sub_mc.gsub5_btn.btn_text.gotoAndStop(10);
                                                break;
                                    case 6:
                                                sub_mc.gsub6_btn.btn_text.gotoAndStop(10);
                                                break;
                                    case 7:
                                                sub_mc.gsub7_btn.btn_text.gotoAndStop(10);
                                                break;
                                    case 8:
                                                sub_mc.asub1_btn.btn_text.gotoAndStop(10);
                                                break;
                                    case 9:
                                                sub_mc.asub2_btn.btn_text.gotoAndStop(10);
                                                break;
                                    case 10:
                                                sub_mc.asub3_btn.btn_text.gotoAndStop(10);
                                                break;
//gallery btn
nav_mc.gallery_btn.onPress = function() {
            btn2beBlocked2 = 0;
            btnBlocker2();
            secNumber = 2;
            btnPos = 3;
            moveBtns();
            fatNumber = 0;
            looseWeight();
            midBox_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, sectionSwitch);
//gallery sub nav
nav_mc.hgallery_btn.onPress = function() {
            btn2beBlocked2 = 0;
            btnBlocker2();
            galleryNumber = 0;
            midBox_mc.Img3_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, galleryFill);
nav_mc.about_btn.onPress = function() {
            btnPos = 4;
            moveBtns();
            btn2beBlocked = 0;
            btnBlocker();
            secNumber = 3;
            fatNumber = 0;
            looseWeight();
            midBox_mc.Img4_mc.play_btn.gotoAndPlay(2);
            midBox_mc.Img4_mc.aboutText_mc.gotoAndStop(1);
            midBox_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, sectionSwitch);
nav_mc.contact_btn.onPress = function() {
            btnPos = 5;
            moveBtns();
            secNumber = 4;
            fatNumber = 0;
            looseWeight();
            midBox_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, sectionSwitch);
nav_mc.certs_btn.onPress = function() {
            btnPos = 6;
            moveBtns();
            secNumber = 5;
            fatNumber = 0;
            looseWeight();
            midBox_mc.Img6_mc.certsText_mc.gotoAndStop(1);
            midBox_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, sectionSwitch);
bottom_nav.bigS_btn.onPress = function() {
            btnPos = 2;
            moveBtns();
            btn2beBlocked = 0;
            btnBlocker();
            secNumber = 1;
            midBox_mc.Img2_mc.serviceText_mc.gotoAndStop(1);
            midBox_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, sectionSwitch);
bottom_nav.bigG_btn.onPress = function() {
            btnPos = 3;
            moveBtns();
            btn2beBlocked2 = 0;
            btnBlocker2();
            secNumber = 2;
            midBox_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, sectionSwitch);
            midBox_mc.Img3_mc.galleryText = "";
bottom_nav.bigA_btn.onPress = function() {
            btnPos = 4;
            moveBtns();
            btn2beBlocked = 0;
            btnBlocker();
            secNumber = 3;
            midBox_mc.Img4_mc.aboutText_mc.gotoAndStop(1);
            midBox_mc.white_mc.alphaTo(100, .5, "easeinSine", 0, sectionSwitch);
midBox_mc.Img2_mc.dl_btn.onPress = function() {
            getURL("servDownloads/Equipment_List.pdf","_blank");
function moveBtns() {
            otherHome_mc._y = 75;
            nav_mc.home_btn._y = 0;
            nav_mc.picked1_mc._y = -50;
            nav_mc.services_btn._y = 0;
            nav_mc.picked2_mc._y = -50;
            nav_mc.gallery_btn._y = 0;
            nav_mc.picked3_mc._y = -50;
            nav_mc.about_btn._y = 0;
            nav_mc.picked4_mc._y = -50;
            nav_mc.contact_btn._y = 0;
            nav_mc.picked5_mc._y = -50;
            nav_mc.certs_btn._y = 0;
            nav_mc.picked6_mc._y = -50;
            nav_mc.hserv_btn._y = -85;
            nav_mc.hgallery_btn._y = -85;
            nav_mc.habout_btn._y = -85;
            midBox_mc.Img4_mc.play_btn._x = 657.8;
            midBox_mc.Img4_mc.movieHolder_mc.unloadMovie();
            midBox_mc.Img3_mc.gotoAndPlay(2);
            bottom_nav.bigS_btn.ySlideTo(120, .3, "easeoutSine");
            bottom_nav.bigG_btn.ySlideTo(120, .3, "easeoutSine", .1);
            bottom_nav.bigA_btn.ySlideTo(120, .3, "easeoutSine", .2);
            sub_mc.gsub1_btn.ySlideTo(-28, .3, "easeoutSine", .35);
            sub_mc.gsub2_btn.ySlideTo(-28, .3, "easeoutSine", .3);
            sub_mc.gsub3_btn.ySlideTo(-28, .3, "easeoutSine", .25);
            sub_mc.gsub4_btn.ySlideTo(-28, .3, "easeoutSine", .15);
            sub_mc.gsub5_btn.ySlideTo(-28, .3, "easeoutSine", .1);
            sub_mc.gsub6_btn.ySlideTo(-28, .3, "easeoutSine");
            sub_mc.gsub7_btn.ySlideTo(-28, .3, "easeoutSine", .2);
            sub_mc.asub1_btn.ySlideTo(-28, .3, "easeoutSine", .15);
            sub_mc.asub2_btn.ySlideTo(-28, .3, "easeoutSine", .1);
            sub_mc.asub3_btn.ySlideTo(-28, .3, "easeoutSine");
            switch (btnPos) {
                        case 0 :
                                    nav_mc.home_btn._y = 0;
                                    nav_mc.picked1_mc._y = -50;
                                    break;
                        case 1 :
                                    nav_mc.home_btn._y = -50;
                                    nav_mc.picked1_mc._y = 0;
                                    otherHome_mc._y = -175;
                                    bottom_nav.bigS_btn.ySlideTo(0, .3, "easeinSine");
                                    bottom_nav.bigG_btn.ySlideTo(0, .3, "easeinSine", .1);
                                    bottom_nav.bigA_btn.ySlideTo(0, .3, "easeinSine", .2);
                                    break;
                        case 2 :
                                    nav_mc.services_btn._y = -50;
                                    nav_mc.picked2_mc._y = 0;
                                    sub_mc.gsub1_btn.ySlideTo(0, .3, "easeinSine");
                                    sub_mc.gsub2_btn.ySlideTo(0, .3, "easeinSine", .1);
                                    sub_mc.gsub3_btn.ySlideTo(0, .3, "easeinSine", .2);
                                    sub_mc.gsub7_btn.ySlideTo(0, .3, "easeinSine", .3);
                                    sub_mc.gsub4_btn.ySlideTo(0, .3, "easeinSine", .4);
                                    sub_mc.gsub5_btn.ySlideTo(0, .3, "easeinSine", .5);
                                    sub_mc.gsub6_btn.ySlideTo(0, .3, "easeinSine", .6);
                                    break;
                        case 3 :
                                    nav_mc.gallery_btn._y = -50;
                                    nav_mc.picked3_mc._y = 0;
                                    midBox_mc.Img3_mc.gotoAndStop(1);
                                    break;
                        case 4 :
                                    nav_mc.about_btn._y = -50;
                                    nav_mc.picked4_mc._y = 0;
                                    sub_mc.asub1_btn.ySlideTo(0, .3, "easeinSine");
                                    sub_mc.asub2_btn.ySlideTo(0, .3, "easeinSine", .1);
                                    sub_mc.asub3_btn.ySlideTo(0, .3, "easeinSine", .15);
                                    break;
                        case 5 :
                                    nav_mc.contact_btn._y = -50;
                                    nav_mc.picked5_mc._y = 0;
                                    midBox_mc.Img5_mc.sender_mc.gotoAndStop(1);
                                    break;
                        case 6 :
                                    nav_mc.certs_btn._y = -50;
                                    nav_mc.picked6_mc._y = 0;
                                    midBox_mc.Img6_mc.gotoAndStop(1);
                                    break;
function btnBlocker() {
            sub_mc.bb1_mc._y = -33;
            sub_mc.bb2_mc._y = -33;
            sub_mc.bb3_mc._y = -33;
            sub_mc.bb4_mc._y = -33;
            sub_mc.bb5_mc._y = -33;
            sub_mc.bb6_mc._y = -33;
            sub_mc.bb7_mc._y = -33;
            sub_mc.bb8_mc._y = -33;
            sub_mc.bb9_mc._y = -33;
            sub_mc.bb10_mc._y = -33;
            nav_mc.hserv_btn._y = -85;
            sub_mc.gsub1_btn.btn_text.colorTo(0x7E95A3, .3, "easeinSine");
            sub_mc.gsub2_btn.btn_text.colorTo(0x7E95A3, .3, "easeinSine");
            sub_mc.gsub3_btn.btn_text.colorTo(0x7E95A3, .3, "easeinSine");
            sub_mc.gsub4_btn.btn_text.colorTo(0x7E95A3, .3, "easeinSine");
            sub_mc.gsub5_btn.btn_text.colorTo(0x7E95A3, .3, "easeinSine");
            sub_mc.gsub6_btn.btn_text.colorTo(0x7E95A3, .3, "easeinSine");
            sub_mc.gsub7_btn.btn_text.colorTo(0x7E95A3, .3, "easeinSine");
            sub_mc.asub1_btn.btn_text.colorTo(0x4F6877, .3, "easeinSine");
            sub_mc.asub2_btn.btn_text.colorTo(0x4F6877, .3, "easeinSine");
            sub_mc.asub3_btn.btn_text.colorTo(0x4F6877, .3, "easeinSine");
            switch(btn2beBlocked){
                        case 0:
                                    nav_mc.hserv_btn._y = -85;
                                 

Similar Messages

  • I wrote 6 pages in a document. I wanted to put page 4 before page 3 and could not move them.  They had a box around 5 pages and I don't know how I did that, nor do I know how to undo that.

    I wrote 6 pages in a document. I wanted to put page 4 before page 3 and could not move them.  They had a box around 5 pages and I don't know how I did that, nor do I know how to undo that.

    terrymanga wrote:
    Guess that's not the solution.
    And you guessed wrongly.
    On my side, I guess that before opening the menu,  you clicked somewhere out of the pages (in the thumbnails areas for instance).
    Re try after cliking at the bottom of a page.
    The feature is really described in Pages User Guide.
    Yvan KOENIG (VALLAURIS, France) mardi 27 septembre 2011 22:51:27
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How do I block advertisement pages loading before the page I want?

    I keep getting advertisement pages before the page I want will load and I have to click a "skip this ad" on the top right before I can get the one I want to load. It happens when I start the browser and wont let my home page load until I click the "skip this ad". It just started doing this after updating to Firefox 12.0 and I already have Ad Block Light with the what ever it's called I had to add to it before it would work. But its not working right or maybe not at all.
    When I search for something in Google or Yahoo and click on something, instead of that I get a ad page first. When I click a link to another page I get a ad page first, when I use a bookmark for a page I get a ad page first. How do I stop this?

    Are you getting this ad page on every single website you go to, or just a few?
    If it's everyone, I'd suspect a virus or some sort.
    You can try some of the following programs to scan for malware:
    * [http://www.malwarebytes.org/mbam.php MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://windows.microsoft.com/MSE Microsoft Security Essentials] (A good permanent anti-virus if you don't already have one)
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Also, make sure to update to Firefox 14, and then Reset Firefox if you are still having trouble. [[Reset Firefox – easily fix most problems]]

  • Page load before pRequest

    I want to call a number of javascript functions that will be enabling/disabling items based on the value of
    certain items. This only happens in the case of an update. So I thought I could do this:
    define a javascript function that calls all the "controls" and checks pRequest to see if it is UPDATE. If it isn't it
    doesn't do anything.
    function run_All_Controls() {
    /* call this when page loads */
    alert($v("pRequest"));
    if ($v(pRequest) === 'UPDATE')
    work_Pay_Control();
    And I would call it in Execute when page loads:
    run_All_Controls();
    But this doesn't work because it seems like the page loading happens before pRequest is set.
    I can see that UPDATE is passed but it follows the call to run_All_Controls();
    So then when is the best place to call a javascript function that affects a lot of items in a form?

    Well thank you Jari!
    I found one way it works thanks to you, and I am stopping there because I have a whole
    slew of issues to take care of in this application.
    This works:
    in page attributes,
    function and global variable definition:
    function run_All_Controls() {
    alert("html header reports: " +"&REQUEST.");
    if ("&REQUEST."=='UPDATE'){
    work_Pay_Control();
    And then in Execute when page loads:
    run_All_Controls();
    I did not know that one could use a construct like that to evaluate a variable from javascript. fascinating.
    Definitely something to know for the future. Many thanks!

  • Newbie Question: Adding New Recto Page?

    When I imported my novel from MS Word file, I placed it starting on page one of the InDesign document.
    I just noticed that, at least as seen in the InDesign window, page one appears to be a verso (left-hand page) rather than a recto (right-hand page).
    Here's a screen shot:
    Since this is a novel, the first page should be on a recto, rather than on a verso.
    How can I correct this?  (I've tried Insert Page and Add page, but it doesn't seem to have the intended result. Perhaps I'm not using these function the right way yet.)
    Thanks very much in advance to all for any info!

    Thanks very much in advance for your advice. A screen shot is attached.
    I have the front matter in it's own separate story. Each chapter is in its own separate story as well.

  • Unloadable items from certain servers stalling page loading and page saving

    Occasionally I'll come across pages that stall when trying to load items from certain servers. Most frequently, it is servers at '''ytimg.com''' and another that I can recall is '''simplecdn.net'''. At the bottom of the Firefox window (where it displays page items that are currently loading) it will say ''Waiting for ytimg.com'' (or something similar) and the page will just sit there for hours not fully loading because of that one item. If I try to save the page to my hard drive (use the ''Web Page, complete'' option), the saving process will stall because of those items just as the page loading did. The primary difference being that the page saving eventually times out and an error prompt appears. My question is this: When I encounter these unloadable/unsavable page items, how can I instruct Firefox to just skip them and move on with loading/saving the rest of the page items?

    The problem has existed for years now. I've experienced it with several different computers, many different Firefox versions and many different software (and extension) environments/configurations. I've gone through a lot of trouble throughout the years to make sure the problem isn't being caused by something usual on my end. I'm just now getting around to posting about it. At present, I'm using Windows XP Pro in a very lean state. No services running that aren't needed and no other programs running except for Comodo Firewall. Just before posting here, I ruled out Comodo Firewall by uninstalling it while testing. I also re-installed Firefox and ran it with no extensions in order to rule out the possibility of a problematic extension. I should mention that I posted this a couple of days ago because I was experiencing the stalling problem while trying to load & save a particular web page. The following day there was no problem with loading or saving that same web page. It seems the '''ytimg.com''' server was perhaps down one day and then back up the next. Keep in mind that the problem isn't so much that this stalling occurs but rather that I can find no option in Firefox that will allow me to skip the loading/saving of the particular items that are causing the stalling. (Attached image is a snapshot of my typical running processes while Comodo Firewall is installed and running).

  • Newbie question about loading servlets on tomcat

    I have what is probably a very basic question about loading simple servlets on to tomcat to test its installation. I have followed instructions from numerous tutorials to the letter but still I can't get it to work.
    I have installed tomcat on win2k in c:\tomcat. I set up the jdk, environment vars (JAVA_HOME, CATALINA_HOME, TOMCAT_HOME) which all point at the correct dirs. I can compile a servlet without errors. I can also place a test jsp and html file into the root directory and they both work fine.
    However, now I am trying a test servlet and no matter what I do it gives me a 404. I have a servlet class file called "HelloServlet.class" which I placed into the %install_dir%\webapps\ROOT\WEB-INF\classes directory. I try to reference it using this url:
    http://localhost/servlet/HelloServlet
    Tomcat is configured to use port 80 and has been restarted after adding the servlet class file. Does anyone have a clue why this is not working for me?
    Many thanks
    Marc

    You have to add in the web.xml file that it is in the WEB-INF dir, the information about your servlet. An example:
    <web-app>
    <servlet>
    <servlet-name>HelloServlet</servlet-name>
    <servlet-class>HelloServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>HelloServlet</servlet-name>
    <url-pattern>/HelloServlet</url-pattern>
    </servlet-mapping>
    </web-app>

  • Newbie question: Links to web pages

    I'm brand new to Captivate 4, so I apologize for this question.  I have several hyperlinks on slides that jump to pages on my company's Intranet. When I publish and preview this project in our LMS (SumTotal), the links work however--  they do not open up a separate window for the Intranet page. When a user closes the page, it closes the activity in the LMS and they get an "Incomplete".
    Please advise?
    Thanks,
    Liz

    Hi again
    Odd, when I click the link I supplied I get this:
    13. I'm linking to a PDF, URL or a Word Document and  when I click the Button or Click Box, the movie continues. How do I  keep it paused?
    Look to the immediate right of where you  type the URL or File Name. You should see a button with a down arrow on  it. Click this button and you should be able to choose "New". You have  probably already found this option.
    What you likely missed (and it's  super easy to miss) is another option that isn't available until you  choose New. The opton is "Continue Playing Project". You need to click  the button with the down arrow a second time, then click this option to  turn it off.
    You said the links weren't opening in a new window. The information I linked to was intended to be twofold:
    Coax you into learning how you tweak links to open in new windows.
    Coax you into learning how to deal with your Captivate project remaining paused when you open links in new windows.
    I guess that's not the case here?
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Performance parameters - page load - adf pages

    I am developing a webcenter portal application. most of it's pages are displaying adf tables which data coming from web services.
    business has not given any numbers for performance of system and i need to put numbers in requirement catalog so requirements can be measured later.
    we are into development phase now, services are not yet ready.
    I was thinking how can I come up with these numbers like -
    a 'simple' page should load in 2 sec?
    a 'medium' page should load in 4 sec?
    a 'complex' page should load in 6 sec?
    How this is determined?
    help appreciated.
    thanks.

    Hi,
    You can use a utility called HTTP watch http://www.httpwatch.com/ to measure the page performance. You can also see which files are cached and which are not etc etc.
    Based on that you can tweak your pages to meet the baselines.
    Hope it help,
    Zeeshan

  • Safari won't load home page loads last page viewed

    Safari issues

    System Preference  / General /(under personal)
    Third section from the top
    "Number of recent items"
    Uncheck the box left of
    "Restore windows when qutting and re-opening apps".
    Best.

  • How to fix the time to refresh page items on Page load

    Hi all,
    When my pages load, some page items hidden are shown and when page load they are hidden again. Is there any way to keep it hidden without this time to refresh?
    Thanks
    Bsalvador

    bsalvador wrote:
    fac586,
    I tryed with:
    #P32_DATA_FINAL, label[for="#P32_DATA_FINAL"] {  
      display: none;  
    And only Page item was hidden. Label is still showing...could you help me?
    Thanks
    bsalvador
    Sorry, the "#" shouldn't appear in the attribute selector. There's probably a theme CSS rule with a higher specificity on the labels, so add an !important directive to the rule:
    #P32_DATA_FINAL, label[for="P32_DATA_FINAL"] {  
      display: none !important;  
    Always state which theme and template(s) you are using in a question about visual formatting or layout. Theme HTML/CSS is not always—historically never—consistent, so we need to know this information in order to determine which selectors to use.

  • Page Break Before / After

    Hello All,
    In MS Office word, Insert > break made to page break.
    In the Report, I have challenges in the Page Break Before / After.
    If any one help me out, it will be great.
    Thanks in advance,
    REF:
    Tool
    Property Inspector
    Object Navigator
    Report Editor
    Template Editor
    General layout
    Page Break Before
    Page Break After
    Page Protect
    Advance Layout
    Print Obeject On

    the picture worth a thousand wordsDon't you think it would be better to tell us what your problem is? So you changed the property to 1. And now? Does it work? Does it not?

  • Slow page loads over LAN with 500GB TC

    Hello,
    Forgive me if this has already been touched on, I tried to run through the first six pages and didn't see anything that I thought matched my problem. I saw that there were reports of slow wireless speeds, but I have been experiencing problems over the wired connection to my TC
    I have a MBP connected to the TC wirelessly and a Mac Pro with a wired connection to the TC. They both render similar speeds in a speed test ~4Mbits down, but on my Mac Pro, I get excruciatingly slow page loads. Pages often take, on average, 15-20 seconds to come up at all, and some more time to finish loading completely. Meanwhile, I can load the same pages in a few seconds with my MBP over the wireless network.
    My cable coming from the TC to my Mac Pro is brand new, its at least CAT5e, and should be able to handle my down speeds without a problem. So I'm at a loss for what could be causing this. Could it be something with the computer and not the TC at all?
    Thanks,
    Scott

    Well, creating a test user put me on the right path. Deleting the systemconfiguration folder did not help, but I deleted the following files out of the $user/library/preferences folder:
    com.apple.internetconfig.plist
    com.apple.internetconfigpriv.plist
    com.apple.internetconnect.plist
    com.apple.networkConnect.000a27b47970.plist
    com.apple.preference.internet.plist
    com.apple.PrefPane.Network.000a27b47970.plist
    Basically any preference with "Network" or "Internet" in it and everything sped up immediately. Thanks for the help.

  • Firefox not reloading page. Same page reloads w/o problem in other browsers.

    I do the graphics layout for three full color magazines and recently found a great program to create flip books for the online viewing of these magazines called Flip Builder. After creating the flip books and posting online, we, along with clients who use Firefox browser have found the flip books will open the first time with no problem. However, if the Refresh/Reload button is hit, the pages will not reload. The round, rotating icon that indicates the load progress simply spins with nothing happening, just a blank screen. The only way to reload the page is by completely closing out Firefox, reopening and re-entering the flip book URL again. Not very convenient for our clients.
    This issue only exists with Firefox. Reloading the pages is no problem with Internet Explorer (sorry, had to mention it!) or Opera.
    Naturally, our clients use various types of computers, so there is no consistency among users. I am using the most current version of Firefox and noticed this problem immediately.
    I've also contacted the makers of Flip Builder and made them aware of this issue.

    I have a similar problem. I am building maps using GeoExt. These maps come up fine in all the browsers we've tested (FF, Chrome, IE, Safari), but when the user clicks the reload button in FF, the page tries to load but fails to load components of GeoExt, ones that loaded fine the page load before. If the user hits the reload button again, the page may load correctly or it may not. It appears to be random.
    However, if the user places their cursor in the address bar and hits enter, the page loads every time with no problem. This behavior, both the reload button and loading the page from the address bar, is consistent in FF version 5.0 and 9.0.1.

  • Flash video on web page takes long very time to load before it starts playback

    I just created a basic flash file to play a video on my web page and it's taking several minutes to load before it starts playback.
    I'm using progressive downlaod and the file is in *.mov format and is 84MB in size. At first that seemed large to me for web play back, but I thought it could handle it since I thought the way progressive download works is that it would start playing the first frame right away and progressively play other frames as they download. However, this seems to be downloading the whole file first (or a major part of it) before starting any playback at all.
    Is there some kind of setting I'm missing or is my understanding of the download incorrect and the file size is too large?
    Some vitals:
    - I'm using Flash Pro CS5
    - To create my flash file, I used the standard import video wizard and selected the a file that is "on my computer" and "load external video with playback component" and then, I selected one of the standard skins.
    - To deploy the vidoe on my webiste I have three files:
    1) swf file containing the FLV component
    2) the swf file related to skin
    3) the actual video (84MB, mov file)
    - Web page includes/embeds reference to swf file

    Thanks for your response again. Looks like things have changed a bit to complicate this a little more.
    adninjastrator wrote:
    Are you saying that if I wait long enough it will start to play .... from the link you posted?
    What you are implying here is correct. The file won't play no matter how long you wait.  Looks like it's because of the "source" file settings in the Import Wizard may now be incorrrect. This is why it's not playing in the new file. 
    When I created my original Flash Video using a MOV file, during the import wizard, when asked "Where is your video file?" I selected the option "Already deployed to a web server...". Here I entered the url to where the video file is located on my production server.
    When I created the new Flash Video using F4V file, during the import wizard, when asked "Where is your video file?" I selected the option "On your computer". Here I selected the file from my local drive.
    Sorry for not pointing out the inconsistency earlier - I didn't think it mattered and plus I couldn't get the F4V file to import from the web server.
    Anyway, I've changed my object tag using the acutal published html that flash generates and have uploaded all source files to same location.
    http://www.upperhand.com/tv/video-intro.html
    To sum up the problem(s) I need help with:
    Issue #1 - When trying to import F4V file using import wizard, I cannot use "Already deployed to a web server..." as an option for the file location. I believe this is creating issue #2
    Issue #2 - For some reason, the F4V file will not load into the SWF file when it's published to my production server. 
    It works when viewing locally through browser as c:\inetpub\wwwroot\mywebsite\video-intro.html
    It doesn't work when viewing on development server through browser as http://localhost/mywebsite/video-intro.html
    It doesn't work when viewing on production server through browser as http://www.mywebsite.com/video-intro.html
    Issue #3 - When the above are resolved, I'm not certain if my orignal question/issue will be resolved...  browser tries to downlaod full file before any playback.  

Maybe you are looking for

  • Enterprise Manager Console does not open in browser following patch 41

    Last week I installed patch 41 on my Oracle 11.1.0.7.0 Database. The database resides on a Windows 2008 enterprise server (not R2). After the patch ran successfully, I have not been able to get into the GUI Enterprise Management Console to work since

  • SIFR3 - Will font replacement function on local machine or only on server

    First attempts are not replacing fonts when viewed on my local machine. If I upload all the files to a server, might it work? Thanks for looking.

  • Reversal of customs MIRO.

    Hi, We have reversed a Customs MIRO due to some incorrect entries. However when I cheked the accounting document of reversal invoice, there are some entries of Price difference account which I am unable to understand. I followed the general procedure

  • Authorisation Object: for database table

    Hi . I have a custom Z table which contains data for different plants.We have craeted a maintenence generator so that user can change data. Now I want to  user should able to change data a particulat plant. i already have authority object 'ZPLANT' wi

  • Calendar in iOS7 for iPad:  Disappointed!  How do I...?

    How can I get to a month without scrolling up and down trying to figure out when/where to stop at the right one?  I miss the month bar at the bottom! How can I easily add an event to a future date? I used to be able to tap on that date and the event