When Editing A Web Page In Edge Animate, How Can I Embed Edge Elements Into Pre-Existing DIV's?

I created a basic layout with some boxes in Dreamweaver. I set the Overflow property on them to "Hidden". I then opened the page in Edge Animate. However I noticed that when I import stuff, such as an image, then try to drag it into one of the existing DIV's, it won't work. It stays on top of all the other DIV's. However if I create a box or some other sort of DIV directly in Edge Animate, I can drag the Image element into that, so it's enclosed within that DIV.
I guess the workaround appears to be to embed the image into the DIV in Dreamweaver first, then open the page in Edge. However it would be nice to not have to keep jumping back and forth like that. Is there a way to do this in Edge Animate?
Also, I noticed when I select one of the DIVs I made in Dreamweaver, many of the Properties such as Corners, Shadow, and Filters are missing. Can these only be used on DIV's created directly in Edge Animate?

Hi, neohtom-
What you're seeing is the difference between what we define as a static div (one that is defined outside of Animate) and a managed div (one that is defined inside of Animate).  Due to the fact that we expect other products to change a static div, we limit the amount of changes you can make to a static div.  Because we "manage" a div that is created inside of Animate, we allow a lot more changes to be made to a div.  Hope that answers your question!  I'd suggest creating divs within Animate if you want to eventually change them to have corners, etc.
Cheers,
-Elaine

