There is something really wrong with the linked files

I have two days to try to solve this problem, but I can't. The demo movie has 6 related images, 1 flash not bound and 1 bound blink. If I plublish it with Director 10.1.1 everything is ok. But when I publish this in director 11, do not show the linked files. If I play the movie in the folder dswmedia, works fine, but when I try on a browser, do not work. Can someone tell me what is the problem?

sayeg

OK, this is what I found. When I publish it to the web in director 11 and linked files in the files tab, most to check "copy linked and dependent files' and Director 11 creates a dswMedia folder, where to put a copy of the linked files, and that is the path to these files.
Is not the same with Director 10, at least not for me.
sayeg

Tags: Director

Similar Questions

  • I move my file and now my slide show does not work? I think that something is wrong with the links here:

    < title > A sample HTML5 < /title > two-column layout

    < name meta = "description" content = "don't forget to add a 1-2 sentences describing here." >

    < name meta = "keywords" content = "don't forget to add 20 to 30 keywords important here." >

    < name meta = "viewport" content = "initial scale = 1.0, width = device-width" / > "

    < link href = "css/reset.css" rel = "stylesheet" type = "text/css" > "

    < link href = "css/style.css" rel = "stylesheet" type = "text/css" > "

    < link href = "css/slicknav.css" rel = "stylesheet" type = "text/css" / > "

    < link rel = "stylesheet" href = "css/nivo - slider.css" type = "text/css" / >

    "< link rel ="stylesheet"href="themes/default/default.css "type =" text/css"/ >

    < style type = "text/css" >

    {#apDiv1}

    position: absolute;

    left: 18px;

    top: 504px;

    Width: 909px;

    height: 96px;

    z-index: 1;

    background-color: #FFCC33;

    }

    < / style >

    " < script src =" http://cdnjs.cloudflare.com/AJAX/libs/Modernizr/2.6.2/Modernizr.min.js "> < / script > .

    " < script src =" http://AJAX.googleapis.com/AJAX/libs/jQuery/1/jQuery.min.js "> < / script > .

    "< script src="js/jquery.slicknav.min.js "> < / script >

    "< script src="js/jquery.nivo.slider.pack.js "type =" text/javascript"> < / script >

    < script type = "text/javascript" >

    {$(window) .load (function ()}

    $('#slider').nivoSlider ({}

    effect: 'fade ',.

    manualAdvance: true

    });

    });

    < /script >

    You have correctly identified the problem. To resolve this problem, you must set the links according to the new location of the files compared to the moved document.

  • Why people have suddenly begun to report their entire question in the place that is intended for a brief description of the problem.  Is there something inherently wrong with the new format of format?

    ... Only to repeat it once again here.

    Why people have suddenly begun to report their entire question in the place that is intended for a brief description of the problem.  Is there something inherently wrong with the new format of format?

    Ahhh, now I see.

    The man, who is just really, really bad design forum.

    I know that it will hurt, Adobe, but you will be away to Jive at a given time.  You're going to have to, as Jive moves further and further away from the ease of use.  So... Dick.22 now, or le.45 later.

  • After editing an image in windows Photo Gallery can't save the picture. I get a message that tells me that something is wrong with the application. How to fix this problem?

    After editing an image in windows Photo Gallery can't save the picture. I get a message that tells me that something is wrong with the application. How to fix this problem?

    Hello

    I suggest you to refer to this link and check if it helps:

    http://Windows.Microsoft.com/en-us/Windows-Vista/Windows-Photo-Gallery-frequently-asked-questions

    It will be useful.

  • My laptop starts to turn on at startup repair and it says tht something's wrong with the C:\ drive

    I have a Sony Vaio laptop and before it worked fine, but then all of a sudden all the applications I turn kept which crashing then crashed the computer laptop everything I restart the laptop everytime that happens and now it only when I turn it on do Startup Repair open saying tht there is a mistake with the C:\ drive and I need to contact the administrator then turns off, and the same thing is repeated when I turn it on reapair start again. If someone could help me please I would be very grateful, thank you for your time

    First test the hard disk for physical errors. Test the hard drive with a diagnostic utility downloaded from site of the disc mftr. or use SeaTools for BACK of Seagate. You create a bootable CD with the files you download. You will need a third party burning software to do as the free ImgBurn, Nero or Roxio. Burn as an image, not in the form of data.

    http://www.ImgBurn.com

    http://www.Seagate.com/www/en-us/support/downloads/SeaTools/seatooldreg
    http://Seagate.custkb.com/Seagate/CRM/selfservice/search.jsp?docid=201271 (how-to)

    Boot with the CD that you have done and do a full test of the reader. The physical tests fail, replace it. MS - MVP - Elephant Boy computers - don't panic!

  • Element "FileChooser" something is wrong with the path of input stream cannot be null

    Hello
    IM test 'FileChooser' element for the moment.
    That's what I got:
                    FileChooser fileChooser = new FileChooser();
                    FileChooser.ExtensionFilter extFilter = new FileChooser.ExtensionFilter("PNG files (*.png)", "*.png");
                    fileChooser.getExtensionFilters().add(extFilter);
    
                    file = fileChooser.showOpenDialog(null);
    
                    iv.setImage(new javafx.scene.image.Image(getClass().getResourceAsStream(file.getPath())));
    How to get:
    java.lang.NullPointerException: Input stream must not be null
    file.getAbsolutPath () does not work either, I thought that was the reason.
    what I'm doing wrong here?
    p.png = picture in the filechooser package.
     
    iv.setImage(new javafx.scene.image.Image(getClass().getResourceAsStream(p.png)));
    works very well.
    Thanks for the help.
    IM using windows.

    The file picker chooses a file anywhere on the file system operating system.
    Class resources are usually not files for JavaFX applications as javafx applications are usually packaged as jars.

    When you use getClass () .getResourceAsStream (someLocation), you specify to use the protocol used by the class loader of the class, who, in a jar, packed JavaFX application will be a protocol of pot, but you do not provide a location Protocol valid at your call jar, so that the system can not find the resource you ask to find. You cannot use an element "FileChooser" choose files in a jar.

    Instead, you must use something like the following using the Protocol file to access the file selected in the OS file system by the file picker:

    iv.setImage(new javafx.scene.image.Image(file.toURI().toURL().toExternalForm()));
    

    Here is an example png image viewer application where you can see it in action: https://gist.github.com/jewelsea/5165446

  • Something very wrong with the support of ACR 2015.6/6.6

    So I installed the last LR update yesterday. Don't think much on this subject that I have never had any real problems with the Adobe software.

    Tonight, I was going back on some old footage, from 2014, taken with my Fuji X - E2 I had converted to DNG in the native of Fuji, RAF RAW files using either the LR built in DNG converter or the stand alone DNG Converter.

    All the images in many cases dated back as unreadable. So I opened LR 5.7.1 and all these images are very good.

    Then I opened bridge CC and get the same result. Damaged or illegible images. Does not open in PS > ACR or ACR directly from bridge. Is even not displayed the image in Bridge

    I've since restored LR to 2015.5.1 and everything is back to normal for LR.

    But I'm stuck now without PS or bridge because I can't find a place to download the installer of origin without the most recent update. I'll post this in the forum of Photoshop.

    This issue should be fixed in Lightroom to today 2015.6.1 update: http://blogs.adobe.com/lightroomjournal/2016/07/lightroom-cc-2015-6-1-now-available.html

  • There is something seriously wrong with my computer...

    Windows Update has been asking me to do same update 2 for maybe a month now, I thought that maybe it's the updates themselves who are glitched or something and I hid their.

    but now AMD Radeon settings starting to tell me to redo the same update. The current version is 15.30 etc. to 16,15 etc. When I do the update, everything is successful and he tells me to restart, after I do it, it tells me that my version is 15.30 again and that I must update at 16:15

    It's as if my computer don't forget all what it opens each time, but then again, my office has not lost everything that I have been putting on it.

    I remember at school, computer being programmed to not save anything, but only to not configure my PC to do that there is no way I could have done it accidentally either, it's a hardware problem?

    How can I fix it? Help, please!

    same problem with AMD

    I already send a feedback to AMD

    because they are the one who demand

    Quote ".

    you install the same driver for card video twice already

    and now I have a notification which ask me to do it again

    Difficulty your #@! "#@ before you release it to the public your c.r.a.p".

    end of quote

    .

    ignore the update notification video card

    Since I know I have the latest version of the driver... !!

    .

    on the windows update

    I usually clear that Windows update history

    How to clear Windows Update history

    because often windows 7 can't think straight

  • For the last 2 days I have been unable to play UNO. I wonder if something is wrong with the game. Maybe you're the right person to ask; If you would point me in the right direction, I would appreciate it. It is on the site of MSN games, however.

    Gambling problems:
    UNO on the MSN web site has been unavailable for me for the past 2 days. I can't find any information on this subject anywhere.
    Could you please let me know so that I will understand if the problem is with repairs or something with my computer.
    Thank you
    D.Potts

    D.Potts,
    Since this is an MSN online game you should start by checking with their support.  Since it's an online game, you can reset your browser and see if that helps.  If you have Internet Explorer 8 and here are instructions to reset it.

    Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Connection to the local network works do not, something seems wrong with the network adapter.

    Hi guys,.

    This week, my HP Pavilion dv 9700 had problems connecting to my LAN. (Windows Vista OS)

    By trial and error, as suggested by my network support, I thought that the problem was the laptop and not on the network.

    After that, I managed to make it work by jumping through hoops like the rotation of the network adapter, reboot the laptop and then restart the map. After three days, that is no longer working and I have the feeling that the network card is simply liked work. (Network appears as Local and unidentified and still keep identification)

    The wireless card does not work, I am posting this from my university network. So I guess that the wireless and ethernet card are separate pieces of equipment?

    These cards can be repaired or replaced?

    I would be happy with all the guidance as a student, I have a little to my internet for everything.

    Yes, absolutely.

    Do a search for USB RJ-45 network adapter. You can get those up to 100 MB connection speeds or 1 GB ot.

    Paul

  • Something is wrong with the internal clock on my Extensa 5620. The date jumps 3-4 years on re-

    -start the computer every morning.  It lets you be if I don't use it for 2 to 3 days, it now seems to be every day.  How can I fix it?  Vista is the program.  Thanks for any help or solution.

    Can of course. You will probably need a CR2032 and can take a place in most Wal-Mart stores. The difficulty, happened to her, which will require the removal of the keyboard and a few other screws.

  • Little help with the EXR files if you could.

    Asked a simple Hue/Saturation effect an EXR file sequence in AFX CS5. The controls seem unpredictable. Brightness adjustment seems the effect of Saturation. Thank you

    And that is exactly? Sorry, it's far too vague. Provide a framework for inspection sequence or screenshots. In any case, I get this magic tingle in my left toe, who told me that files were rendered with incorrect parameters in your 3D, so exposure program and internal value chains are far away, resulting in the apparently faulty behavior. Either they are hopelessly over-exposed (all values greater than 1) or your lines are so small (shortly above zero, but never reached space of 0.5 to float maybe) that even small adjustments whack out them. There's certainly nothing wrong with the effect...

    Mylenium

  • I have a question about the time machine. I recently updated my Quicken 2015 and there was something wrong with the update. Can I go back in just the Quicken file and restore it until I downloaded the update do I have to restore the entire

    I have a question about the time machine. I recently updated my Quicken 2015 and there was something wrong with the update. Can I come back in all the Quicken file and restore from time Machine before I downloaded the update to do, I need to restore the entire computer?

    Yes, you can just restore this file or application. Use Time Machine to back up or restore your Mac - Apple Support

  • Cannot, sign, only get a white screen, is there something wrong with the application?

    Cannot, sign, only get a white screen, is there something wrong with the application?

    [Duplicate message deleted... post the same question more than once is confusing... MOD]

    [This is an open forum, not a direct line to Adobe support... you have to wait a response]

    WHITE cloud screen http://forums.adobe.com/message/5484303 can help

    - and step by step http://forums.adobe.com/thread/1440508?tstart=0

    - and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • 'Something wrong with the credentials' sign in error

    When I try to recover my gamertag, it says "sorry, but there is something wrong with the credentials you use to connect." How can I fix it?

    Hello

    Answers has no influence on the XBox or XBox Live must
    contact with them.

    XBox - Support
    http://support.Xbox.com/en-us/pages/default.aspx

    XBox - Contact us (support)
    http://support.Xbox.com/en-us/contact-us

    XBox - Support Forums - and my XBox (top-right)
    http://forums.Xbox.com/

    Xbox technical support phone number

    • Toll-free: (800) 4MY-XBOX or (800) 469-9269

    XBox LIVE - Service status
    http://support.Xbox.com/en-us/Xbox-Live-status

    Manage the XBox Live account
    http://support.Xbox.com/en-us/billing-and-subscriptions/account-management/Xbox-Live-account-management

    XBox Live Sign-in problems
    http://support.Xbox.com/en-us/billing-and-subscriptions/Windows-Live-ID/Xbox-Live-sign-in

    ==================================================

    If you have problems connecting with the Microsoft Account (formerly
    Windows Live ID) and then check in this forum. (This thread has been
    moved on this forum and a Moderator Microsoft should be along
    to help.
    )

    Answers - Hotmail, Messenger, and SkyDrive (and all things Windows
    Live webcam) - Microsoft - Forum login and logout account.
    http://answers.Microsoft.com/en-us/windowslive/Forum/LiveID-signin

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

