Links missing in SWF file

For some reason our linked areas don't appear in our swf
flash file when viewed with computers that don't have the JAVA
update. When these computers are updated, the linked areas
suddently appear. Anyone know why? Is there a way to avoid this?
I was assuming that Flash files only need flash plugins to be
viewed in a browser.

I think you need to add your local foloder to trust location of adobe security panel, try following steps:
1. Open the swf.
2. Right click and select Settings... and Adobe Flash Player Settings pops up.
3. Click Advanced... and a new IE page opens (Adobe - Flash Player : Settings Manager - Global Security Settings Panel). Close the swf.
4. On the left of the Adobe page, select Globel Security Settings Panel to open the panel.
5. In the panel at right of page, select Always allow and add your local foloder which stores the swf file to the location box below.
6. Close the page.
7. re-open the swf and refresh the QaaWS connections.
Now the BOE login dialog should be poped up.

Similar Messages

  • How to attach a Callto Link to a swf-file?

    Hi,
    I'm currently working on an animated skype button (swf-file) which I included into my website and I'd like to attach the following command to it:
    Callto://myskypeid
    It would be perfect, if - when hovering on it - it shows that it contains an active link (showing the "hand") and when clicking on it, it calls the user's skype app. to phone me on skype
    So, in the adobe tutorials I found the following code for inserting a "hyperlink" to a button.
    import flash.events.MouseEvent;
    function gotoAdobeSite(event:MouseEvent):void
       var adobeURL:URLRequest = new URLRequest("http://www.adobe.com/");
       navigateToURL(adobeURL);
    linkButton.addEventListener(MouseEvent.CLICK, gotoAdobeSite);
    I customised the code:
    import flash.events.MouseEvent;
    function openskype(event:MouseEvent):void
       var Skype:URLRequest = new URLRequest("Callto://myskypeId");
       navigateToURL(Skype);
    linkButton.addEventListener(MouseEvent.CLICK, openskype);
    But the problem is that there occur "linkbutton not defined property or method" errors when running the code.
    My swf or rsp. my fla file contains 10 movieclips which run one after another on the timescale, all in different layouts so that the colour changes during the "run".
    I tried it with the first movieclip - layer1 - and named its instance "linkButton".
    Didnt work.
    Then I tried to insert another layer and attached another picture with alpha=0, converted it into a button and gave its Instance the name "LinkButton", but also didnt work.
    Can someone please help me here? I suppose its just a "small" mistake and I couldn't be "so far away" from succeeding...
    That would be great! Thanks for the help in advance!!

    Hi Ned and all the others,
    ok ...the problem isn't really fixed so far.
    But the first step is done! :-) with the following code:
    import flash.events.MouseEvent;
    function openskype(event:MouseEvent):void
       var Skype:URLRequest = new URLRequest("Callto://myskypeId");
       navigateToURL(Skype);
    linkButton.addEventListener(MouseEvent.CLICK, openskype);
    I replaced the "Callto://myskypeId" with "skype:myskypeId?call" as the first syntax shows a wrong Skypname resp. the name will be shown with a "/" in the end.
    But now i'm faced with the problem, that
    1st: there's no "hand" shown, when hovering the button on the website.
    2nd: I have to doubleclick on it to open the skype application.
    3rd: after i doubleclicked on the button there opens up always an additional blank page shown in the browser. And now I try to fix that - I tried it with navigateToURL(Skype, "_self"); or "_parent" and so on...but didnt work.
    Meanwhile I think the because of not all of the pictures - MCs - are attached to the instance of "linkButton" that there's the missing "hand" when hovering with the mouse the button. On testing i found out that some of the pics are still bitmaps although i converted them all in the beginning to MCs (??dont know what i did there...).
    Think the "missing hand" problem will be fixed more easily.
    The bigger problem is, how to avoid the additional blank page in the browser when clicking on the swf on the website?
    It seems to me, that on the one hand, I'd like to have an "active" link on that swf (or button) that shows the "hand" in the mousepointer - but on the other hand, it's not really a website which I'd like to open up then but just an application. So maybe here's the main problem.
    Alternatively I thought about replacing the sequence with the URL request in the code by something rather appropriate for lauching applications e.g. FS Command or something like that. (read that somewhere).
    If someone knows/had similar problems/could help me again - or at least to the next step that would be perfect!
    Thanks again, Ned for your helping advice (I learned something!!!) - maybe you could help me with the above probs?
    Best regards
    steff

  • URL, email links in Flash swf files shows up in search engine

    Hi, can you please help? I post this problem a while ago.
    My problem is: I developed a website in Flash 8 on the Mac.
    The Flash swf file is displayed via Dreamweaver doc. When I do a
    search and, when the site is found in Google, all the links used in
    the Flash swf file appears in the snippets below the main title. I
    would like to know where I'm going wrong, and how can I prevent
    Google from displaying the URL and email details.
    Do I need to use a preloaded, or do I need to put the Flash
    swf movie file in a table in Dreamwever.
    Many thanks,
    Blue_Mac

    >I don't know how this is happening then. Search engine
    spiders don't
    >read through compiled files like Flash.
    Thanks, this is reassuring. Although it seems to have done
    just that.
    The following action script is where the details are coming
    from. I've used the name 'whatever" as an example. I don't mind the
    URLs on view as much as I mind my email address because of security
    issues.
    on (release) {
    //Goto Webpage Behavior
    getURL("mailto:[email protected]","_blank");
    //End Behavior
    I'll check my files again to see if I've miss anything out -
    I have done this so many times already.
    Regards,
    Blue_Mac

  • How do you add a link to a .swf file?

    Is there a way to add a link/URL to a .swf file, without embedding into the original .fla file?
    Is there any way to do that with just the .swf file alone, and without actually editing the .fla or re-creating it?

    I won't be providing lessons, but here's the basics...  to load the other swf file using AS3 you will use code like the following in the main timeline...
    var my_loader:Loader = new Loader();
    my_loader.load(new URLRequest("theOther.swf"));
    addChild(my_loader);
    addChild(myBtn); // described next but coded here
    To add a link, you can create an invisible button and place whereever you like in the timeline, or if its a text link you can assign the link to the dynamic textfield via the properties panel.  To create an invisible button just create a button symbol and draw a shape for it only in its Hit frame, leaving all other empty... that way you can still see the button to work with it on the stage, but it will be invisible when the file plays.  You could also have the button include text or any other visual you desire if you don't need/want it to be invisible.
    If you use the button approach, then you need to assign the button an instance name (I use "myBtn" for this example)  Then you have to assign an event listener and event handler function for the button...
    myBtn.addEventListener(MouseEvent.CLICK, clickBtn);
    function clickBtn(evt:MouseEvent):void {
         navigateToURL(new URLRequest("http://www.yourlinksurl.com/etc"));
    The reason I addChild for myBtn after I addChild the Loader is so that it will sit above the Loader.  Without that line, the Loader would have the loaded swf sitting atop the button blocking access to it.
    If you plan to use a Textfield instead of a button, then you don't need the event code but you still need the addChild() line to bring it in front.  As mentioned already you can link it via the properties panel field for a link.  To make life simple per these instructions just assign the textfield an instance name of myBtn.

  • Html link to multiple swf files on 1 html page

    i have a html page that has multiple (20) links to video files, i would like to play these files in the same position, within the same html page. therefore saving myself having 20 html files with the separate swf files embedded. firstly i was planning on converting my .mov files to swf to make then smaller.
    my query is, what is the best way to 'house' a swf file(s) that plays when clicked on the relative link on that page.
    i have build the page using CSS and have limited javascript knowledge although im keen to learn.
    cheers

    VIDEO GALLERY --
    You need a Flash player that supports a playlist.  If you're good with Flash and Action Script you could build a custom player.  If not, pick-one from the links below:
    Wimpy Rave simple to deploy, dirt simple to update playlists by uploading media to wimpy folder.
    WWD Player --
    http://www.woosterwebdesign.com/flvplayer/
    JW Player --
    http://www.longtailvideo.com/
    FlowPlayer --
    http://flowplayer.org/
    YouTube --
    http://code.google.com/apis/youtube/getting_started.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Disable link in embedded .swf file?

    Hi, all,
    I have embedded a flash .swf file in a topic, and it plays
    just fine in WebHelp output.
    The .swf was made as a banner in another application, where
    the user clicks on the image to bring up a new window with its own
    content. That link must be embedded in the .swf, because the html
    code in RH just puts it there and lets it run.
    I'm planning to insert a note to explain the dead link,
    saying my presentation is only to show the swf. As it stands, it
    displays a hand pointer, but a click generates a js error.
    Is there a way to disable the link from the swf without going
    back to the original developer?
    Thanks.
    Harvey

    Hi Harvey
    You said you omitted the JavaScript? Why? Was it causing
    issues? Or is it the fact the link points somewhere you really
    don't want it to?
    If so, I'm thinking you could amend the JavaScript
    to point it where you want.
    Just thinking out loud... Rick

  • Why don't links placed in swf files work in Dreamweaver?

    I created a swf file and embeded a link in in to go to another page in my site. The application program (Easy Web Animator) generates the swf file and an html file. When I open the generated html file, the link to another page works when I click on the button. But if I import this swf file in dreamweaver, the link does not work. The generated html file dosen't seem to have anything extra to make the link work, it seems it just dosent work when placed in Dreamweaver.
    Anyone with any suggestions, please
    Dexter.

    Hello, Nancy
    I feel so stupid. I uploaded both files to my server, and they are 
    both working now (on the server). I have been previewing the file in a 
    browser on my hard drive all the time, and the original worked, but 
    the file placed in Dreamweaver did not. But they both work when 
    uploaded to the server!
    I don't understand it, but maybe you can. I would love to know why I 
    wasted about 2 days just trying every different setting I can in the 
    swf file and in dreamweaver.
    Thanks for the help!!!!!!!
    Dexter

  • I need to create a button that links to another swf file...

    i'm creating my first website, and, for each menu item, i am
    creating a new flash document... is this the correct way to create
    a multi-page website?
    plus: how to create a button that links to a jpg, thanks!
    jane

    Creating separate swf's these days as far as I know is
    considered to be a better practice than using the "scenes" that are
    in Flash. The reason is you can load various sections of your
    entire Flash entity rather than the user downloading everything at
    once.
    But, it also depends on the complexity of where your menu
    items are leading. If they are simple enough, then there may be no
    need to create new documents.
    To create a button that links to a jpeg, try this.
    Whatever graphic you're using for the button, select it and
    hit F8 to convert it to a movie clip. Once it's in your library,
    click on your new movie clip on the stage and give it an instance
    name in the properties window.
    Click the first frame in your timeline (preferably on a layer
    named "actions") and put this example in for the actionscript:
    //buttonName is the instance name you gave it
    //.onPress tells Flash when buttonName is pressed then do
    what's
    //inside the brackets of the function
    buttonName.onPress = function (){
    //getURL is the Flash function that will load your
    picture.jpg
    //_blank is the target. e.g. _blank, _self etc.
    getURL("picture.jpg", "_blank");
    }

  • Linking .swf file to Dreamweaver

    Thank you soooooooo much it worked smoothly and the way I
    want .
    Cheers

    not sure of the total scope of what you are trying to do or
    have done so
    far...
    instead of linking to the .swf file, link to an html page
    with the .swf
    placed IN it.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Linking from SWF files to web pages

    Hi
    I'm using the latest Flash CS3.
    Basically, I want to link from the SWF file to a webpage.
    Here's what I've done so far.
    Created the FLA file, imported the quicktime movie into it
    etc etc.
    I've then added a behaviour by clicking on the inserted
    movie, then BEHAVIORS >WEB> GO TO WEB PAGE> and filled in
    all the relevant text for the link.
    Then I have saved the file. Then I have published then OK.
    I have embeded the SWF file in a web page, but when I click
    on the movie, it shows there's a link, but it won't link to the
    webpage.
    What am I doing wrong? I dont understand.
    Can't get my head around this!
    When I go to the FLA file, then publish preview > flash,
    and the movie appears on its own, the link works... but the SWF
    file doesn't.
    Basically what do I need to do to make it work.
    The coding I am using in my web-page is:
    <p align="center"><center>
    <object width="165" height="100">
    <param name="movie" value="
    http://homovision.media7london.com/wordpress/Newcontribute.swf"
    />
    <embed src="
    http://homovision.media7london.com/wordpress/Newcontribute.swf"
    width="165" height="100" />
    </object>
    </p></center>
    The movie plays, the "link hand" appears above it, but when
    it is clicked nothign happens.
    Any help would be greatly appreciated.
    Simon

    Did you inport to the stage and put a stop (action script) on
    the frame?

  • How to Hyperlink SWF File

    Sorry if this was already discussed, hyperlink swf hit nothing here and I don't know what else to search.
    I placed a client's .swf file in my web page and I am unable to hyper-link it back to her site.
    What am I missing?

    > I use Flash so I build my links within the SWF file.
    If you want to use Flash for navigation, consider this -
    1. Some people don't have Flash installed - what do they do?
    2. Search engines don't parse Flash links - your site will not be spidered
    most likely
    3. Screen assistive devices don't parse Flash links - what will those users
    do?
    4. Your authoring cannot maintain links within a Flash movie, so if you
    move or rename
    a linked file, your navigation will break - what will you do? You will have
    to remake those buttons.
    It's usually a very bad idea for these reasons - and for these reasons,
    Adobe has removed Flash buttons and Flash text from the next version of
    Dreamweaver.
    With regard to the 'over Flash' question, all Active content on a page will
    always rise to the top, so to speak, including Flash, certain form elements,
    Java applets, and Active X controls.
    This means that each of these will poke through layers. There is not a good
    cross-browser/platform reliable way to solve this issue, but if you can be
    confident in your visitors using IE 5+ or NN6+, then you can use the Flash
    wmode parameter (however, Safari does not support this properly!).
    PVII article:
    http://www.projectseven.com/support/answers.asp?id=127
    Murray

  • Need to connect different swf files into one site

    I need to make this site like presentation for my next exam. I found a good template for a slide show. The presentation will be structured like this: 
    MAIN PAGE with sidebar which links to:
    slide one with slideshow 1
    slide two with slideshow 2
    slide three with slideshow 3
    slide four with slideshow 4
    due to the nature of the code thou i cannot put the different slideshows into the same .swf file in different scenes (i copied and pasted them in each scene and modified the actionscript so they would refer to different pictures) because they will create conflict with each other. now they question is can i use the sidebar to link to different swf files but still make it look like it was just one big swf?
    thank you!

    Here is what you have to do
    Create a document named main.swf in that document put 4 buttons and instance (button1_btn, button2, button3_btn, button4_btn).
    Change the name to your slideshows to slide1.swf, slide2.swf, slide3.swf and slide4.swf.
    Now go to the actionScript panel of your main.swf and paste the following code:
    //load external content
    var loader = new Loader
    addChild(loader)
    loader.x=0;
    loader.y=0;
    button1_btn.addEventListener(MouseEvent.CLICK, function(){
             loader.load(new URLRequest("slide1.swf"));
    button2_btn.addEventListener(MouseEvent.CLICK, function(){
             loader.load(new URLRequest("slide2.swf"));
    button3_btn.addEventListener(MouseEvent.CLICK, function(){
             loader.load(new URLRequest("slide3.swf"));
    button4_btn.addEventListener(MouseEvent.CLICK, function(){
             loader.load(new URLRequest("slide4.swf"));
    any problems let me know!!!

  • Insert Photoshop Web Gallery swf file into Dreamweaver

    So i tried to take a shortcut, and created a flash photoshop
    web gallery and placed the "gallery.swf" file into my html file in
    Dreamweaver. However, it is showing a blank white screen (i'm
    guessing it can't find the images?) but when I view it on my hard
    drive, it is working fine, just not in dreamweaver or any browser,
    even after I upload to my server. Any help would be GREATLY
    appreciated!! I've also tried pasting the body html code from
    "index.htm" that photoshop creates, as well as move my image files
    to the root folder where the swf is, but that doesn't work either.
    I have my scripts in the same directory, and not in
    subfolders.

    Kizat727 posted in macromedia.dreamweaver:
    > and the link is
    >
    > www.micromediapubs2.com/dyers/portfolio.html
    That page is very different from the code you posted and I
    know nothing
    about Geoff Stearns' FlashObject code.
    For the above link, I see nothing in the source code that
    attempts to
    load a .swf file. However, it is linking to
    AC_RunActiveCon.js file in
    the wrong place:
    GET /dyers/assets/flash/pages/AC_RunActiveContent.js HTTP/1.1
    Referer:
    http://www.micromediapubs2.com/dyers/portfolio.html
    HTTP/1.x 404 Not Found
    The file is actually here:
    /dyers/Scripts/AC_RunActiveContent.js
    So if you actually do have a page in the dyers/ folder that
    links to a
    .swf file, just make sure the link to the .js file is
    correct.
    Most likely, change this:
    <script src="assets/flash/pages/AC_RunActiveContent.js"
    type="text/javascript"></script>
    to this:
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    Mark A. Boyd
    Keep-On-Learnin' :)

  • SWF File not working after upload to server, but works on local system

    HELP PLEASE.....I have created a Fla and exported a swf file
    from Flash 8 and Export (Flash 6). I can preview the page in
    Dreamweaver just fine, but when i upload it and the html file, it
    isn't showing up. It leaves a blank spot on the page. It is just a
    simple banner with graphic clips and motion tween text, with image
    bgd. All images are jpg.
    I have tried:
    1. Using a full link to the swf file.
    2. Removed drop-shodows in swf file
    3. convert to Flash mx 2004 file
    4. Exported to higher Flash version to see if the flash
    player was an issue.
    5. Exported with no dashes in name
    6. Added Scr file into Dreamweaver
    7. Made a new test file to see if it was something in the
    current html doc, same result.
    8. Tried viewing on a pc, same result. Created on mac.
    Here is the test page if anyone wants to take a look.
    THANKS FOR ANY ADVISE.
    Test
    Page Link

    The link you provided is to the SWF file, not to an HTML
    file, so no one can test your HTML file.
    Have you checked the code for the embedding of the SWF file
    in your HTML file? I don't use Dreamweaver much, but I do know that
    if you start assembling a Dreamweaver file without first saving the
    HTML, embedded graphics and other items are inserted as direct
    links to the files on your computer, rather than as relative paths.
    There is one other possible issue: I note that your swf is
    called CWABanner.swf. Depending on your FTP settings, it is
    possible that your server is forcing all file names to lower case
    (a common practice). Which means the file on your server will be
    cwabanner.swf. Again, depending on how the web server is set up, if
    it is case sensitive, it will treat CWABanner and cwabanner as
    separate files. So if the HTML calls CWABanner.swf, but the FTP
    upload has forced a rename to lower case to cwabanner.swf, the HTML
    file will not find it. Check this out, or to be absolutely certain,
    rename everything to lower case: the file name itself and the
    reference in the HTML file.

  • URL Link to Specific SWF Slide

    Is it possible once a Captivate 2 project has been exported
    to HTML/SWF to have a URL link open the SWF file to a specific
    slide number? For example if a Captivate 2 project is 20 slides
    long, the user could click a link that would open the swf file to a
    specific slide in the middle, say slide 10. Or can the html coding
    that opens the Captivate 2 exported SWF file be set to open the
    file to a specific slide? I am trying to avoid breaking up a multi
    scene file just so users can access one or two slides and not have
    to navigate through an entire file.
    Thanks.
    Bennor3814

    It's pretty simple to do with JavaScript actually and Philip Hutchison just released the latest version of his "Captivate Controller" a couple of days ago.
    This allows you to control Captivate 2,3 & 4 movies from JavaScript commands in a simple and non-technical way.
    You can read more about it and download it here: http://pipwerks.com/journal/2009/06/07/introducing-the-captivatecontroller/
    /Michael
    Click here to visit the www.captivate4.com blog

Maybe you are looking for