Similar Messages

  • When I call an external program from Labview, how can I embed the interface into the front panel?

    I'm running Labiew 6i for Linux. I'm using a system exec.vi to call an external program to do image manipulation (since there is no IMAQ for linux). How can I embed the user interface of the external program into the front panel of Labview?

    As far as I know, the only way to embed other GUIs in LabView is an ActiveX in a container.
    As long as you are using Linux, try to place (moving them on the desktop ) the two windows linked (like those 3 of WinAmp).

  • Why do some web pages blank out and how can I fix it - have emptied cached, enabled/disabled various whatevers and opened DNS servers per previous discussions.  Nothing's keeping zulily or vrbo open.  Appreciate help.

    Need help fixing web pages going blank after they open.  Thanks -

    Need help fixing web pages going blank after they open.  Thanks -

  • I cannot view photos from pages of an on-line auction from Firegox, but I can view the photos when I view the page on IE. How can I correct this problem?

    When I open to a page from the auction on Firefox, the photos added to the auction to picture the item are not shown. Only a numerical list of the missing photos is visible: 1,2,3, etc. But when the same page is opened on IE, the photos are shown with no trouble. I asked the web site for help, but they had no idea of a problem.

    Sometimes images may be blocked by site-specific permission settings, and in other cases by extensions such as ad blockers. (If the images are displayed by a plugin, such as the Flash player, there are additional possible explanations.)
    (1) To check permissions, open the Page Info dialog and click into the Media tab. You can do this using either:
    * right-click and choose View Page Info > Media
    * Alt+t (open the classic Tools menu) > Page Info > Media
    Click in the list and arrow down through the various images and watch the box above the image preview area that says "Block images from {site}". If that box is checked for any of the source sites, uncheck it. When you're done, reload the page.
    (2) If the images weren't blocked by permissions, try the page in Firefox's Safe Mode. That's a standard diagnostic tool to bypass interference by extensions (and some custom settings). More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode" (''not'' Reset)
    If the images display in Safe Mode, then most likely one of your extensions is blocking them. You might be able to solve that puzzle just by reviewing them, but if you can't find the culprit right away, you can selectively disable them in groups to narrow it down.
    You would do that in the Add-ons Manager:
    orange Firefox button (or Tools menu) > Add-ons > ''click'' Extensions ''on the left side''
    Can you track it down?

  • Turning off headers and footers when printing a web page.

    Is it possible to turn off (or reduce the size of) the
    default header and footer
    when printing a web page? I am using Internet Explorer 6.0.2
    900, and only want
    it to work with my computer and a specific printer.
    I am using the directive @page normal { size : portrait;
    margin : 0;} in a CSS
    stylesheet specified as media="print".
    Clancy

    On Sat, 19 Jan 2008, David Powers wrote
    >However, you are very selective in your quote. Michael
    goes on to say
    >(and I agree with him on this point):
    >
    >"The problem with logical inches and all other fixed
    units of measure
    >is that they do not scale well on systems with different
    dot-per-inch
    >settings. What may seem just right in Windows at 96 dpi
    may be too
    >large or too small on other systems.
    Of course, but It's not a problem with logical inches per se.
    The
    logical inch is just another way of looking at what is meant
    by the
    screen dpi value. Scaling problems, with different dpi
    settings, has
    always been a Windows problem and results from the way that
    the OS
    handles scaling. Fonts scale perfectly. Actual windows, and
    other
    containers, don't. This is a problem programmers have
    grappled with
    since the first Windows OS. Vista is the first OS to try to
    tackle this
    problem.
    >Thus, percentages or ems work best when cross-platform
    compatibility is
    >desired."
    And that is because the users screen dpi, and hence logical
    inches, are
    totally irrelevant when specifying ems and percentages.
    Ems and percentage equate to a number of pixels, not inches.
    The sole purpose of screen dpi setting is to convert anything
    sized in
    physical inches into a number of screen pixels. That is the
    _only_
    purpose of screen dpi. It's a very simple algorithm.
    (physical) inches x screen dpi value = number of pixels
    How do _you_ think a font sized in points (inches) gets
    translated to a
    specific number of pixels on screen. I'd be interested in
    your answer.
    For the screen a conversion from physical inches to pixels is
    always
    necessary because, as you say, pixels are the unit of screen
    measurement
    but they are not just a "standard" measurement, they are the
    only
    consistent measurement. It's not the users program that
    creates pixels
    on screen but the Operating System. The program requests the
    OS to
    create a given font at a given size and the requested size
    _must_ be in
    pixels. Windows can't _directly_ create a screen font that's
    specified
    in points (inches) because it has no notion of what a
    physical inch is
    on screen. It does know what a logical inch is because the a
    logical
    inch is defined by the screen dpi value. That's what the
    screen dpi
    value is for. If a browser programmer wants to bypass the
    variability of
    screen dpi on different computers then they ignore dpi values
    and work
    directly in pixels i.e. in ems or percentage. When ems and
    percentages
    are specified one is dealing only in pixels.
    > It makes a lot more sense in terms of website design to
    set a
    >font-size of 14px than use units that both you and
    Michael Bowers
    >define as "1/72 of a logical inch".
    Of course it makes more sense to set font size specifically
    in pixels
    because that's the only unit the OS can use to put something
    on screen.
    I can't see where you get the idea that either Michael Bowers
    or I have
    said that there is a unit "defined as 1/72 of a logical
    inch". Every
    Windows program written takes it that there are 72 points to
    a
    _physical_ inch.
    >
    >Yes, you *can* use points to set font sizes (or any other
    measurement)
    >in CSS for onscreen display, but your fixation with
    logical inches
    >appears to add little of practical value to choosing the
    most
    >appropriate measures for designing pages to be viewed on
    displays of
    >various sizes and resolutions.
    You are implying I've said things which I haven't. I have
    never, at any
    time, said one should use points or inches in designing web
    pages. You
    seem to have missed the point that what I am doing is
    explaining why you
    see the results you do on screen when those unit are used.
    Somewhat more
    informed than "Points are only for print because I don't know
    what they
    mean on screen, so they must be meaningless".
    >As Eric Meyer says on page 110 of "Cascading Style
    Sheets: The
    >Definitive Guide" (2nd Edition), "points can be a very
    difficult
    >measurement to use in document design."
    And again, I've never advocated using them in page design. A
    close
    reading, however, from page 83 onwards shows that Eric Meyer
    has an
    imperfect notion of the meaning of screen dpi. Heresy!! He's
    hardly
    alone, which is why I did a web site.
    >
    >That's why I recommend leaving points for use in print
    style sheets.
    >However, if you enjoy making life difficult for yourself
    by using
    >points for onscreen design, you're perfectly free to do
    so.
    Once again, I have never advocated that. You are setting up a
    straw man
    to knock down. You can do better than that.
    Richard Mason
    http://www.emdpi.com

  • When I load Safari on my IPAD2, the web page comes up, but I can't scroll down the page. No matter what web page I go to the content stays darker than the navigation bar. This just started today. All other applications work fine.

    When I bring up Safari on my IPAD2, the web page comes up, but I can't scroll down the page. This just started today. No matter what web site I go to, the content is darker than the navigation pane.

    If it's happening on all sites, then assuming that it's Safari that you're using, have you tried clearing it's cache : Settings > Safari > Clear Cache (other browsers should have similar options, possibly within the actual app instead of within Settings). You could also try closing the app completely : from the home screen double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app (or whichever browser you're using) to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.
    If it's only happening on a particular site then there may be content on that site that isn't supported on the iPad e.g. flash, java, silverlight

  • Editing a Web page in External Application

    I am using Macromedia Contribute 3 and trying to edit the HTML code on a page by using the "Edit Page Source in External Application" option under File>Actions. It has worked in the past but now the "Edit Page Source in External Application" is grayed out. Any solutions? I know that I am connected to the website. Thanks.

    Hi There,
    Greetings from Adobe.
    To make that option is available, make sure the role to which you're assigned allows it. If you can't update this setting, ask the person who is assigned as website administrator.
    You will find that option under Edit > Administer Websites > Edit Role Settings > Editing > Allow users to edit a web page source in an external application.
    Regards,
    Ajit

  • I just updated to 10.8.4 and my mail program is showing a series of boxes with AAAAs inside them instead of the email addresses. Also when on Safari web pages are displaying the same AAAAAs instead of type. Firefox displays fine. Can someone help me?

    I just updated to 10.8.4 and my mail program is showing a series of boxes with AAAAs inside them instead of the email addresses. Also when on Safari web pages are displaying the same AAAAAs instead of type. Firefox displays fine. Can someone help me?

    Restart your Mac and immediately hold down the Shift key when you hear the startup chime to boot into Safe Mode. Keep holding the Shift key until you see a progress bar towards the bottom of the screen. You can let go of the Shift key at that point.
    OS X asks you to log in (you will get this screen on a Safe Mode boot even if your Mac is set to automatically log in). Let the Mac finish booting to the desktop and then restart normally. This will clear Font Book's database and the cache files of the user account you logged into in Safe Mode.
    Next, close all running applications. From an administrator account, open the Terminal app and enter the following command. You can also copy/paste it from here into the Terminal window:
    sudo atsutil databases -remove
    Terminal will then ask for your admin password. As you type, it will not show anything, so be sure to enter it correctly.
    This removes all font cache files. Both for the system and the current user font cache files. After running the command, close Terminal and immediately restart your Mac.

  • Editing LR Web Pages

    I used photoshop to make a web site and the pages make sense in Dreamweaver.
    But the LR pages aren't anything I can make sense of. The images look like they are stacked on top of each other.
    Have others been able to successfully edit LR web pages? Suggestions?
    Thanks!
    Reid

    Yes, I edited them but not in Dreamweaver. It's not my favorite web development tool, but then again I don't HAVE a favorite because no one makes what I want, but that's another story. It shows up OK in the tool I prefer, ancient though it is.
    But I see what you mean with Dreamweaver! Even the footer is right on top of the other elements. I have an old Dreamweaver, it's MX.
    That said, I would imagine you wouldn't be fiddling with the placement of every element, would you? You would be playing with the headers and footers, I imagine. And making an overall page to link in your various LR pages?
    If you look at it in code view, it's pretty nicely laid out so you shouldn't have trouble finding your way around.
    I decided not to use LR for web galleries, rather to use a database driven program on my server, Gallery 2. But that was because I wanted more flexibility.
    Judy

  • Editing  a web page

    Is it possible to save and then edit a web page, deleting what I don't want to send to another person ?
    Thanks

    There is no editing module in Safari as such (as in Mozilla, for example), but you can copy and paste the content to your email message (but that's only good for the text). That's what I usually do.
    Otherwise, you can print into a PDF file and use this, but you'll need a PDF editor, such as Acrobat (the pro version).
    Hope this helps;

  • When loading ANY web page, it take firefox 3sec to load a blank page. No matter what website I try to load, it just loads a blank page

    When loading ANY web page, it take firefox 3sec to load a blank page. I have tried everything, starting firefox in safe mode and dissabling all add ons, turning 6v on and off, turnig proxy on and off, reinstalling firefox, restarting my computer, and reinstalling drivers. I can use another browser to surf the internet but finding one that is as capable to firefox isn't easy.
    ps. Firefox did start at one point and then just stoped.
    I use Linux Ubuntu 11.04 single boot

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    See also:
    *http://kb.mozillazine.org/Error_loading_websites

  • Rainbow wheel when scrolling a web page

    Strangely every '''second time''' that I want scrolling a web page, the arrow become unresponsive for few second and the rainbow wheel appear sometime for more the 1 mn !
    This happen mostly on Google web page.
    I clear already firefox cache but it didn't help.
    iMac 3.06GHz IC2D OS X 10.6.8 / Firefox 8.0.1

    Yes, that's what I did in the first place.
    Instead of MOUSE_UP I used KEY_DOWN and the results came both: the stage and the HTMLLoader. That's why I'm confused. I'm pretty sure the results are same if I use MOUSE_UP too, isn't it?
    And my question is, where is the focus when scrolling a web page loaded with HTMLLoader WITH ARROW KEYS. Not using a mouse, and I don't know how to scroll with a mouse.

  • When Printing a web page from Firefox. The fonts are timy and all spacing is incorrect.

    Prior to beta 4.12, the pages printed correctly. Now, the fonts are small and the text spacing is incorrect. All text has at least one extra space between the letters.
    This happens on ALL sites when printing a web page.
    I tried printing the same page in Internet Explorer and it prints correctly.

    See this thread:
    *[/questions/787654]

  • How can a customer edit a web page that I have made?

    How can a customer edit a web page that I have made?  The customer should edit the text or pictures by himself. Is this possible? 

    First you can search in this forum "in browser editing".
    Second you may be interested in this video:
    http://tv.adobe.com/de/watch/designtools-in-der-creative-cloud/bearbeitung-im-browser-in-a dobe-muse/

  • How can I embed a Keynote presentation on a web page?

    I created a Keynote presentation using Keynote version 6.5 (OS X Yosemite). I found the "export as html" option, which creates an entire web page named index.html. I opened that web page in Dreamweaver, but I'm not talented enough to figure out how to turn that page into a proper index.html page, including the graphics, background, and links (etc.) that I want on my sites home page.
    I have also tried to embed the presentation onto a web page that I've already created, but I can't figure out how to do that, either.
    Can someone tell me if it's possible to embed a custom-sized Keynote presentation onto a web page and, if so, how?
    OR can you tell me how to edit the page that Keynote created when I open it up in Dreamweaver?
    I think the former would be easier, given what I've seen when I try to do the latter.
    I have been using Dreamweaver for many years - since before Adobe bought it - and the site I'm currently updating is already in Dreamweaver. That's why I'm asking about Dreamweaver (if you were curious).
    Of course, I've probably not provided all the information you would need to help me, so please ask questions. I won't be offended if they point out my ignorance!
    Thank you for any help you might provide.

    The only workaround I found was to use the desktop version of Keynote, which allowed me to export the presentation as a set of images to iPhoto. From there, they show up as an album and can be brought back to the iPad, and then played as a looping slide show in the pictures app. It worked perfectly.

Maybe you are looking for

  • Mountain lion 10.8.3 - repair your Library

    Hi, I have recently run the Mountain Lion 10.8.3 update. Since it restarted, a window saying "Mac OS X needs to repair your library to run applications. Type your password to allow this." I type my password, but about 10 seconds later the same window

  • Does anyone know how to read crash logs?

    Does anyone know how to read and interpret a crash log from the Sims Medieval?  I have contacted EA but they are not helpful. Just curious.

  • TS3989 cannot see photos in PC after enabled photo stream

    Hi, I have a question regarding photo stream and I am wondering if anyone can offer any help. I already set up an account in iCloud and I have wifi at home, on my iphone I went to the Settings>iCloud>Photos> I turned "My Photo Stream" on, then on my

  • Sap Hana cloudshare links don't work for me-Blank page

    Hi Experts, I'm working on SPS06 Hana studio on cloudshare, now while executing data generator on IE, I'm getting blank page.Though Heading of blank page says Hana login at IE bar. Actions I took so far after reading so many forums are below:- I impo

  • Lightroom 5.5 Crashing When I Reject Photos

    I don't think this happened before V5.5, but in the Library or Develop module, if I click the X key repeatedly rejecting a series of photos, Lightroom will crash.  It comes up with "Adobe Photoshop Lightroom 64-bit has stopped working, windows is che