Maybe you are looking for

  • Satellite Pro L10 cut just randomly

    New satellite Pro L10, with XP Pro and Linux dual boot. Randomly, sometimes once a week, sometimes several times on, it will just cut. Just Litrally disable itself (as there is no power?). Occurs in Windows and Linux. Subsequently, I constantly press

  • my wireless mouse

    I put in the connector - the software for the device indicates loaded - mouse does not work.  now what?

  • Impossible to share photos with OneDrive: error 0x8CCCD052

    I sent e-mail from the photo on the drive from Sky successfully for some time. Today, however, I can see where selected images are sitting in the Outbox is ready to go but then I get an error message (0X8CCCD052) also a latest publishers 1932734382 e

  • Fram rate dip when it's on battery power, even if using "max power."

    I ran the benchmark of Super Street Fighter 4 with high power option Performacen AC plugged. CPU - Z showed my processor at 3 GHz, as expected. I unplugged HQ over the benchmark, and while CPU - Z showed 3 GHz my FPS dropped from 85fps to 45fps. FIX:

  • The lost Redologs and Archivelogs

    HelloI'm using Oracle XE 11 g R2 and error all archivelogs deleted by running delete archivelog all; RMAN command.Also a set of redo logs have been deleted: redo_g02a.log, redo_g02b.log and redo_g02c.log Another redolog are available: redo_g01a.log,