Movieclip on click go to webpage with as 2.0

Hi,
I have a movieclip thats takes 10 seconds to show up on the animation.
How can i click on this movie clip and open a webpage ?

assign that movieclip an instance name (eg, mc) and apply a mouse handler (when mc exists):
mc.onRelease=function(){
getURL("http://www.adobe.com");

Similar Messages

  • 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.

  • Right Click to convert webpage to pdf creates pdf with website headers but not iframe content

    Hello
    We are having a problem converting webpages to pdf with Acrobat.  Out website uses Iframes to view the website we are converting to pdf.  When I right click on the webpage and click convert to pdf everything works fine. But the pdf that is created is only the header of the page not the content of the iframe I right clicked on.  If you go to file and print to pdf it works fine we get the content of the iframe in the pdf and not the rest of the webpage. But the users prefer to right click. Is there some way to fix this so we can right click to convert to pdf?
    Thanks
    Jason

    I dont think acrobat can convert iframes to pdf (need to check). It can convert html, some javascript, images and swfs for example. Data driven pages, depending of the programming cant be converted too.

  • Can you block webpages with safari

    i was wondering if there was a way to block certain webpages with safari, i kno that you can make it so that a user can only view certain webpages, but that would mean blocking everything but the page that i dont want viewed.

    Hi yes you can but you need to have the administrator account and you can only specify pages for user accounts. If this is the case then:
    In 'safari' go to 'preferences' and 'secuirty' tab. Click 'Enable parental controls'. However this only works in Safari. If you want to stop people viewing pages in other browsers you'll need to set-up on that application or prevent them from accessing it all together in System Preferences.
    Hope this works
    Stu

  • Can't connect to any webpages with any browser

    Our Powerbook G4 can not connect to any webpages with any browser (safari, firefox, IE) but other TCP/IP applications work fine. IE, the AOL application can connect via TCP/IP, iChat and skype both work fine.
    Any idea?
    Thanks,
    Alan

    It sounds to me like either a DNS server issue, or your Mac is looking for a web proxy and not finding it.
    If you don't have the DNS server filled out in your network settings, find out the DNS IP info from an ISP and try inputting it.
    Also, click on the Proxies tab in Network Settings to see if you have a proxy configuration listed (either automatic config or manually inputted proxies per port). If you do, disable the proxies and try again. If not, see if you can get the web proxy info for where you are from either your ISP or your work place.

  • When I click on the tab with a + on it, located next to the active tab a new page does not open. If I click on "New Tab" in the File menu a new tab does not ope

    When I click on the tab with a + on it, located next to the active tab a new page does not open. If I click on "New Tab" in the File menu a new tab does not open.

    Hi jcatx2013, we don't really have enough information on your system to make specific suggestions...
    Could you test in Firefox's Safe Mode? That's a standard diagnostic tool to bypass interference by extensions (and some custom settings). More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode" (''not'' Reset)
    Any difference?

  • I installed Photoshop CC (2014) yesterday through the Creative Cloud app. Now, when in Lightroom when I go to "edit in"and select Photoshop CC (2014) and click on "edit copy with Lightroom adjustments",  it opens Photoshop CC (2014) but my photo doesn't s

    I installed Photoshop CC (2014) yesterday through the Creative Cloud app. Now, when in Lightroom when I go to "edit in"and select Photoshop CC (2014) and click on "edit copy with Lightroom adjustments",  it opens Photoshop CC (2014) but my photo doesn't show up?  My photo does show up when I click on "edit copy" or "edit original".
    How can I correct that so that I can open up a photo from Lightroom WITH the Lightroom adjustments? Thanks!

    I'm having a similar problem, but only with jpg's. I have PS CS6, CC, and CC 2014. Other image file formats function normally with regard to the "open with" list. PS CC 2014 appears on the list. But with jpg's only PS CC appears on the "open with" list and 2014 can't be added by the browsing for it.
    The curious thing is that if I have any of the three versions of Photoshop open, click on Photoshop CC in the "open with" list, the image opens in whatever version is already open on my computer. This is true of all image formats. No matter which version I pick from the "open with" list it opens in the currently running program. I use only the latest version so keeping it open all the time is an easy work around. I won't uninstall any of the earlier versions lest more file association quirks result. it would be nice to have this matter fixed.

  • How to call a form with dabble clicking on a record with one time where

    Hi All,
    How to call a form with dabble clicking on a record with one time where clause. I mean when i dabble click on the current record i want to call another form with details of the
    record with onetime where clause. Can anyone help me in this regard.
    Now i am calling a form with parameter with onetime where but this should avoid.
    Thanks in advance
    Arif

    Hello,
    I mistakenly mark it as solved. There is a problem remain. when i placed the code below it do not execute with the where condition. I mean the condition to execute is not work.
    All records executes. Please correct my code--
    Here the WHEN-BUTTON-PRESSED-trigger on the Edit-Button:
    :GLOBAL.MODE:='EDIT';
    :GLOBAL.REQ_ID:=:PROBLEM_REQUEST.REQ_ID;
    CALL_FORM('REQUEST_ID_PARAM',NO_HIDE,DO_REPLACE,NO_QUERY_ONLY);And also, WHEN-NEW-FORM-INSTANCE-trigger of REQUEST_ID_PARAM:
    DEFAULT_VALUE(NULL, 'GLOBAL.MODE');
    DEFAULT_VALUE(NULL, 'GLOBAL.REQ_ID');
    IF :GLOBAL.MODE='EDIT' THEN
    GO_BLOCK('PROBLEM_REQUEST');
    EXECUTE_QUERY;
    SET_BLOCK_PROPERTY('PROBLEM_REQUEST', INSERT_ALLOWED, PROPERTY_FALSE);
    END IF;Arif

  • Skype click to call interferes with Microsoft Offi...

    Skype click to call interferes with copy/cut-paste in Excel and generally in Microsoft Office. Once installed it allows text-only pasting leading to time-loss in reformatting text. The problem is easily resolved by unistalling it.
    Here are some proposed steps to improve it -
    It needs better bug-testing before release
    It needs to move away from piggy-backing on Skype (without asking user's permission to install/ update itself) and instead needs to be launched separately. This would also solve the iddue (for Skype) of people abandoning and uninstalling SKype altogether because of the buggy Skype click to call thing
    Respect the user and the user's choice - and finally never ever take your user for granted (as the auto installation of Skype click to call has demonstrated)

    Me too! I thought it was a Google Chrome problem. I even rebuilt my laptop over it and spent a whole day on the phone with Geeksquad! I just uninstalled Click-to-call and now the problem is gone. 
    This is a really big deal, people use copy/paste all the time and expect the formatting to work. I'm telling everybody to uninstall click-to-call and/or don't install it in the first place. I hope somebody gets serious and fixes it. And, Skype will have to acknowledge the problem and tell me it is fixed before I will give click-to-call another shot.
    Not trying to be a jerk - that is just the truth of it.

  • Can an older IPod (click wheel) be used with a wireless/bluetooth speaker? If so, how?

    Can an older IPod (click wheel) be used with a wireless/bluetooth speaker? If so, how?

    There is no doubt you can.
    When you say photos stored on it.. in what form are these photos?? Is this your iphoto library?
    If so using iphoto library on the TC has risks.. not necessarily viewing photos .. that should be fine. But if you have photos you are editing and wireless comms drop out leaving the library with a file open, it is likely to corrupt your library. Please check with the iphoto people on the discussion board if you want to go ahead for the dangers of using iphoto on any network drive.
    The TC is not designed as a NAS .. in particular it cannot back itself up, nor can Time Machine backup the TC. So any files on the TC are at risk. If you manage to corrupt the iphoto library without a current backup... does that worry you??

  • Repairing Library Permissions: But the instructions didn't work  clicking the iPhoto icon with the Option and Command keys opened iPhoto but not the First Aid as promised

    Went to Help.  But the instructions didn't work
    clicking the iPhoto icon with the Option and Command keys opened iPhoto but not the First Aid as promised

    Give this a try:
    1 -be sure to have a current backup of the iPhoto library.
    2 - download and launch http://www.macchampion.com/arbysoft/BatChmod.
    3 - click on the File button, locate and select your iPhoto Library.
    4 - check the Unlock and Apply to enclosed checkboxes.
    5 - make no changes to the other checkboxes
    6 - click on the Apply button.
    OT

  • WRT54GC: Internet dies when accessing a webpage with alot of pictures

    Hi all, recently I noticed that when I'm browsing to a webpage with alot of pictures my internet dies on the PC I'm accessing it on. I disabled all software-firewalls and it keeps doing it. I'm surfing wired. Tested it with both IE and FF. The other PC's that hang on the net don't disonnect so the router keeps its connection. I have looked through all the options on the GUI but can't find anything. Does anyone have an idea? Or if you need more info, ask and I'll try to provide so this problem can be solved! Thanks in advance

    Hi… logon to router’s setup page and reduce MTU to 1458 check whether it makes any difference, if it still doesn’t work try upgrading latest firmware on the router, after upgrading latest firmware on the router, reset the router and reconfigure it according to ISP settings and reduce MTU to 1458…

  • Webpage with a swf file reloads on safari on every visit

    can anyone explain why a webpage with a swf file reloads on safari on every visit? it's a 1.2 MB swf file - it takes about 5-10 seconds to load but apparently doesn't get stored in the browser's cache. when you go to another page and back to the original page it loads again. (in internet explorer, once the file has loaded it is stored in the cache and doesn't repeat the loading process)

    Yes, similar to your experience, Safari reloads the page on my system too, i.e. does not write it to cache. So when I backspace, the page reloads. Same, if I enter the site on a new tab after an initial load on another tab. By contrast, Firefox, on the backspace or new tab, displays the page immediately without the reload being necessary. Very nice site by the way. Very effective use of Flash content. Is it your web design?
    You may find it helpful to send feedback to Apple. Perhaps, they'll change the caching, or perhaps offer it as an option, in Safari's next version due to make its debut with OS X Leopard in early 2007 (I'm an optimist - ).
    Let me know if you need any further help on this end. Aloha from Big Island.
    iMac G5 Rev C 20" 2.5gb RAM 250 gb HD/iBook G4 1.33 ghz 1.5gb RAM 40 gb HD   Mac OS X (10.4.8)   LaCie 160gb d2 HD Canon i960 printer

  • How do I put data from every XMLnode related,in separate movieclips when clicking a line in combobox

    How do I put data from every XMLnode related,in separate movieclips when clicking a line in combobox?
    A sample from the XML is like this:
    <Planter>
              <Lauvtre>
                        <Botanisk_navn>Acer campestre</Botanisk_navn>
                        <Norsk_navn>Naverlønn</Norsk_navn>
                        <Farge>Grønn</Farge>
                        <Herdighet>H4</Herdighet>
                        <Høyde>10-15 m</Høyde>
              </Lauvtre>
    I have a combobox where it shows the Botanical name, and the Norwegian name. But the rest of the info has to be shown in separate movieclips.
    Anyone have an idea how to do this? Can I use the trace function maybe? Here is my AS3 code so far:
    var loader:URLLoader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, onLoaded);
    list.addEventListener(Event.CHANGE, itemChange);
    function itemChange(e:Event):void
              ta.text = list.selectedItem.data;
              tb.text = list.selectedItem.label;
    var xml:XML;
    function onLoaded(e:Event):void
              xml = new XML(e.target.data);
              var il:XMLList = xml.Planter.Lauvtre;
              for(var i:uint=0; i<il.length(); i++)
                        list.addItem({data:il.Farge.text()[i] +"\n"+ il.Herdighet.text()[i]+"\n"+ il.Høyde.text()[i],
                                                                label:il.Botanisk_navn.text()[i] +"\n"+ il.Norsk_navn.text()[i]});
    loader.load(new URLRequest("lauvtre.xml"));
    Thanks!
    Rheus.

    Hi! And thank you for helping. Planter is my root node. I tried removing "Planter" from xml.Planter.Lauvtre. It didn't fetch any data then. My code works as is, but what I want the code to do, is to put these 3:
        <Farge>Grønn</Farge>
        <Herdighet>H4</Herdighet>
        <Høyde>10-15 m</Høyde>
    ...into separate textfields.
    It has to be dynamic, so that when I click on one of the plant names in the combobox, the textfields get updated according to what is selected in the combobox.
    I'm pretty new to Actionscript so I have a hard time explaining my problem:
    I want to use the combobox as the menu, that has all the latin plant names listed. When I click on one of the 100 plantnames I want the correlating info from the XML, put in textfields.

  • A webpage with FTP function

    hello,
    I'd like to know how I can setup a webpage with FTP function with Muse, where browers or my client can upload files to me from. I don't mean to publish my website via FTP. I mean to setup a page to enable my clients to upload files to me or my website via FTP function. So, how can I do this?
    Much appreciated.........

    This can't be done currently with Muse by itself.
    If your website is hosted with Business Catalyst and you upgrade to the Marketing level plan you can set that up. But it would take some knowledge of how Business Catalyst works.

Maybe you are looking for

  • Pictures not showing in edit

    Hello. Iphoto is not showing the selected photo when I double click it or choose to edit it. Photos are uploaded to iphoto okay and show in the strip at the bottom but I get a blank box where the selected photo should go. This just started happening

  • Importing movie files created with SONY HDR-TG5

    Having trouble importing movie files created with this camera. Have had success importing direct from the camera using streamclip, but struggling with old files imported from our PC. These files have these two extensions; .modd and .m2ts

  • Help viewer not working

    When I type in a help topic nothing happens. Also, when I go to the home page it nothing happens when I click the links. This is really annoying becuase I want to ask a question and I can't get the help viewer to work.

  • Overwhelmed by magic mouse!

    I bought this **** magic mouse and it will not scroll. How do I know I am running the right system. I think I am running leopard. Is that why it will not scroll? I did get some feedback. Check in System Preferences > Universal Access > Mouse & Trackp

  • Keine Raw Miniaturen in Bridge CS3

    Hallo, Bridge CS3 (mit Camera Raw 4.6 plugin) zeigt alle Raw Bilder (nef, cr2, dng) nicht als Miniaturen, sondern nur als Symbole . Die lassen sich aber klaglos in Photoshop öffnen, bearbeiten, speichern... Hat irgendjemand vielleicht eine Idee?