because of the flash buttons, but the links do not work on Web pages...

I actionscripted some custom flash buttons with the getURL ("www..."), and they work when I preview them IN flash. When I publish, however and open the .swf file, I get a warning when I click it say something about security issues and the link never opens (or even attempted to). And finally, when I put the .swf into my .html, they do NOTHING when I click on them in preview...

FYI - I started to do the site, and I am not yet connected to any server. I'm working locally... I use windows 7...

Help, please! I'm about to sign with iPages Web hosting for and want up on the site soon!

Thank you!

If they are coded correctly in flash and imported in Dreamweaver it should work fine and most people have installed Flash Player on their machine. I think that people without the player will automatically be asked to download a free version of Flash Player, if they don't have. It has worked for me a couple of times and it's nice to have "fancy" animated buttons too!

Fred...

Tags: Dreamweaver

Similar Questions

  • zynga took my moms account and changed password for facebook and e-mail, she followed the steps to change the password, but the link does not work

    I gave this e-mail address to answer to another email user but my password has been changed and nt theres initially asked

    zynga took my moms account and changed password for facebook and e-mail, she followed the steps to change the password but the link does not work as it changes the password of my account, she tried this link 3 times now is there anything else she can try.

    Hello

    ·        What operating system is installed on your computer?

    ·        What browser do you use to connect to the internet?

    ·        Which email service provider you are talking about?

    Because the problem is linked to facebook I suggest you to post your query on facebook forum for assistance:

    http://www.Facebook.com/help/community/

  • Shortcuts mouse to "Open the link in a new tab" help "Middle-click on the link" does not work on 10.0.1

    Shortcut of mouse to "Open the link in a new tab" help "Middle-click on the link" does not work on 10.0.1, it worked on version 9.0.1.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance/themes).

  • BUY the link does not work, the browser opens a blank page...

    Hello! How to buy Photoshop CS6? BUY the link does not work, browser opens the blank page

    Hello

    You may please check out the link below to buy CS6.

    Creative Suite 6

    In this case, always a blank page opens, I'll ask you try another web browser or delete the history and the current web browser cookies and try again.

    Hope this will help you.

    Kind regards

    Hervé Khare

  • When a link to open another application and firefox is closed, Firefox opens but the link does not work

    I use Firefox on Mac OS 10.9.2, 29, this problem has occurred on the OS 10.8 ~ and various other versions of FF. I use 29 simply because I like it!

    The problem: Firefox is configured as the default browser in all directions it is possible to set as the default value. However, when I click on a URL from any application and Firefox is closed, Firefox opens opens, my last session of navigation tabs start, but the link does not open. I must return to the application and click the link again. This only happens on Firefox. I can put any other default browser and it will open the link in a closed state.

    This is happening to me, same, on Mac OS X 10.6.8 but only since I've upgraded to the latest version of Firefox, 32.0.1. I can click on a HTTP link in another application and Firefox becomes the active application, but it will not load a new tab for the link, as expected. Instead, it just sits there. I have to go back to the other application and click on the link a second time, during which point Firefox correctly open a new tab and load the destination URL.

  • Try to download again PSE 12 but the link does not work?

    I lost my 12 PES and PES Preimium and try to download from the Adobe site, however, the link does not seem to do anything. I click it and it highlights with a drop-down list of languages. I have my serial number, but not the chance to use it. Any ideas why the link doesn't work?

    Available downloadable Setup files:

    Download and installation help links Adobe

    Help download and installation to Prodesigntools links can be found on the most linked pages.  They are essential; especially steps 1, 2 and 3.  If you click on a link that does not have these listed steps, open a second window by using the link to Lightroom 3 to see these "important Instructions".

  • The Flash (AS 2) banner link does not work if I download the SWF on my web and you try to add to my Web site.

    It works when I published the swf and html and view it in the browser. Initially the link wasn't working when I published in to HTML and swf, but then I changed the safety of local playback to access network only. If I upload it to my web server via Filezilla then animation of the banners works, but if clicked, goes nowhere more. Any suggestions?

    Code ActionScript 2 that I use:

    {We (Release)}

    getURL ("http://www.example.com', '_blank'");

    }

    There's no problem with your code.

    disable any blocker popup you or try another browser.

  • The external web site links do not work in Web view

    Hello

    " I folio with overlay of web content and inside I have a link to external site: < a href =" http://external_site "target ="_blank"> "

    Everything works as expected when viewing folio on the iPad Adobe Viewer,

    but does not work in Web mode. I found, that contentviewer.adobe.com puts "web content overlay" in the iframe and add after the html header line

    http://CDN-ContentViewer.Adobe.com/public/pepper/lib/interwindow-messaging-lib.js

    It seems that this script blocking external links.

    Someone has experienced this problem?

    Any ideas how to make the web content from overlay to external site link working in Web mode?

    Thank you

    Piotr



    Thank you. The viewer web team has studied this issue and found a bug. The fix should be in place in a few weeks.

  • period overlaps the code does not work in apex page

    Hello

    Employees have a schedule with a start date and end. Calendar periods cannot overlap for the same employee.

    I have a function that returns the error of validation of text as follows:

    declare
    number of l_dummy;

    Start
    Select count (*)
    in l_dummy

    of fus_medewerker_roosters
    where mdr_code =: p61_mdr_code
    and <>id: p61_id
    and to_date(:p61_begin_periode,'DD-MON-YY') < = eind_periode
    and to_date(:p61_eind_periode,'DD-MOn-YY') > = begin_periode
    +;+

    If l_dummy > 0
    then
    Back to 'this employee already has a calendar in this period.';
    on the other
    Returns a null value.
    end if;

    end;

    But the code does not work. It records data of an employee even though the periods overlap.

    But the code works correctly in workshop:

    declare
    number of l_dummy;

    Start
    Select count (*)
    in l_dummy

    of fus_medewerker_roosters
    where mdr_code =: p61_mdr_code
    and <>id: p61_id
    and to_date(:p61_begin_periode,'DD-MON-YY') < = eind_periode
    and to_date(:p61_eind_periode,'DD-MOn-YY') > = begin_periode
    +;+

    If l_dummy > 0
    then
    DBMS_OUTPUT. Put_line ("this employee already has a calendar at this time."); end if;

    end;

    What goes wrong. Why it works very well in the Studio, but not in my page?

    Kind regards
    Diana

    Edited by: dianap on Sep 4, 2009 08:31

    Hi Diana,

    It comes with the following:

    to_date(begin_periode,'DD-MON-YYYY')
    

    and

    to_date(eind_periode,'DD-MON-YYYY')
    

    Here are the dates of the table itself, should not be converted to dates.

    Secondly and more important still, the list of selection of P11_MDR_ID does not return NULL, it returns "null %" - it is a string that should be converted to null.

    I have made a few changes for postings of these - please take a look and check that everything is working ok.

    Andy

  • My links and external links do not work on my page. Using Dreamweaver CS4

    I followed all the instructions to add external links to my website using Dreamweaver CS 4.  I can't click on one of the links in the body of my pages, even on my plan page of the site that my internal links do not work.  Any suggestion would be greatly appreciated I looked online for a resolution to this problem and not finding any new information.

    Thank you

    diamndlady

    The guilty code starting on line 184. Remove this:

    and on the 220 to 222 lines remove this:





    This should solve your problem.

    When you are stuck in the future, use the validation tools W3C code to solve the problem code.

    Code Validation tools
    ------------------------------------
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics | Print | Media specialists
    http://ALT-Web.com/
    http://Twitter.com/ALTWEB

  • my firefox has been updated yesterday, and since then I can't copy any link in a text of the e-mail, more. I drag the address of the page, but the link does not work. Thank you.

    my firefox put updated yesterday, and since then I can't copy any link from a web page in an e-mail message more to send. usually, I could drag the address of the page and it automatically copied the blue link and it could open. now, it does not work. I use gmail, but I don't think it is related to the post.

    In Firefox, you usually use a string as button in the toolbar all foregoing enamel make up the zone Editor to create a clickable hyperlink.

    Sometimes, it happens automatically if you send the message, but I've never seen this in Firefox when you compose a message.

  • Send the link does not work in Firefox

    "Send link" does nothing. Recently I reset Firefox and have version 22.0 and Win7.
    None of the answers I see work - IE, the mailto option is correct (Outlook) and the default mail program is Outlook. Bit worried using about: config, but maybe there is a simpler solution.
    What else can I try?

    Ok. I have it fixed. Went in tools/options. Hit the mailto, which has already been set at Outlook (default) and press "ok" instead of just going out.
    He is currently working.
    Thanks to all for trying to help me.

  • System it is connected to the internet, but my browser does not display a web page.

    XP has forgotten how to connect to the internet.

    XP is always connected to the net fine, but today he forgot.  When I try to set up the net through the Control Panel, it says I am already connected, but
    Google does, and I can't ping the server in the CLI.  How can I fix it, please?  I send you this PCLinux, on the same machine
    and the same hard drive.
    Thanx. -doug

    Hi dougmack,

    1. What happens when you try to connect using Internet explorer?
    2. What is the type of internet connection you use?
    3. Did you the latest changes on the computer?
    4. You have security software installed on the computer?

    Method 1

    Check if the problem persists in mode safe mode with networking mode.

    A description of the options to start in Windows XP Mode

    http://support.Microsoft.com/kb/315222

    Method 2

    If the problem does not persist in mode safe mode with networking mode, then it is possible that some third-party programs installed on the computer is causing the problem.

    I suggest that you configure the computer in a clean boot state and check if it helps.

    To help resolve the error and other messages, you can start Windows XP by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.

    See section to learn more about how to clean boot.

    How to configure Windows XP to start in a "clean boot" State

    http://support.Microsoft.com/kb/310353

    Reset the computer to start as usual

    When you are finished troubleshooting, follow these steps to reset the computer to start as usual:

    1. Click Start , and then click run.
    2. Type msconfig , and then click OK.
      The System Configuration utility dialog box appears.
    3. Click the general tab, click Normal Startup - load all device drivers and services , and then click OK.
    4. When you are prompted, click restart to restart the computer.

    Also check the State of the network adapter on the computer by using the Device Manager.

    How to manage devices in Windows XP

    http://support.Microsoft.com/kb/283658

  • Muse will not allow a hyperlink in a text frame, unless it's rasterized.  The link does not work. ???

    I am a new Subscriber.  I am just placing of text links in a paragraph.  Preview before or after the loading of the site to a Web site, I get an error message that text of the hyperlink in a text frame requires the pixelation and will not work in a browser.  I have read all the manual information and tutorials and there is no mention of pixelation.  Any help will be greatly appreciated.   I use a PC with windows 7.

    John

    d

    Hi Johngjudy,

    Did you use a system font in the text box. If Yes, then try using a web Form or standard font and it works perfectly.

    Kind regards

    Vivek

  • Not yet documented examples of Applications download the link ADF not working not

    Steve Muench not yet documented ADF Sample Applications located at http://blogs.oracle.com/smuenchadf/examples/

    The download link for samples does not. He headed Oracle JDeveloper Product Page instead.

    By clicking on the title of any sample application used to allow download of the example file. Now that it's pointing to http://www.oracle.com/technetwork/developer-tools/jdev/overview/index.html

    Is there another way to download the sample applications?

    Thanks in advance for your help.

    Mitesh

    Refresh your browser on my samples page and click on the link for #145. It should work now.

    The base directory is not navigable, you must know the full URL to the file.

    I added #145

