Flash Navigation & Links Source File Issue

Hello Everyone,
I am using a flash template for my site's navigation. I have edited it myself. With it, a URLS.txt file must be used to provide the links for the flash buttons. I have edited this file, and placed it all on my site.
The problem? The links are recognized in IE6.0 and Firefox on a computer running Vista. As well, my computer (an Apple MacBook with Leopard) allows the links to click through with Firefox. HOWEVER, when I try to navigate with my Safari 3.0 I get a pop up programmed in to the flash file that no URL was specified.
How the heck can this work on some browsers and not others? I obviously set it up correctly... but something is off.
Anyway, please see for yourself;
http://www.caseit.net   
Thank you in advance!

My mistake Rob! I just checked, and I do have Safari 4.0.2 on a Mac. For me, when I click on the first navigation link "About CaseIT" I get a nasty javascript popup explaining that I didn't provide a link.
I wonder why *my* Safari doesn't allow it to work, but yours does... as well as other browsers sometimes do. (My coworker can't get the links to work on IE6.0 at her work computer)    but it works on MY IE6.0 on my desktop. Strange.

Similar Messages

  • When i download any file it start in a second but when i pause the downloading file & after some time when i open it amessage flash 'download error' source file could not be read please try again later or contact the server administrator.

    when i download any file it works frequently and downloading start in a second but when i pause the downloading file & after some time when i open it,The downloading not start proper and after some time a message flash 'download error' source file could not be read please try again later or contact the server administrator.

    I downloaded the Microsoft Autoruns package and ran it.  There are no programs in the LSA Providers tab, and Apple's Bonjour is the only program in the Winsock Providers tab.  I also did the "netsh winsock reset" and rebooted.  It didn't fix the problem.  Any more ideas?

  • FLEX debugger not hitting breakpoints, because Flash sometimes embeds source file paths with wrong letter case?

    I was trying to figure out why breakpoints were working fine for source files in some locations but not others.  FlashDevelop's debugger (which I believe is actually the FLEXSDK debugger) was successfully connecting, tracing output, and hitting breakpoints in SOME files, but not others.
    I downloaded SWFInvestigator from Adobe Labs and checked the embedded debug paths for various source files to see what was going on.
    I discovered that files in which no breakpoints could be hit had their paths embedded in all lowercase (e.g. "c:\users\username\desktop\source\myproject" instead of "C:\Users\username\Desktop\source\MyProject").
    So I have two questions:
    First, is this a Flex debugger issue, or a FlashDevelop plugin issue? Letter case shouldn't matter or interfere with matching file paths in Windows.
    Second, what could possibly influence the letter case of embedded paths in a SWF output by Flash Professional (CS6), such that they are sometimes all lowercase and other times maintain the same case from the file system?  And why would that affect a debuggers ability to hit breakpoints in Windows 7?  I am compiling in multiple ways. Sometimes clicking Publish within Flash. Sometimes the file being published is not even open in Flash, and my JSFL script file is passed to Flash.exe containing embedded file paths to open the document. Usually, everything seems to work fine, no matter where I publish from, regardless of whether the FLA file is open or not. I'm honestly starting to believe that it depends on how the FLA was last opened in Flash Professional, as though it saves some sort of last access path internally and uses that to embed debug information.

    I don't think it's the source path in my case, because it's simply the dot ".", although I did check that because it would most likely influence the embedded paths.
    In the library path, I use relative paths exclusively, since all my individual project folders exist in the same "source" folder.
    Here's how I arrived at the conclusion that something more complex or "stateful" must be occuring:
    I publish my files with a one-click application, which does the following
    updates version timestamps (static constants) in specific files via regex match
    fills in a JSFL template with the FLA filename and writes the JSFL file to disk, then passes the JSFL file path to flash.exe for publication
    the JSFL then runs a command, which signals the main application via cross-process communication that the script has finished publishing
    That all makes it easy for me to update and publish multiple projects and deploy them, with a single click.  Here is the JSFL template I created, which has been drastically simplified since the days where it used to search to see if the file was open in Flash, select the document, and call publish.  Now it just uses the publishDocument method to silently publish files without opening them.
    var filepath = "FLAFILEPATH"; //template parameter: the URI (beginning with "file:///") of the FLA file to publish
    fl.publishDocument( filepath, "PUBLISHPROFILENAME" );
    FLfile.runCommandLine("COMPLETECOMMAND");
    The C# app replaces the strings in all caps with the actual values.  The COMPLETECOMMAND is actually populated with the application's own executable path, along with a "complete" switch, which lauches a 2nd instance, which handles the complete switch by broadcasting a signal over an interprocess channel and then terminates.  The main instance captures the signal, triggers a wait handle, and continues with publishing the next file.  Here is the core code for it:
    private string fillTemplate( string fla_directory, string fla_filename, string publish_profile_name )
        string fileuri = "file:///" + Path.Combine( fla_directory, fla_filename ).Replace( '\\','/' );
        return EmbeddedResources.OpenAndPublish //JSFL template file embedded as string resource
            .Replace( "FLAFILEPATH", HttpUtility.JavaScriptStringEncode( fileuri ) )
            .Replace("COMPLETECOMMAND", HttpUtility.JavaScriptStringEncode( "\"" + Application.ExecutablePath + "\"" + " -publishcomplete" )) //call self with -publishcomplete switch to signal main instance's publishCompleteSignal
            .Replace("PUBLISHPROFILENAME", HttpUtility.JavaScriptStringEncode( publish_profile_name ) );
    private static readonly string FLASH_PATH = @"C:\Program Files (x86)\Adobe\Adobe Flash CS6\Flash.exe";
    public void publish( string fla_directory, string fla_filename, string publish_profile_name )
        Program.publishCompleteSignal.Reset();
        string template = fillTemplate( fla_directory, fla_filename, publish_profile_name );
        string curdir = Environment.CurrentDirectory;
        string tempJSFLfilepath = Path.Combine( curdir, "temp_script.jsfl" );
        File.WriteAllText( tempJSFLfilepath, template );
        Process p = Process.Start( FLASH_PATH, tempJSFLfilepath );
        Program.publishCompleteSignal.WaitOne( 30000 ); //timeout after 30 seconds
    Here's where it gets interesting.  The FLAFILEPATH has ALWAYS been passed in as all lower case, yet this publication method has worked 99% of the time for hundreds of publish operations every day.  This applies to both the publication of the first SWC, which is referenced by the second published SWF (both were being published with lowercase paths), yet the paths for the main SWF were remaining in lowercase, while those in the referenced SWC were maintaining the correct case from the file system.
    So there may be any number of things going on here.  SWCs may be published differently than SWFs, such that SWCs always have the correct letter case for debug source files, regardless of how the source FLA project was opened.  Ensuring the path passed to publishDocument uses the right case definitely fixes the problem, but it doesn't explain why it usually worked, despite having always been passing a lowercase string.  The only variable I can think of in all of this is Windows itself or Flash, such as whether the document was open in Flash at the time the silent JSLF publishDocument command ran, and how that FLA was last opened (via shortcut, via "recent documents" in Flash, via recent documents in Windows.  It has to be something, even if it's something as obscure as how the folder path was last accessed in windows, although I strongly suspect it's just how (in terms of path case) the FLA was last opened in Flash.
    In any case, I'm happy that passing the right case to JSLF's publishDocument command fixes the problem, so I'm not going to spend any more time trying to figure out how opening the FLA in various ways could affect the embedded debug paths.  The only thing that should be done is to address how paths with the wrong case are handled when they do get embedded that way for whatever reason.  Perhaps the flex debugger should be updated to use case-insensitive matches in case-insensitive file systems, unless, perhaps, this is a FlashDevelop debugger issue after all.

  • Flash navigation and html files

    I have a Flash navigation banner. The navigation banner
    contains seven buttons. Each button when clicked goes to different
    frames in the Flash movie. So, the first interaction is to make the
    movie to go to a particular frame, which I was able to do easily.
    On those frames, I also would like to load or link to HTML page.
    Like frame 10 will be page1.htm, frame 18 will be page2.htm so on
    and so forth. How do I link .htm files and the single navigation
    bar where each button would go to a specific frame and play the
    frame? I don’t want to use frames in my html docs. Is there
    any other solution? Please help!!
    Thank you in advance.
    FA

    Thank you for reply. I appreciate it. So, if I understand
    correctly:
    I would embed the navbar.swf in all my html files. Then Each
    button would go to each html pages (Like page1.htm page2.htm
    etc...) Then I use your code in my html file right? Like each html
    file will have the following code:
    <param name="movie" value="nav.swf?frame=page2">
    Is that how it works. Sorry for not being able to your
    answer.
    Thank you very much again

  • InDesign CS6 Linked Word file issue

    Hi, I have a number of 100+ page InDesign files which have a large (linked) Word file that threads though multiple text boxes throughout all of the document pages.
    The files need to be shared amongst multiple computers within our studio. This setup was used with InDesign CS5.5 last year and worked fine, it was still working fine with CS5.5 this year but we needed to upgrade to CS6.
    We have the trial version of CS6 installed throughout the studio now however we have been having big problems just opening the InDesign files up in CS6. They predominantly seemed to only open up 95% of the way and then hang (spinning wheel) and when (on occasion) we did get 1 open, it was clearly struggling and normally crashed. Can't get most open at all any more.
    I have tried opening files on different computers (Mac & PC), tried changing format of linked Word file, the only thing that seemed to ever work was breaking the link to the Word file
    (from within CS6) and then saving without Word file linked. This is not ideal for our workflow but even if we wanted to do this to all files, I am unable to even get in to some of them to unlink them now (as they are now all saved as CS6 files which won't open). Moving Word doc from location (so that InDesign can't pick it up) also doesn't work.
    I have tried deleting InDesign preferences & all recovery files several times, still no joy. It may be related to being on the trial version (seeing as 5.5 still seems fine) but I am hesitant to upgrade everything if it is not going to work. Does anyone have any ideas??

    Thanks Peter (and Bob), thought last solution was going to be a winner but still hangs at same point (on several files) unfortunately.
    Strangely, an older version of one of the files (a CS6 one that is linked to the same Word file) just opened, which suggests to me that the issue may not actually be wholly to do with it linking to the Word file.
    We just setup a brand new PC with just CS6 trial & Office on it, copied InDesign files to desktop, turned off the auto link boxes in preferences and still no luck. Getting close to giving up stage I think, just can't figure out the cause.

  • Attach (link) source file to PDF

    Is there any way to attach (link) the source file (MS word or publisher) to a PDF file using Acrobat Pro Extend 9?

    Yes. Open the attachments panel and add it.

  • Steps to ensure all Adobe Copyright requirements are met with Flash Builder generated source files?

    I'm currently doing copyright scanning on our product to look for open source copyright banners, and to make sure we are correctly following all copyright requirements for our licensed software.
    That said, our entire team uses licensed Flash Builder 4.7's to build our client in Flex.   Several of the source files generated by the Flash Builder (especially skins) have Adobe Copyright banners on them.
    <!--
    ADOBE SYSTEMS INCORPORATED
    Copyright 2008 Adobe Systems Incorporated
    All Rights Reserved.
    NOTICE: Adobe permits you to use, modify, and distribute this file
    in accordance with the terms of the license agreement accompanying it.
    -->
    I can't find any assistance or online help that outlines how I fulfill the "accompanying" portion of that clause.  Is there something I can add to our arbitration file or documentation to satisfy that?
    Thanks,
    Joe Firebaugh

    Read your posting too fast, sorry.
    On the Mac, select a text file (.TXT file) in the Finder. Choose File > Get Info. In the Open With section, select the editor you want to use for TEXT files. Click Change All.
    Sometimes, you have to do this with more than one TXT file, but it should work.

  • Dynamic Link / Illustrator files issue

    Hi all, I removed AICC from my system, keeping the 2014 version, and all of a sudden AE can't recognise .ai files to edit dynamically. I guess it's a result of the above, but why, and how do I assiciate files to CC2014 application on my windows system? 

    This stuff uses your system's default file associations.
    Working with your Operating System’s Tools | Mylenium's Error Code Database
    Mylenium

  • Iphoto Library re-linking source files.

    I downloaded some photos from a friend, and imported them directly into iphoto.
    iphoto Library created a new temporary folder for each photo. I created a new roll in iphoto Library, and put each photo from that event into one Roll.
    Now the photo thumbnails are appearing in iphoto, but when I click to expand a photo,it comes up as an exclamation point and missing photo.
    How do I re-link the photo from the new roll in iphoto Library?

    Your post is confusing
    You posted in the iPhoto '09 forum and discuss rolls which have not existed since iPhoto 6 and earlier - what version do you have?
    iphoto Library created a new temporary folder for each photo
    What do you mean by this? folders in iPhoto can only be created by users and they do not hold photos, they hold albums and/or other folders. Please explain what you are talking about.
    I created a new roll in iphoto Library, and put each photo from that event into one Roll.
    Again please explain. There is no version of iPhoto that has both rolls and events. And are you moving photos using only iPhoto (or are you using the finder to move things around inside the iPhoto library -- this is a big no no for all versions of iPhoto)
    Now the photo thumbnails are appearing in iphoto, but when I click to expand a photo,it comes up as an exclamation point and missing photo.
    This can be caused by user activity within the iPhoto library - see my question above.
    How do I re-link the photo from the new roll in iphoto Library?
    This depends on the details of your answers - and it may not be possible
    LN

  • Missing images in RH8 with linked Word files

    RH8 HTML and MS Word 2007
    The images from linked Word documents are not showing up in my RH8 project.
    Here's how the project is set up:
    The RH project is in its standard location: C drive, in a subfolder underneath My RoboHelp Projects.
    All content is included through the Link > Word Document option in RH.
    MS Word source files are in a network location (because several other writers are maintaining the source content). There are about 20 MS Word source files.
    I have an "Images" folder set up on the network at the same level as the source files, and we link the graphics into the MS Word files from there.
    Through my forum research, I have found several suggestions that have have made RH recognize the images in my linked files (previously, we were simply inserting the images into the Word source files, so in RH, the image was ignored and there was simply a blank line with no graphic indicator at all). So I am now selecting Insert > Picture > Link to File as the method for building images into the MS Word source file. I have also found the suggestion to ensure that the images are retained in the document, by selecting Office Button > Prepare > Edit Links to Files, and then checking the option for "Save picture in document" for each of the linked pictures.
    When I follow those methods, I now see a red-bordered box where the images should be, and the image file name is displayed in the box. However, I get an error message that says the image files used in each of the project htm files are "outside of the current project and will not be shown in Project Manager."
    I cannot figure out where to place the images so that RH's Project Manager recognizes them as part of the project. RH does not automatically create an Images folder within Project Manager. I've tried creating one myself and placing images there (and then even linking my source files to the images within the project folder). But still no dice.
    I have tried a volume of troubleshooting options--placing the linked source files and graphics within the project folder, leaving the source files on the network and placing copies in the project subfolders that RH creates after I link the source files into the project, etc etc etc. I've looked for a setting in RH that allows me to set a default location for images (never found one).
    Ergo, lots of troubleshooting, and still only half a solution here.
    I'd greatly appreciate it if anyone can shed some light. I am doing my best to avoid importing the graphics directly through RH because I want the online help to pick up the exact structure & content of the source files. This obviously negates the option for importing the Word content vs linking it in. In older versions of RH, I was at least accustomed to RH importing generically named images into the project regardless of whether they were copied directly into the Word file, but I see that this is not even an option when linking the source files into the project.
    Thanks in advance for any help you can provide.
    Best regards,
    Athena

    Hi Peter,
    Thank you for the recommendations. I want to be sure I’m understanding “embedded” the correct way. Do you mean to insert the images directly into the file—i.e., selecting the MS Word option Insert Picture > Insert? Or do you mean to insert them by selecting Insert Picture > Link to File?
    Also, could you let me know where in Windows Explorer I should attempt to trace the images? The image source files are stored with the content source files on my company network, in a separate sub-directory for Images (I have tested the build with all the files on my local drive as well). When I link the Word source files into RH and generate the topics, RH does not bring any images into the project folder within the My RoboHelp Projects directory on my local drive.
    I have searched through all the project files/directories that RH creates (top-level project folder, as well as subfolders it creates for each Word linked file), and there are no image files (except for one that I placed in my RH master page). I have attached a screenshot of the project folder (MainProjectFolder.png) and one of the linked file sub-folders (LogBookProjectFolder.png).
    The problem seems to be that RH is not recognizing an image as an image. RH knows there are supposed to be images in the htm topics because it does have the red box “placeholder” where the images should be, and the image names are displayed in the red boxes (see attached RH_Project.png screenshot). I have gone into the properties for an image and used the Image Name field to manually map to the directory that contains the source image. When I do that, the image then appears in the top-level project folder with the gold & green RH image icon, and it does then appear in the topic. But at that point, if I update the linked Word file, I lose the image again. I have set the topics with images to where they retain the RH image modifications I’ve done, but then the topic shows as broken in my TOC when I update the linked Word file, and those topics do not appear in the build at all when I generate the WebHelp.
    Since RH also does not automatically create any kind of Images folder in the project during the process of linking and generating the source files, I have tried copy/pasting the source images into the top-level RH project folder prior to even linking/generating htm topics from the Word source files. But when I go to a topic and view the properties associated with the image placeholder, RH still does not display any of the image files I pasted into the project folder.
    I am happy to provide my source file so that you can investigate this further. Please let me know if you need the file with the images inserted directly or if you need it with them linked in (in which case, I’ll send the image files too).
    Thanks,
    Athena

  • How do I link external files (.pdf's) in the flash content please?  I'm creating a CD interface

    Hello
    I'm new to Adobe CS software and would like some advice please.
    My company uses a CD with a flash interface that opens via an .exe or .app file.  The original designer is on maternity leave at the moment but we need some content updates before she gets back and I’m deciding whether to redo the CD myself or to source a new designer.
    So far I've been able to replicate most of the CD in Catalyst using the trial version but there is one thing stopping me from buying the software.  I can't find a way to link external files (specifically pdf's) via the flash content.  The CD is for instruction manuals so once the interface has been navigated the user needs to click on a button to open the desired pdf manual.
    Is this possible in Catalyst or am I looking at the wrong software?
    I can't write code and my experience is limited so I would appreciate help from someone who knows what they're talking about please and any software recommendation would also be great
    If I need to outsource please tell me but bear in mind that I have been able to do all the design work and it's just linking the pdf's that I'm struggling with
    Thanks in advance and for any help

    Hi Bear,
    Thanks for your quick answer.
    Flash Catalyst currently prefixes all links with "http://", so you would need to save your FXP in Catalyst, open the FXP in builder, and remove the "http" so that you're just loading the local pdfs.
    I tried your suggestion but couldn't get it working so I'm probably doing something wrong since I'm not very familiar with Flash Builder.
    I created the button > on click > go to url interaction in Catalyst and saved the project (tried it using a PDF saved on our server and also my PC).
    I imported the FXP and opened to "project name / src / (default package) / main.mxml / button name"
    After deleting "http" I selected "export release build" and opened the new SWF and also tried the HTML; the new button just opened to my homepage instead of the PDF
    I also tried deleting "http:" and "http://" which deactivated the button completely (I expect some coders will laugh at that but I am a noob )
    Unfortunately linking to online files isn't an option for me so do you see what I'm doing wrong please?
    Thanks for your help

  • Using sharepoint designer 2013 - connected to sharepoint online - but getting " data source file cannot be saved" after making a new linked datasource

    using sharepoint designer 2013 - connected to sharepoint online - but getting " data source file cannot be saved" after making a new linked datasource

    Hi,
    Based on your description, I have done a test and I can’t reproduce your issue.
    I have used SharePoint Designer 2013 to open a SharePoint Online site and there are no issues.
    I’d like to clarify whether you encounter any issues when accessing SharePoint Online sites. If there are no issues during the accessing procedure, SharePoint Online service should be working fine at your side. The issue may be caused by specific SharePoint
    Designer client or network. I suggest you refer to the following steps to troubleshoot the issue.
    1. Use SharePoint Designer to open another site and check whether it is successful.
    2. When you are prompted to enter Office 365 account and password, try other users’ accounts and select the remembering the credential.
    3. Perform the connection procedure under another environment and verify whether the issue is resolved.
    If the issue persists, can you provide related screenshots for further troubleshooting?
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • PDF Portfolios Source File links

    Is there a way to allow editing in the source files original location & have the portfolio stay linked & update from this, rather than portfolio automatically copying the source file to a temporary location?

    No, and I doubt there ever will be. A PDF Portfolio is just a set of attachments, so think of it like a ZIP file - the documents you add to it become embedded copies rather than links, and to include information in the Portfolio about where the original files came from would be a huge privacy issue. Would you want a customer finding out their quotation came from a folder called "quotes/annoying clients/2012" ??

  • Facing issue in PDF print on using Guided Navigation Link on dashboard

    Hi,
    I am facing one issue on using Guided Navigation Link on dashboard.
    I have created one Guided Nav. Link on dashboard and renamed it as "RAW DATA".
    It was working fine.It is coming as RAW DATA link and when I am clicking on the link it is drilling down.
    Till now it is working fine and good.
    But in Printer friendly option of dashboard when I am selecting PDF option( To save it as PDF) it was showing text "Guided Nav Link 1" instead of "RAW DATA" in the downloaded pdf.
    Please give me some solution.
    Thanks in Advance
    Santanu Manna

    Try this:
    1) Drag Guid. Nav. Link to dashboard in a new section.
    2) Click on properties of the Guid. Nav. Link object.
    3) For the source request, click on browse and navigate to the report.
    4) In the Link Properties, check the "Use Dashboard Oject name as link object" checkbox and click "OK."
    5) Click on the Rename button of the Guid. Nav. Link object.
    6) Type in the name you wish to appear in the link and click "OK."
    When you click on Print>PDF, the name of the link will appear in the pdf instead of "Guid. Nav Link 1."

  • Mxmlc / compc: automatically link in all source files?

    In the standard configuration, compc and mxmlc only link in classes actually used by your project. We're using code generation to get ActionScript classes from our Java classes for AMF serialization. We deal with most of these generically, so we don't automatically reference all the generated classes. Consequently, some of these are compiled out of the final .swf, causing hard-to-track-down serialization issues. Is there a simple way to tell mxmlc / compc to include *all* classes defined in a certain path? I tried to use include-sources, but when I just add all the source files to include-sources (I'm using mxmlc / compc through ant with a fileset for this purpose, for what it's worth, but the problem is not ant-specific), I get weird errors about circular inheritance. Any other strategies for achieving this?

    Hi,
    One way you might ba able to acomplish this is when you are auto-generating your actionscript classes from Java, create a classes.as file.
    package
    internal class LinkClasses
        import mx.package.LinkClass;
    Include this class in the compc include class.
    This should alow the linker to pick up all classes very neatly.
    Mike

Maybe you are looking for