Resizing on html page

I have created an animation with a stage size of 1000px wide by 321px high. When I insert it into Dreamweaver using the Insert > Media > Edge Animate Composition, it resizes to 1020 by 341, then when I play it online on Safari, it looks OK, but on FireFox it sort of shows a "blip" of the larger file, briefly. Just want to know where the extra 20px are coming from? Why would it add the extra 20? If I change the sizing back to 1000x321, it acts normal in both Safari and FireFox... no more blips.
Is this a bug?  If so, is there anywhere I can report it?  I went to the bug report page and Edge Animate doesn't show up on the drop down list.

russell van gravy wrote:
> Hello
> How do I set the target window size (say to 300 x 300px)
when using 'getURL' to open an HTML page. I have tried resizing the
target page on load in dreamweaver with no success.
> Thanks
hi there
we done that subject literally hundreds of time. Please check
the forum archives
before posting, there hardly are any new questions you could
have which have not been
documented here :)
best place to search :
http://groups.google.com/advanced_group_search?q=group:macromedia.flash.*&hl=en&lr=&ie=UTF -8
look for "pop up" in the "with all of the words"
Regards
Urami
Happy New Year guys - all the best there is in the 2006 :)
<urami>
http://www.Flashfugitive.com
</urami>
<web junk free>
http://www.firefox.com
</web junk free>

