Help with html files when you place the overlay Web content

Hello

We have an educational application with plenty of interactive exercises - which were originally designed in Flash.

I have converted in HTML using Wallaby fla files. For each fla file, Wallaby creates a js, css and html file but also an active file.

When I place the frame Web Content, and then link it to the html file, it link to the real HTML created Wallaby? It wont let me select the folder containing all the files in that, and I can't link to a zip file either... Then, how it recognizes assets if I select only the html file? (see screenshot)

Screen Shot 2013-03-28 at 2.09.20 PM.png

Or do I need to add a HTMLResources file and bind it to who?

Thanks in advance for any help.

You a link to the HTML file but make sure that these things are in their own folder or InDesign will add EVERYTHING in the folder that has the HTML in there.

Bob

Tags: Digital Publishing Suite

Similar Questions

  • I have problem with Muse files when you work at home with my laptop and when I open the files again in my work with my IMac.

    I have problem with Muse files when you work at home with my laptop and when I open the files again in my work with my IMac.

    I do: when I am uncomfortable with the laptop I save the files on the laptop, then on my external hard drive. Then, when I'm at work, I opened the drive, but the Muse says every time, that so many links in the 'active' is missing. And it takes a lot of time to get all the missing link. Like today I had to open a file of Muse from the external hard drive, and there are about 100 links that are missing.

    How can I solve this problem

    the best thing if you are a user of creative cloud is to store the files in a folder in your account of cloud instead of transferring the files from one computer to another.

    If you are not a Subscriber cc then Dropbox or iCloud will work as well.

  • When you place the object from Illy, how to ID design work to present plans

    Could someone guide me through to placing it objects in documents of identification of an Illustrator file with multiple layers? It presents only the work plans that are present in the surface layer? Or is it all visible layers?

    When you place the file, choose display options.

  • Windows help keeps popping up when you press the happy.

    Hi, I am currently using an HP XT's spectrum that runs on Windows 8. Two days previously, when I press SHIFT C, the capital C is not at all.  Therefore, I press Caps Lock shift but this triggers a Windows Help is displayed.  This can be very irritating, especially when I'm typing a document. Anyone would be able to tell me how to activate the 'Shift C' keys, as well as to turn off the help pop-up windows when you press the CAPS LOCK key.?  Thank you very much for your help!

    Hello Lai,

    Thanks for posting your query in Microsoft Community Forum.

    If it works well before? If YES, you did important equipment or modifications to the software on the computer before this problem?

    The issue could rest with the material if it is a keyboard mapping problem. Then, I recommend you to connect an external keyboard with the ultrabook and check. If the external keyboard works fine, then you may need to contact the manufacturer of your system (hp) for the same problem.

    If you get the same problem with the external keyboard, the issue may rest with the keyboard or corrupt drivers.

    In this case, I suggest you to update the drivers for the chipset of your ultrabook. You can view the following link to do so:

    Spectrum of HP XT Pro Ultrabook

    Hope this information is useful. If the problem still persists, please post back for further assistance, we will be happy to help you.

  • Possible to force overwriting of files when you use the method. render()?

    Hello world

    Hope all are well.  I looked at the documentation available in the Guide scripts of the effects after, but could not find any information on this.  Is it possible to force overwriting of files when you call a rendering method. render() in a script?  I know there is a constant that can be used to force overwriting of .aep project files when you use the method. close() on the app object.  For example, it's documentation:

    Action to run on close. A CloseOptions enumerated value, one of:

    CloseOptions.DO_NOT_SAVE_CHANGES : Close without saving the changes. CloseOptions.PROMPT_TO_SAVE_CHANGES : Whether to save changes before closing.
    CloseOptions.SAVE_CHANGES : automatically record on the end.

    Is there something like this for managing conflicts of files during the rendering process?

    Thank you
    Arie

    That's what I do. It seems to work:

    app.beginSuppressDialogs ();

    myProject.renderQueue.render ();

    app.endSuppressDialogs (false);

    Dan

  • [CS5] [JS] With the help of import options when you place an image

    Hello

    Does anyone know how to add import options when you place an image?

    I would like to activate 'Apply Photoshop Clippingpath'.

    Currently I use...

    myRectangle.place (myPicture);

    Or is it an application setting?

    Thanx

    John

    Seems that you can call to the properties of an imported file may include the ClippingPathSetting preferences. It is the object of great CS5 Jongware model.

  • problem with checkbox custom when you use the loadVariablesNum

    I have several cutomized box that he can select or deselect and I have a button to determine which of the boxes is selected and through this button, I spent the variable to loadVariablesNum corresponding to which of the boxes is selected.

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

    the code in the button to determine which of the boxes is selected:

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

    If (chk1.mark1._visible = true) {}
    trace ("31");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 31", 2);
    }
    If (chk2.mark2._visible = true) {}
    trace ("32");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 32", 2);
    }
    If (chk3.mark3._visible = true) {}
    trace ("33");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 33", 2);
    }
    If (chk4.mark4._visible = true) {}
    trace ("34");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 34", 2);
    }
    If (chk5.mark5._visible = true) {}
    trace ("35");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 35", 2);
    }

    I'm assuming that you have a problem with it not working.  A problem with it is that when you make the comparison conditionals, you use == to see if things are equal, not =

    In addition, not a mistake, but to less treatment works... you must use "elsewhere" so that once the program finds a match it does not all the remaining conditions, which would make you currently.

    If (true chk1.mark1._visible == ) {}
    trace ("31");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 31", 2);
    } Else if (chk2.mark2._visible == true) {}
    trace ("32");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 32", 2);
    } ElseIf...

    In addition, the solution of the error can be simplified in your case because you are using Boolean values (true/false).  When a conditional tests something that he's just looking to see if the value it evaluates as true or false, so your conditional statements have not even the 'is true ".

    If {(chk1.mark1._visible)
    trace ("31");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 31", 2);
    } Else if (chk2.mark2._visible) {}
    trace ("32");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 32", 2);
    } ElseIf...

    One last thing... it seems that you have created unnecessarily box different symbols where you might have used the same as that for all of them.  I say this because to see how you have different brand # for each of them.   Just assign the same name to a different instance...

    If {(chk1.mark._visible)
    trace ("31");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 31", 2);
    } Else if (chk2.mark._visible) {}
    trace ("32");

    This example is used to emphasize the difference between symbols and instances.  The same symbol (such as a radio button or your craft boxes) can be reused multiple times by using the names of different instances for each instance.  You can then assign unique values to the properties of each instance

  • When you use the table of contents

    A few questions

    Can I do the button contents of larger.  Currently, the arrows are not useful to the partially overview

    I can move the TOC button to another location. say at the bottom of the page

    Is it possible to put a button until you see the table of contents

    Is it going to rain tomorrow

    What makes my wife tea tonight

    Hello Devon,

    However, I know that's not possible. The button table of contents is generated only generated at run time and has not yet been exposed to the Skin Editor TOC UI. If like me you want to it see the ability to customize it in a future version of Captivate so please add your voice by presenting this as a feature request.

    Adobe Captivate feature request/Bug Report Form

    Best - Mark

    Visit blog macrofireball

  • "this file does not have a program associated with it" message when you insert the sd card

    When I insert an SD card into my computer, I get a message that says f:\ that this file does not have a program associated with it... I know I can set default programs with the types of files in the Control Panel, but how do you recognize what to do when I insert an SD card in the computer?

    Windows 7
    The problem is caused by the automatic game changing options, this can sometimes happen when you install a new program, but they can easily be changed back. Click 'start' at the bottom left, go into "default programs" on the right side of the list (under computer / doc/images etc.) select "Change AutoPlay settings.
    You will find prob some of the sections had the new auto run program, just edit those you want (or all) "ask me every time", you will find that when you insert an sd card, you get the options normal download, copy, etc. as usual.

  • Resolution of the image when you place the InDesign file in InDesign

    I feel like this is a silly question but I do not know the answer!

    If I place an InDesign file that contains a picture in a another InDesign, the resolution of the original image file is kept? For example, if I have an InDesign A5 file, that contains a chart where the ppi effective (because it's been reduced) is 600 dpi, and then I place the entire InDesign file it in another file and EXPAND, what happens to my graph?

    Thank you!

    I have a document with an InDesign file linked, an area of text that is used in many documents, so interested in this issue.

    I did a quick test and it seems to work as it should. I made a smaller file with an image linked and bound the Indesign file in a larger document, and since it is a linked InDesign file it recognizes and displays the image in the links Panel.

  • How to save the data to the new file, when you press the button

    Hello.

    Run a program that reads data recorders seconds and displays a trace on the screen.

    What I want, is that when I press a button, the program will ask for a file name and begins to record data to the file, and continues to do this as long as the button is pressed.

    When I press the button again, the program asks the name of the file again, so I can select a new file to write.

    I've included a simplified version of my program that works by asking the file name at the beginning.

    How can I change the program it starts a new file every time that the key again.

    Kai,

    I changed the example that I gave you to LV8.0, but I have never used the option 'Save for the previous version' before, so I don't know if it will work.

    I have combined the start and stop of recording in a single button (just change the text to all what you need) and I used the 'value' property to pass the path between cases. The path can be formatted as you have in your version, don't forget to use the string conversion function filepath.

    Just in case where it doesn't work on your version of LV I've attached a screenshot of the block diagram.

    Hope this helps, let me know if you have more problems with this.

    Easy.

    Darren.

  • How can I disable the function that copies the image files when you drag the mouse?

    When I go to my image files and I hold down the Ctlr key and highlight a series of photos to remove, I sometimes inadvertently made my mouse to other photos and cause a series of copies to reach. He is a frequent source of frustration. How can disable this feature of "copy"?

    When I go to my image files and I hold down the Ctlr key and highlight a series of photos to remove, I sometimes inadvertently made my mouse to other photos and cause a series of copies to reach. He is a frequent source of frustration. How can disable this feature of "copy"?

    =============================================
    If you are comfortable editing the registry, the
    more info can be your solution.

    I do not have an article with the specific steps
    Windows 7, but the following link should provide
    enough information to help you improve the issue.

    (FWIW... it's always a good idea to create a system)
    Restore point before editing the registry)

    Trouble fixing: stop Windows copy
    Files accidentally when Ctrl-click selecting
    http://www.howtogeek.com/HOWTO/Windows-Vista/fixing-annoyances-stop-Windows-from-copying-files-accidentally-when-CTRL-click-selecting/

    Changing the default value in the following keys
    from 4 to 20 is supposed to improve the problem.

    HKEY_CURRENT_USER\Control Panel\Desktop\DragHeight
    HKEY_CURRENT_USER\Control Panel\Desktop\DragWidth

  • Why Lightroom will not save the file when you use the image Capture?

    When you work with video in Lightroom 5, whenever I press "Image Capture", I get an error message that says: "cannot save the file." I tried this on several video files, and I get the same message. Video files are. MOV files. I can't understand why this is happening!

    I had this same error message. I solved it when I moved the video file on the hard disk internal to the computer, and then it worked perfectly. He always gave the error message when I used an external video file from my hard drive. There for a long time until I tried this. No one answered this problem in forums that I could find.

    I hope this helps.

  • In Windows Media Center, one of my recorded tv programs blocking WMC, when you place the cursor on the title.

    WMC doesn't crash on any other recorded program tv and all the other game of TV very well.

    Is this perhaps a corupt file?  Where can I find this fmanually file so I can remove it?

    Thanks for your attention!

    Hi ClaytonNagle,

    Thank you for writing to Microsoft Communities. Before you start the troubleshooting steps, I need the following information:

    ·         Did you do changes on the computer before the show?

    ·         What version of the operating system is installed on the computer?

    Follow the steps in the article, and check.

    Solve problems with a Windows Media Center Extender device

    Let us know if you need more assistance. We will be happy to help you.

    Thank you.

  • FTP creates and deletes the temporary instead of the download file when you use the switch S:

    We use Windows 2008. There is a strange problem to start the FTP., receive a file.
    I can receive the file when the command line GET command. When I use the file with the command (ftp - s:Filewithcommands.txt), ftp creates a temporary file and remove it automatically without doing the real download.
    Thanks in advance

    Hello

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums:

    http://social.technet.Microsoft.com/forums/en/winserverDS/threads

Maybe you are looking for

  • FF 11

    Y at - it a mail or phone to support Mozilla?11 FF has really messed up my computer and I have received no help from anyone in this community. How can I get help form Mozilla? Really the track!

  • Poor color rendering of certain images

    I am a mediocre of certain images, when color rendering using Firefox on Ubuntu 11.04. These images will display correctly using chrome and when using Firefox on Mac OS X. example: http://www.Facebook.com/photo.php?fBid=154259027952458 & Set = have.

  • Manage the XML files in the workspace tool

    Hello I developed a workspace tool that was working until I have add the report XML file IO > XML > XML Parser. I can't add any VI of this palette to my worksapce tool. I get an error when trying to open the workspace tool if one of these screws is i

  • cluster does not refresh

    I make the basis of a 'universal' test program This program will be executed under three or several test done grids containing various and models of test equipment. So what I decided to do was to make a configuration using XML file that can be change

  • Multiple is plotted on the XY graph (by iteration)

    Hi all I wrote a program that allows me to chart the theoretical data and change it in real-time to see how it changes the plots.  Currently, I have all the equations in a for loop and have the berries each iteration XY are clusterted together and au