What code will announce 'loading'

I have a Web page with 1000 XML records that takes about 5 seconds to load.
Can I add js or other code as an HTML widget in iWeb to warn user to wait for table to appear. Host is not me.com
Thanks

you can't use actionscript to control any characteristic of a layer.
you can convert each object in a layer to a movieclip or, add each object in a layer to a parent movieclip and use actionscript to control all properties (including visibility) of the movieclip(s).

Similar Messages

  • Edge Code will not load in web browser

    My OEM edge code will not load in web browser after it has been uploaded to the server. I am using dreamweaver & the OEM file.
    The images are all grouped & labeled properly (within Edge Animate). Note the website will not load with ANY web browsers UNLESS you hit the refresh button or reload the web address.
    www.anndominion.com
    Can somone please tell me what is going on or how to fix the problem? ;(
    Here is the code for the website too.
    Any help would be great!
    <!doctype html>
    <html>
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
    <title>Welcome</title>
    <!--Adobe Edge Runtime-->
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <script>
      var custHtmlRoot="edgeanimate_assets/Home/Assets/";
      var script = document.createElement('script');
      script.type= "text/javascript";
    script.src = custHtmlRoot+"edge_includes/edge.5.0.1.min.js";
      var head = document.getElementsByTagName('head')[0], done=false;
      script.onload = script.onreadystatechange = function(){
      if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {
      done=true;
      var opts ={
        scaleToFit: "width",
        centerStage: "none",
        minW: "0",
        maxW: "undefined",
        width: "1500px",
        height: "800px"
      opts.htmlRoot =custHtmlRoot;
      AdobeEdge.loadComposition('Home', 'EDGE-292846011', opts,
      {"style":{"${symbolSelector}":{"isStage":"true","rect":["undefined","undefined","1500px", "800px"],"fill":["rgba(255,255,255,1)"]}},"dom":[{"rect":["716px","356","88px","88px","aut o","auto"],"id":"preloader5","fill":["rgba(0,0,0,0)","images/preloader5.gif","0px","0px"], "type":"image","tag":"img"},{"rect":["645px","480px","229px","79px","auto","auto"],"font": ["Arial, Helvetica, sans-serif",[24,""],"rgba(0,0,0,1)","normal","none","","break-word","normal"],"id":"Text" ,"text":"Please Tap Refresh <br>To Load Content.","align":"center","type":"text"},{"rect":["555px","283px","361px","103px","auto" ,"auto"],"font":["Arial, Helvetica, sans-serif",[24,"px"],"rgba(0,0,0,1)","400","none solid rgb(0, 0, 0)","normal","break-word","normal"],"id":"Text2","text":"","align":"center","type":"text" }]}, {"dom":{}});
      script.onload = script.onreadystatechange = null;
      head.removeChild(script);
      head.appendChild(script);
      </script>
    <style>
            .edgeLoad-EDGE-292846011 { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
      <body>
        <div id="Stage" class="EDGE-292846011"></div>
        </body>
    </html>

    Keith,
    Make sure the Cluster configuration is right. When did you start seeing this problem?
    Host A: Dispatcher->server 0, server 2
    Host B: Dispatcher->server 0, server 2
    i.e The instance IDs are mapped right.
    Also try to hit the individual servers in the cluster the following way.
    http://hostname1:50000/irj/portal;sapj2ee_irj=instance_id sends a request to server 0.
    http://hostname2:51000/irj/portal;sapj2ee_irj=instance_id sends a request to server 1.
    This may give more clues. Unfortunately I don't have access to EP6 SP2 to lookup and tell you the right parameters to look for.
    Regards
    -Venkat Malempati
    Message was edited by: Venkat Malempati

  • Itunes 10 will not load on windows 7 64 bit. Error code 2324. Old Itunes is gone or not working. Cannot play anything although files are still there. What the ??? is error 2324. Seems like alot of people ar ehaving the same problem

    Itunes 10 will not load on windows 7 64 bit. Error code 2324. Old Itunes is gone or not working. Cannot play anything although files are still there. What the ??? is error 2324. Seems like alot of people ar ehaving the same problem

    I have had this problem with Windows 7 and iTunes updates for some time. Each time it takes hours to solve but with the over the air upgrade to IOS6 on my iPhone and iPad, I was determined to solve and remember what I did, So here it is:
    http://www.care4pcs.co.uk/2012/09/pear-shaped-apple-ios-6-for-iphone-ipad.html
    I hope this helps you and any other users.

  • Select which swf will be load by code

    Hello all;
    My question is quite simple maybe but i could not find it in action script 3.0.
    There are 100 buttons in my movie clip and a timeline of 10 frames length.
    If user clicks on button1, the movie clip will play and at the last frame it will redirect to second scene (scene2) and then "on scene2's first frame" "externalscene1.swf" will be loaded.
    If user clicks on button 5 then on scene2's first frame "externalswf2.swf" will be loaded.
    Here the normal code i wrote :
    //SCENE1 - 1st frame :
    st1.addEventListener(MouseEvent.CLICK, a1001e);
    function a1001e(eeevt:MouseEvent):void {
    MovieClip(root).play();   <<< i want to assign a variable (the swf name to be loaded)
    //SCENE2 - 1st frame:
    stop();
    var loader3:Loader = new Loader();
    loader3.load(new URLRequest("1004.swf"));   << i want to load variable.swf and load that swf.
    addChild(loader3);
    Thank you for all help.

    I am not very clear what you want to ask, but as far as i have understood you want to manipulate URL of a swf to be loaded and pass the urlRequest object to loader.load method. That is you dont want to have different urlRequest object for all the different swf you want to Load. Try out in the following manner
    The name of the SWF to be loaded should be such that it can be easily manipulated, Suppose you have 3 swf, then their name could be movie_1.swf, movie_2.swf, movie_3.swf.
    // keep a counter
    var counter:Number  = 0;
    // url
    function clickHandler(e:MouseEvent):void
         //increment counter on click of a button:
         counter++;
         //manipulate the url
         var url:String = "movie_"+counter;
         var request:URLRequest = new URLRequest(url);
         loader.load(request);
         addChild(loader);
    all the buttons have same listener clickHandler.
    There could be several other ways. Just let me know if this helps you out.

  • What html code will start an EXE (program) with a click on a webpage link?

    The code in bold below worked. After I switched my browser from IE 11 to Firefox to get the hover on hotspots to work, the program gave me this error message. I moved the EXE file to my local file folder and tried it as shown below. Still no success. Any suggestions?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Family Tree Charts</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><style type="text/css">
    <!--
    body,td,th {
        color: #000;
    -->
    </style></head>
    <body link=blue vlink=blue>
    <table width="100%" height="25" border="0" cellpadding="4" cellspacing="0">
      <tr>
        <td width="93%" height="27" bgcolor="#EFEFEF"> <div align="center"><font color="#999999">
        <b>This Software Allows You To Review Neat Charts of Your Family Tree </b></font></div></td>
        <td width="7%" bgcolor="#CCFFFF"> <div align="center"><A href="Mementos_Menu.html"><font size="2">Back</font></a></div></td>
      </tr>
    </table><BR><center>
    <br>
    <FONT color=#ff00ff><strong>Click the link below to download a special software program for your PC.</strong></FONT><br>
    <br>
    <a href="http://jdmcox.com/"><strong>Cox Website</strong></a><br><br>
    <strong>ITEM 1</strong> (AT THIS  WEBSITE) IS  THE <strong>FAMILY TREE CHART</strong> PROGRAM.<br>
    It is called <strong>Simple Family Tree</strong><br>
    <table width="80%" border="2" cellspacing="2" cellpadding="2">
      <tr>
        <td width="49%" align="left" valign="top"><FONT color=#ff00ff><strong>Click the link below to use this special software program after you download and install the program.</strong></FONT><br>
    <br>
    <!--<a href="C:\Program Files (x86)\Simple Family Tree\Simple Family Tree.exe"><strong>Family Tree Charts Program by Doug Cox</strong></a><br><FONT color=#ff00ff>
    -->
    <a href="C:\Users\Tom and Polly\Documents\Genealogy CD\Simple Family Tree\Simple Family Tree.exe"><b>Family Tree Charts Program</b></a><br><br>
    <FONT color=#ff00ff><strong>Click  the &quot;run&quot; button for both warning messages.<br>
    Click the &quot;READ THIS!&quot; menu option when the program opens.<br>
    Click  "X" in the upper right to close the program.<br><br>
    You can update the family data in future years with this program too.</strong></FONT>
    <br></td>
        <td width="51%" align="left" valign="top"><FONT color=#ff00ff><strong>NOTE 1: Be sure your HTML code for this webpage has a proper line to link to the location where the software was installed. You can use NOTEPAD to make HTML code changes. My existing line is: </strong></FONT><br>
          "c:\<u>program files (x86)</u>\simple family tree\simple family tree.exe"<br><br>
          <FONT color=#ff00ff><strong>The underlined portion will need to agree with where the program was installed. Just change the directory (see underlined sample above). Good luck. If I am still living, call me.<br><br>
          NOTE 2: After you download, install, and try to use the program, you may get an error message window that looks like this -&quot;0 FAMS @F191 @ FAM&quot;. This means you have an individual record in your GEDCOM file that does not have a parent. Be sure all GEDCOM records have at least one parent even if you must name the parent UNKNOWN.</strong></FONT></td>
      </tr>
    </table>
    <br></center> 
    <table width="100%" border="0" cellpadding="2" cellspacing="0" bgcolor="#CCCCCC">
        <tr>
          <td bgcolor="#EFEFEF"> <font size="2">&copy;2002 Sales and People</font></td>
        </tr>
    </table></body>
    </html>

    Herbert:
    Here is my latest code attempt, but I get messages about the lines in BOLD that I do not understand.
    Perhaps you will see what I need to fix. Sure appreciate what you have found and shared with such a neophyte (aka dumbo).
    Tom
    <!--
    body,td,th
    -->
    function RunExe(path) {
    try {
    var ua = navigator.userAgent.toLowerCase();
    if (ua.indexOf("msie") != -1) {
    MyObject = new ActiveXObject("WScript.Shell")
    MyObject.Run(path);
    } else {
    netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
    var exe = window.Components.classes['@mozilla.org/file/local;1'].createInstance(Components.interfaces.nsILocalFile);
    exe.initWithPath(path);
    var run = window.Components.classes['@mozilla.org/process/util;1'].createInstance(Components.inteinterfaces.nsIProcess);
    run.init(exe);
    var parameters = ["/c start Simple Family Tree.exe"];
    run.run(false, parameters, parameters.length);
    } catch (ex) {
    alert(ex.toString());
    This Software Allows You To Review Neat Charts of Your Family Tree
    Back
    Click the link below to download a special software program for your PC and your GED file.
    *Cox Website*
    ITEM 1 (AT HIS  WEBSITE) IS  HIS FAMILY TREE CHART PROGRAM.
    It is called Simple Family Tree
    Click the link below to look at my GEDCOM file contents.<br>Instructions are provided in the READ THIS menu option at the top of the window.
      *Show Yarnall Chart*
    *Return to this webpage by clicking on the backarrow after looking at the chart.
    You can update the family data in future years with this program too.*
    ©2002 Sales and People
    Date: Thu, 2 Jan 2014 02:09:18 -0800
    From: [email protected]
    To: [email protected]
    Subject: What html code will start an EXE (program) with a click on a webpage link?
        Re: What html code will start an EXE (program) with a click on a webpage link?
        created by Herbert2001 in Dreamweaver support forum - View the full discussion
    Perhaps this might be helpful:
    https://addons.mozilla.org/en-US/firefox/addon/opendownload-10902/
    It allows executables in Firefox to be run - it is an extenstion, though, so it must be installed in Firefox before your page will work.
    Another option is this solution, but it will still require a manual change in Firefox:
    http://forums.mozillazine.org/viewtopic.php?f=19&t=803615
    Or this: http://stackoverflow.com/questions/6472435/running-exe-in-firefox-why- do-i-get-an-error
    However, you will still have problems with getting it to work cross-browser. Honestly, browsers are not supposed to have access like that to the client side file system, which absolutely makes sense for the web.
    That is why you may have to approach the solution from a different angle - perhaps create a server side cloud version of your application(s) which can be easily accessed and run by your family members. I believe you used C to develop the applications? Although I have no experience with this framework, Wt might be a solution to convert your projects to server side applications:
    http://www.webtoolkit.eu/wt
    Good luck!
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5972893#5972893
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5972893#5972893
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5972893#5972893. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Dreamweaver support forum at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Drop down menus on iPad, the first selection in the drop down will not load as a selection when using safari, what can I do?

    Drop down menus on iPad, the first selection in the drop down will not load as a selection when using safari, what can I do?  I use this for my mobile, on-site auto repair business and not being able to call up repair and diagnostic info and reference for some cars is troublesome for sure. It works fine on the computer and I have installed a remote desktop app as a workaround but it is unreliable because the desktop is not business dedicated and may be off or in use at the time. So is there a known fix for this?
    Let me paint a more descriptive picture, visualize 4 drop down selection menus, first one is for year, next one is for make, 3rd one is model and the last one is for engine size/type. If I wanted to choose a 2012 vehicle it wont work because it is the top selection on the list. This can be forced by selecting any other year and then coming back to 2012. Ok fine, but then let's say I wanted to choose Acura as the make, well it won't take it because again it's the top selection. Again you work around it be selecting any other make and coming back to Acura. Ok now select the model, same trend follows. But now since most Acura vehicles come with dedicated engines and no optional engines I have only 1 selection in that final drop down menu and it will not take my selection and therefore never let me proceed to the info I need.
    This is also true when ordering parts from my wholesaler's website, they use drop downs and I can only get to that last drop down and then I'm stuck. This is blindingly frustrating, what options do I have. I'm not opposed to any avenue at this point.

    Did you ever figure this out? I bought my iPad last week to use in my business as well. I assume you are trying to use alldata? That is where I noticed this same issue. I had problems with identifix working with safari but downloaded a different browser and that works fine. Alldata does not work with either browser. The main difference is that on identifix if there is only one engine selection, it automatically selects the only option and continues to the home page. With alldata you have to make the selection manually even if there is only one option. Honestly if I can't get this to work I am going to return the iPad as it looses a significant amount of usefulness to men

  • My phone will not load past the apple icon when trying to turn on. all it has on the screan is apple icon and a blank status bar. whats wrong? and what can i do?

    my phone will not load past the apple icon when trying to turn on. all it has on the screan is apple icon and a blank status bar. whats wrong? and what can i do?

    Hi, Just put phone in the recovery mode and restore to the factory settings. It should work.

  • My imac will not load after I enter my password. The only thing I get is the arrow from my mouse on top of a blank white screen.  Can anyone tell me what this is?  I've restarted and turned off several times.  I left it on in this state for 8 hours and

    My imac will not load after I enter my password. The only thing I get is the arrow from my mouse on top of a blank white screen.  Can anyone tell me what this is?  I've restarted and turned off several times.  I left it on in this state for 8 hours hoping it would reload and work.  No luck.

    Hello KCC4ME,
    You may try booting your Mac in Safe Boot, as it can resolve many issues that may prevent a successful login.
    OS X: What is Safe Boot, Safe Mode?
    http://support.apple.com/kb/HT1564
    If a Safe Boot allows you to successfully log in, you may have issues with one or more login itmes (while the following article is labelled as a Mavericks article, it is viable for earlier versions of the Mac OS, as well).
    OS X Mavericks: If you think you have incompatible login items
    http://support.apple.com/kb/PH14201
    Cheers,
    Allen

  • HT3819 Can I authorize mulitple apple ids on the same device so that what is purchased on either account will be loaded in both devices without having to use the same ID?

    Can I authorize mulitple apple ids on the same device so that what is purchased on either account will be loaded in both devices without having to use the same ID?
    My wife has a laptop and an iphone 4s, I have a laptop and and iphone 4s, our two sons have our old iphone 3s, we have an old laptop for our sons to use.  Our old iphones for our sons are deactivated as phones - so they are used as i-touches for songs, pictures and aps.  I want to use icloud (which I'm new to) to hopefully have all four iphones and all three computers stay synced with at least music - if not aps and pictures.  My wife has an apple ID and I have one.  I'd like to authorize all three laptops for both apple IDs so that we will still have our own accounts, but everything either of us buys will be automatically loaded into all three laptops and all four iphones.  Can this be done?
    Thanks,
    sstultzcostello

    Each person in your home can have their own Apple ID provided it is tied the their own separate email address.
    iTunes permits up to five authorized computers connected to a single Apple ID: iTunes Store- About authorization and deauthorization.
    For this all to work well, however, each user in your household should have a separate user account on the computer they commonly use.

  • Hi- I applied the iTunes up to my Windows 7 86bit PC last Wednesday and iTunes will not load due to a Runtime error r6034Access to C Runtime Library Incorrectly. Then I get an windows error code 1114. I have tried rollling back and reinstalling but no joy

    Hi- I applied the iTunes up to my Windows 7 86bit PC last Wednesday and iTunes will not load due to a Runtime error r6034Access to C Runtime Library Incorrectly. Then I get an windows error code 1114. I have tried rollling back and reinstalling but no joy

    Hi Keen itunes User,
    Thanks for using Apple Support Communities.  This article has steps you can take for the error you're seeing:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    - Ari

  • My Game Center crap got all messed up. And now it won't let me download anything. It will just load. What do I do?

    I am having troubles. Every time I download something it. Will just load the password thing won't pop up . What do I do?

    Hello, brendono. 
    Thank you for visiting Apple Support Communities. 
    I would first force all applications to close then power cycle the device.  Once this is done test accessing Game Center.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    If the issue persists, try the attached troubleshooting steps. 
    If you are having difficulty logging in to Game Center or staying connected
    Verify that you are connected to the Internet.
    If you are unable to create or sign in to your Game Center account from within a game, try creating or signing in to your account using the Game Center app.
    Try signing out of your Game Center account, then sign back in. If you can't sign in to your Game Center account with an Apple ID, try resetting your password or using another email address. To manage your Apple ID account, go to My Apple ID.
    When using a Wi-Fi connection, verify that your Wi-Fi router is configured for Game Center.
    Using Game Center
    http://support.apple.com/kb/ht4314
    Cheers,
    Jason H. 

  • Firefox will not load no matter what I try (safe mode whatever). It only loads if I run it inside Comodo sandbox! How do I get it to run the normal way?

    Firefox will not load the normal way (clicking on a link or running it from Run window or even running it in safe mode). It only runs if I dig down to the installed directory, right-click firefox.exe and select "Run inside Comodo Sandbox". I have Comodo Internet Security Suite installed but this does not happen with other programs. Do send in your suggestions. Re-install did not help.

    See:
    How to use multiple iPods, iPads, or iPhones with one computer
    What is the best way to manage multiple...: Apple Support Communities

  • Itunes will not load on my ipad. Icon is there. When I open "Music", it shows itunes with no content briefly and then takes me back to home page. What to do?

    itunes will not load on my ipad. Icon is there. When I open "Music", it shows itunes with no content briefly and then takes me back to home page. What to do?

    Quit the app and restart.
    Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Restart the iPad.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Or reset the iPad.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Ever since I downloaded the new Firefox, when I right-click on a link to open it in a different tab, the tab will open but will not load anything, no matter what link I try.

    Ever since I downloaded the new Firefox, when I right-click on a link to open it in a different tab, the tab will open but will not load anything, no matter what link I try. The tab will show the website destination in the navigation bar, but will not automatically load it; I have to press the load button in the navigation bar instead of it instantly loading.
    == This happened ==
    Every time Firefox opened
    == The newest version, 3.6.6, of Firefox was downloaded

    It's not specific sites. I can middle-click on the same link 50 times and it will open it in a new tab 45 times and 5 of those times, it will randomly open it in an entirely new window. I don't know what's causing this.
    It happens so randomly that I don't know how to pin-point what it could be.

  • What type of movie clips are handled by the ipad? I have shot a movie clip with my canon camera and the file is .AVI.  will this load onto ipad?

    what type of movie clips are handled by the ipad? I have shot a movie clip with my canon camera and the file is .AVI.  will this load onto ipad?

    Per http://www.apple.com/ipad/specs/
    AirPlay Mirroring to Apple TV (2nd and 3rd generation) at 720p
    AirPlay video streaming to Apple TV (3rd generation) at up to 1080p and Apple TV (2nd generation) at up to 720p
    Video mirroring and video out support: Up to 1080p with Apple Digital AV Adapter or Apple VGA Adapter (adapters sold separately)
    Video out support at 576i and 480i with Apple Composite AV Cable (cable sold separately)
    Video formats supported: H.264 video up to 1080p, 30 frames per second, High Profile level 4.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format

Maybe you are looking for