Maybe you are looking for

  • Impossible to find favorites

    When I downloaded Firefox and made my search engine, I lost my favorites with many sites, that I wanted to go, they are not in the bookmarks. In fact, I lost my entire toolbar and I checked the box that asked if I wanted to that it transferred. If I

  • Satellite L850-1JT - high CPU temperature

    I don't know, but I think that my laptop has a problem of heat, to play a minute modern warfare 2 und processor have a temperature of 101 degrees, the portable buyed yesterday! New BIOS of the Web site is installed!

  • My iPhone 6 does not reload after execution of 9.2.1 update

    I ran the 9.2.1. update last night on my phone. It seems to work very well, my phone plugged in all night as usual and awoke to find a phone to 22%. Tried the three Apple condition charges that we have in the House and it will show that he is in char

  • 0 x 00000024 (0 x 00190203, 0x82F8E2A8, 0xc0000102, 0x00000000)

    Anyone know how to solve this code to stop on a blue screen, I am able to access f12 screens and f8, warning that I am about computer iliterate. Windows xp 0 x 00000024 (0 x 00190203, 0x82F8E2A8, 0xc0000102, 0x00000000) Thank you

  • Batch file gurus: how to copy don't miss it that files between parallel folder by using UNC paths trees

    The problem: you have two directories structures identical, a source and a target.  (Let's say \\srchost\srcfolder and c:\destfolder.)  The goal: using a batch file in Windows XP, browse to the source folders and add all files to the destination tree