Similar Messages

  • How do you make html page resize to fit any browser

    Hi All,
    How do you make the html page resize to fit any browser/window both vert and horizontally.
    Thanks!
    Randy

    Horizontally by using percentage width instead of pixels.  This is called a liquid layout.
    http://alt-web.com/TEMPLATES/CSS2-Liquid-Page.shtml
    Vertical resizing is irrelevant in web design.  Page content determines page height.  The more content, the longer the page.  The less content, the shorter the page.  Scrollbars appear when needed.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • To open a window & html page at a time on a single button, in JSP.

    Hello!
    I want to open 1 window as well as i want to open 1 html page on a single button click at a same time, in JSP.
    on button's "action" event i am opening the html page and button's "onclick" event i am opening the window, but it is not showing these 2 actions at a time. only window gets open when i click the button.
    [Also on form's "action" event i am having validate() function.]
    how do i open a window & html page at a time on a single button, in JSP?
    I don't know how to do this. I have stuck over here, if anyone is having any solution, please let me know.
    I need your help.
    Thank You.

    write js as
    window.open(page, "Popup", windowprops);
    windowprops = "height="+hi+",width="+wd+",top="+ wint +",left="+ winl +",location=no,"
              + "scrollbars=yes,menubars=no,toolbars=no,resizable=no,status=yes";
              encapsulate this in one function and call that function on button click event !!

  • Lightroom Web Gallery in HTML page?

    Hello,
    I want to export a web gallery from LR 1.3 and insert this gallery into an html web page in Dreamweaver 8. This would be huge! I have researched it and found that it just may not work.
    1 of the errors: the first gallery I made in LR and published online, is the gallery that shows up in the html page.
    Another error: the gallery only shows that its loading (inside html page).
    Attempts:
    1: drop the flash file into the html page and resize it to fit
    2: put the bin in the resources folder and drop the flash file in the html page
    Primary resource:
    http://blog.bluefire.tv/?p=18
    Any help would be outstanding!
    Thank you,
    Tyler Fraser
    www.fraserimagery.com

    Well,
    It's not an Adobe issue, it's a hosting issue.  I have GoDaddy, and, after four or five phone calls, I got someone who really knew what they are doing.  He said they host Unix for Linnus users, and a Windows based for Windows users, so that's not it.  It was a simple matter of moving files.  I was creating a subdomain this time, so perhaps that made it a little more difficult.  Anyway, you name the gallery with the same name as the destination folder.  Then, if the index.html page isn't in the right place, you move it to a place in the tree where it is right.  Call your hosting company if you can't get it right.  Persistence and patience will pay off.
    Kate

  • Preferred size of JEditorPane/ HTML page

    Hi,
    I've loaded an HTML page in a JEditorPane. Since I'm using a layout manager with absolute positioning, I need to know the pane's preferred size.But the preferred size I get is just about (6, 6), although it has a big picture in it. I tried validate() first or to add it with (1,1) to have it set up properly (visible etc.) and then resize it afterwards, but it had no effect. Is there a way to get a preferred size of an HTML page?
    Thanks a lot.
    Greets
    Puce
    Note: Using another layout manager is not a option, since this is a very specialized task.

    I could use this as well. I'm tiling JEditorPanes vertically inside a JPanel using BoxLayout. The problem is that I need to limit the width of the panel, so I need to adjust the sizes accordingly. Any suggestions? I'll give another duke...
    Max

  • Displaying HTML page from JFrame

    Hi ,
    I have a JFrame GUI with menus and menu items. After Clicking on the Help Menu Item, I want to display a HTML page. Does anyone know of a function to display an HTML page?

    import javax.swing.*;
    import java.awt.*;
    import java.io.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    // This class is used in the Image Tool class when the help menu item is selected
    public class HelpMenu extends JInternalFrame implements HyperlinkListener{
    // A new JEditorPane to display the help html file in.     
    private JEditorPane jep;
         public HelpMenu () {
              super("Help Menu",
                        true, //resizable
                        true,     //closable
                        true,     //maximizable
                        true);     //iconifiable
              // Set the size and location of the frame
              setSize(500,500);
              setLocation(20,20);
              // create the JeditorPane
              jep = new JEditorPane( );
         jep.setEditable(false);
              // Make jep a scrollable pane
              JScrollPane jsp = new JScrollPane(jep);
         getContentPane( ).add(jsp, BorderLayout.CENTER);
              // Add a listener to listen for hyperlinks within the document
         jep.addHyperlinkListener(this);
         try {
         String HelpFile = "file:C:/Documents and Settings/Patrick/Desktop/Help.html";
         jep.setPage(HelpFile);
              // If the file can be loaded display the frame
              setVisible(true);
         catch(Exception e) {
              // The file could not be loaded.
              System.out.println(
                   "Could not open help page! Has it been deleted from: C:/Documents and Settings/Patrick/Desktop/");
              // If the file can not be loaded display an error message
              JFrame f = new JFrame();
         JOptionPane.showMessageDialog(f, "Could not open help page! Has it been deleted from: C:/Documents and Settings/Patrick/Desktop/",
                   "Help Menu", JOptionPane.WARNING_MESSAGE);
              // If the file cannot be loaded do not display a frame
              setVisible(false);
    public void hyperlinkUpdate(HyperlinkEvent he) {
    HyperlinkEvent.EventType type = he.getEventType( );
         if (type == HyperlinkEvent.EventType.ACTIVATED) {
    try {
    // set the page to show the selected section of the file
    jep.setPage(he.getURL( ));
    catch (FileNotFoundException e) {
    catch (Exception e) {
    }     

  • Html page maximize

    Hi All,
    i have small doubts in html page, actually my client requirement is to increase the size the of the html page, i already gave the height and width, but he wants maximize button, actually maximize button is disabled  in my html page, how to enable the maximize button in html page,
    thanks
    chinnu

    Hi ,
    Is this HTML page called using JavaScript window.open?
    If yes then just remove the attribute RESIZABLE
    Regards,
    Anubhav
    Edited by: Anubhav Jain on May 26, 2009 3:38 PM

  • Regarding displaying html page in a JEditorPane

    i want to display a html page in a JEditorPane but the problem is it is displying the page but the script part of html page is printed as it is in the pane . please tell the solution for it . i will be highly thankful to u.

    What you are doing exactly? you are displaying the html file into a JEditorPane or After displaying you are tring to Print it out in the Paper or what.
    If this the First Sinario then this code will help you.
    import javax.swing.*;
    import java.awt.*;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.io.*;
    import javax.swing.text.*;
    import javax.swing.event.*;
    public class Htmlexample extends JInternalFrame {
         //Constructor of Class.
         public Htmlexample () {
              //super(Title, Resizable, Closable, Maximizable, Iconifiable)
              super (title, true, true, true, true);
              setSize (500, 350);
              HtmlPane html = new HtmlPane ("Help/Keys.htm");     
              setContentPane (html);                    
              setVisible (true);
    //Following Class Show HTML Help inside an EditorPane.
    class HtmlPane extends JScrollPane implements HyperlinkListener {
         JEditorPane html;
         public HtmlPane (String filename) {
              try {
                   File f = new File (filename);          
                   String s = f.getAbsolutePath();          
                   s = "file:" + s;
                   URL url = new URL (s);               
                   html = new JEditorPane (s);          
                   html.setEditable (false);          
                   html.addHyperlinkListener (this);
                   JViewport vp = getViewport();     
                   vp.add (html);                    
              catch (MalformedURLException e) { }
              catch (IOException e) {     }
         //Function Perform By the HyperLinks of HTML Help File.
         public void hyperlinkUpdate (HyperlinkEvent e) {
              if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
                   linkActivated (e.getURL());
         //Function for Loading other HTML Pages in Your HTML Help.
         protected void linkActivated (URL u) {
              Cursor c = html.getCursor();
              Cursor waitCursor = Cursor.getPredefinedCursor (Cursor.WAIT_CURSOR);
              html.setCursor (waitCursor);
              SwingUtilities.invokeLater (new PageLoader (u, c));
         //Following Class Load Other Pages Included in Our HTML Help File.
         class PageLoader implements Runnable {
              //Constructor of Class.
              PageLoader (URL u, Cursor c) {
                   url = u;
                   cursor = c;
              public void run () {
                   if (url == null) {
                        html.setCursor (cursor);
                        Container parent = html.getParent();
                        parent.repaint();
                   else {
                        Document doc = html.getDocument();
                        try {
                             html.setPage (url);
                        catch (IOException ioe) {
                             html.setDocument (doc);
                             getToolkit().beep();
                        finally {
                             url = null;
                             SwingUtilities.invokeLater (this);
              URL url;
              Cursor cursor;
    }if there is any other issue Let me Know
    Thank you
    Jofin

  • ColdFusion in HTML pages

    Hello,
    Is there any way to use ColdFusion code in an HTML page?  I have a section of an HTML page where I want to put dynamic content, but I don't want to have to save the page as a .cfm file.  All I need to use is a cfinclude tag.
    Thanks!

    I continue to be impressed by the amount of knowledge that everyone on these forums possesses.  Thank you to all the posters in this thread for your insight, advice and experience.  I didn't mean for my question to spin off into many different directions, but it was interesting to read everyones' responses.
    To recap, my situation is this:
    The homepage of my Web site is an HTML page.
    I wanted to include content from a database, but I did not want to have to change the page extension to cfm at this time because of users' bookmarks, etc.
    The idea to use an iframe worked, but I need to figure out how to allow the iframe to resize height-wise depending on how many records are returned.
    What I'm trying to accomplish is simple, so I don't feel the need to modify my server at this time.
    Again, I appreciate all the help and insight.

  • Resize a HTML view

    Hi peoples..
    I am working in VC with a HTML view.
    I need to resize the HTML view, but there are no way to do this.
    I try to put it im a View Switch or panel, and resize them. The view switch and panel are resize, but the iframe that HTML view is, continue in the same size with scroll bar.
    Anyone knows how i can solve this?
    Thanks.

    Hi satish
    I've tried use layout and scale, using fixed scale or auto-fit width, but just resize the panel, the iframe don't change.
    My Layout is a vertical flow and i have 2 panels:
    - the first is a form.
    - the second is a html view. In this view is embed a google map page was developed by me.
    I resize the map, but the iframe contains the map don't resize, it always the same size.
    If i put fixed scale, for example, The panel resize and the iframe don't.

  • HTML Page With Icon Buttons

    Hi there,
    So I'm not too familiar with HTML pages but I think this
    might be advanced...at least for me. ;-) What I have is a html page
    that is set up with a table and inside the table is a background
    image. The table is aligned to center and that's pretty much set to
    go for the background. What I want to do now is add buttons onto
    this page but I can't figure out how to have the buttons stay in
    the same exact place of the background image when I change the size
    of my web page. I know how to do this in ImageReady by just slicing
    this thing left and right, but I wasn't sure if there's a way to do
    this in Dreamweaver to make this easy.
    This is what the page looks like as of right now:
    http://www.crawfordgroup.tv/4th/
    What I would like to do is not have the page load up in
    chunks since I had to slice everything in ImageReady. Any
    suggestions? I would really appreciate any advice. Thanks a lot!
    Brian

    Put the buttons into cells of the table. But (and this is a
    big one) - The
    table must be constructed using good table methods. This
    means it would
    have to be built so that if your content expands (i.e.,
    someone resizes
    their text in the browser), it doesn't expand those cells.
    You cannot,
    therefore, merge and split cells in this table containing the
    buttons.
    That means you have to understand HTML tables enough to be
    able to build
    that layout.
    A point I am subtly trying to make is that this alignment of
    foreground
    things with background things is usually not a good page
    layout approach.
    > I know how to do this in ImageReady by just slicing this
    > thing left and right,
    This is the way that most people enter the dreaded domain of
    "Table Hell".
    Do not use a graphics editor to write your HTML.
    Taking a Fireworks comp to a CSS-based layout in Dreamweaver
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt1.html
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "BriGuyHogie" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi there,
    >
    > So I'm not too familiar with HTML pages but I think this
    might be
    > advanced...at least for me. ;-) What I have is a html
    page that is set
    > up
    > with a table and inside the table is a background image.
    The table is
    > aligned
    > to center and that's pretty much set to go for the
    background. What I
    > want to
    > do now is add buttons onto this page but I can't figure
    out how to have
    > the
    > buttons stay in the same exact place of the background
    image when I change
    > the
    > size of my web page. I know how to do this in ImageReady
    by just slicing
    > this
    > thing left and right, but I wasn't sure if there's a way
    to do this in
    > Dreamweaver to make this easy.
    >
    > This is what the page looks like as of right now:
    >
    http://www.crawfordgroup.tv/4th/
    >
    > What I would like to do is not have the page load up in
    chunks since I had
    > to
    > slice everything in ImageReady. Any suggestions? I would
    really
    > appreciate
    > any advice. Thanks a lot!
    >
    > Brian
    >

  • Can I resize the html applet size ?

    <applet code="myapplet.class" width="800" height="600"></applet>I know that I can use getSize() in my code file to get the size of the applet in html.
    However, can I resize the html applet tag width and height? It seems impossible.

    You could try to generate the HTML, save it to a File, and the use showDocument() to reload the whole page.
    (T)

  • Aligning flash to bottom left of html page?

    hi
    is there any way of aligning a flash movie to the bottom left
    of a html page
    so it always stays at the bottom even if the user resizes the
    window?
    thanks in advance
    Shaun

    If you update photoshop to 9.0.1 you will solve the problem described.

  • Resizing a web page

    I have a flash movie with a button that allows the user to
    click and view the movie in full screen or click another to return
    to normal view. If I hosted this movie inside a web page how would
    I get the the action script to resize the html file that my flash
    file is embedded in. Is it possible? My javascript is rather
    limited. Any help is appreciated.

    <style type="text/css">
    <!--
    body {
    height: 100%;
    width: 100%;
    margin: 0;
    -->
    </style>
    [ Copy and paste the above code between the head tags. ]

  • A tree-view in HTML page with nodes generated with java script in run time is not visible in the UI Automation Tree. Need Help

    I have a HTML page with an IFrame. Inside the Iframe there is a table with a tree view
    <iframe>
    <table>
    <tr>
    <td>
    <treeview id="tv1"></treeview>
    </td>
    </tr>
    </table>
    </iframe>
    In UIA, i am able to traverse till the tree view but not able to see it.
    I have used the TreeWalker.RawViewWalker Field to traverse the node from the desktop Automation.RootElement. 
    I tried to use AutomationElement.FromPoint method to check whether i am able to get that element. Fortunately i was able to get the automation element. 
    i tried to get the path to root element from the node element using the TreeWalker.RawViewWalker. I was able to get the parent path to the root element.
    But trying the reverse way like navigating from root element to tree node, was not getting the element for me. 
    Please help me with suggestions or inputs to resolve this issue. 

    Thanks Bernard,
    It works fine with JInitiator but not working with
    the JPI. For JPI what settings I need to do ??hi TKARIM and Bernard, i am having similar problem even with the Bernard's recommended setup. could you post the webutiljini.htm (i presume you are using config=test) ?
    i am actually using jinitiator 1.3.1.28 with Oracle HTTP Server of OAS 10gR2) calling Forms Server 6i (f60cgi). After setting up according to Bernard's recommended setup steps, the java console showed that it loaded the icon jar file when it could not read the form, but it skipped the loading of the icon jar file once it read and started the form. How do we specify in the form to pick up the icon from the jar file instead from a directory ? Or do we need to specify ? Any ideas ?
    Thx and Regards
    dkklau

Maybe you are looking for

  • Monitor screen

    Hello, I am running Lightroom 4 purchased 1 week ago ,with latest update. Today there is an area on my monitor screen that does not respond to the curser. I could not make a selection anywhere in that area. The area size was about 4.3in x 4.4in. Posi

  • Compare and test values in two tables

    hi everbody, I use oracle 10g I have a table for large itemsets called L shown below with values ITEMS CODE b 1 c 2 d 3 e 4 d:e 5 b:c 6 I generate all candidate combinations firstly 2-sequences for in code field values for that I use below code selec

  • Whoohoow! Forum Preview at its best!

    Very clean, very nice. Nice options for paragraph & text... attaching files, list goes on. Hopefully and especially new users will behave and do not screw up the clean look with bunch of useless smilies, signatures and useles stuff. My Fear: If possi

  • Third party sales availabilty Checking

    Hello, I have configured third party sales . In the development system it is creating purchase requisition and purchase orders and working fine.  But when I transport to QA system , the sales order is performing availability check and confirming orde

  • Wakes from Sleep

    Hi For some reason whenever I tell my iMac to go to sleep it always wakes up automatically. It doesn't always do it straight away but if I tell it to sleep and come back later it always seems to be awake. It's only seemed to start doing this since I'