Export shrinks entire html page, including images!

I've just completed my first page in fireworks. When I export
the png to html (with the associated sliced images) the entire site
has been scaled down by about two thirds. The page width in
fireworks is 940 pixels and yet the exported html file has a table
width of 380 pixels. All the images are scaled down too.
Any ideas????
Thanks for your help!

quote:
Originally posted by:
dynera
I've just completed my first page in fireworks. When I export
the png to html (with the associated sliced images) the entire site
has been scaled down by about two thirds. The page width in
fireworks is 940 pixels and yet the exported html file has a table
width of 380 pixels. All the images are scaled down too.
Any ideas????
Thanks for your help!
Oh...man...there's a setting somewhere that is probably doing
this. I don't remember what it is, though. Hang on, I'll look and
see if I can find something. Probably before I do, though, someone
who
does know exactly what it is will post the right
answer.

Similar Messages

  • Up/download html-page including all images

    Hi y'all,
    I'm developing a quite normal Webbrowser-Webserver-DatabaseServer application with Web-Frontend, Servlets, Jsp, Beans and good old JDBC-Technique. It's kind of a small dictionary.
    What I need is a solution for the following problem:
    Every item of the dictionary should be made of a html-page which could contain images, too. An administrator builds these pages and uploads them to the webserver. So how can I upload the html-page with all its images automatically?
    Some thoughts about it:
    - can the html-code be searched for images by java-script, and could they be uploaded automatically then?
    - do I need a AWT/Swing frontend?
    - or may a httpServlet request the images after getting the html-page?
    - packing all the files together into a .zip-File would not be soooo nice, the admin may be dumb.
    The same problem I have with downloading a page onto the administrators computer.
    well, I think I'm in trouble.. :)
    koem

    I'm not extremely experienced as a JSP/Java programmer but here are my thoughts:
    It sounds like your basic requirements are fairly simple, but you are taking the long way around to get there. If it is a dictionary-style app and the administrator is of limited experience then you need to keep things simple.
    Why create pages to upload when you can create a template with JSP and insert the text data and the images from a form? Text and link info can be stored in a database and the actual image can be uploaded to a directory or put in the db if you know how. Java Server Pages (O'Reilly) has the image upload code you need.
    Am I on track here?
    Brad

  • Export to RTF does not include images???

    Hi,
    I ve written a script which converts a batch of indesign files to RTF files...I m using this script in a plugin in InDesign CS3 on MAC OS.
    I ve used this:
    exportFile(ExportFormat.rtf, f );
    But the converted .rtf files does not include the images present in the .indd files...
    what modification should be done to include images? is it possible?
    Someone pls guide me...
    Thanks.

    No, that's not possible. The best you can do is to replace the images with their file names, then import those images in the application that you send the RTF files to.
    Peter

  • Send html page (with images) using sockets

    I am trying to implement http and am coding this using sockets. So it is a simple client-server set up where the browser queries my server for a webpage and it should be shown. The html itself is fine, but I can't get any of the images to show up! All of my messages give me a status "200 OK" for the images, so I cant understand what my problem is!
    Also, is the status and header lines supposed to be shown in the browser? I didnt think so but it keeps showing up when I query a webpage.
    Please help!
    import java.io.* ;
    import java.net.* ;
    import java.util.* ;
    public final class WebServer
         public static void main(String argv[]) throws Exception
              // Set the port number.
              int port = 8888;
              // Establish the listen socket.
              ServerSocket ssocket = new ServerSocket(port);
              // Establish client socket
              Socket csocket = null;
              // Process HTTP service requests in an infinite loop.
              while (true)
                   // Listen for a TCP connection request.
                   // (note: this blocks until connection is made)
                   csocket = ssocket.accept();     
                   // Construct an object to process the HTTP request message.
                   HttpRequest request = new HttpRequest(csocket);
                   // Create a new thread to process the request.
                   Thread thread = new Thread(request);
                   // Start the thread.
                   thread.start();
    final class HttpRequest implements Runnable
         final static String CRLF = "\r\n";
         Socket socket;
         // Constructor
         public HttpRequest(Socket socket) throws Exception
              this.socket = socket;
         // Implement the run() method of the Runnable interface.
         public void run()
              try
                   processRequest();
              catch (Exception e)
                   System.out.println(e);
         private static void sendBytes(FileInputStream fis, OutputStream os)
         throws Exception
            // Construct a 1K buffer to hold bytes on their way to the socket.
            byte[] buffer = new byte[1024];
            int bytes = 0;
           // Copy requested file into the socket's output stream.
           while((bytes = fis.read(buffer)) != -1 ) {
              os.write(buffer, 0, bytes);
              os.flush();
         private static String contentType(String fileName)
              fileName = fileName.toLowerCase();
              if(fileName.endsWith(".htm") || fileName.endsWith(".html")) {
                   return "text/html";
              if(fileName.endsWith(".jpg") || fileName.endsWith(".jpeg") ) {
                   return "image/jpeg";
              if(fileName.endsWith(".gif")) {
                   return "image/gif";
              return "application/octet-stream";
         private void processRequest() throws Exception
              // Get a reference to the socket's input and output streams.
              InputStream is = socket.getInputStream();
              DataOutputStream os = new DataOutputStream(socket.getOutputStream());
              // Set up input stream filters.
              InputStreamReader ir = new InputStreamReader(is);
              BufferedReader br = new BufferedReader(ir);
              // Get the request line of the HTTP request message.
              String requestLine = br.readLine();
              // Display the request line.
              System.out.println();
              System.out.println(requestLine);
              // Get and display the header lines.
              String headerLine = null;
              while ((headerLine = br.readLine()).length() != 0)
                   System.out.println(headerLine);
              // Extract the filename from the request line.
              StringTokenizer tokens = new StringTokenizer(requestLine);
              tokens.nextToken();  // skip over the method, which should be "GET"
              String fileName = tokens.nextToken();
              // Prepend a "." so that file request is within the current directory.
              fileName = "C:\\CSM\\Networking\\Project1" + fileName;
              // Open the requested file.
              FileInputStream fis = null;
              boolean fileExists = true;
              try {
                   fis = new FileInputStream(fileName);
              } catch (FileNotFoundException e) {
              fileExists = false;
              // Construct the response message.
              String statusLine = null;
              String contentTypeLine = null;
              String entityBody = null;
              if (fileExists) {
              statusLine = "200 OK" + CRLF;
              contentTypeLine = "Content-type: " +
                   contentType( fileName ) + CRLF
                   + "Content-length: " + fis.available() + CRLF;
              else {
              statusLine = "404 Not Found" + CRLF;
              contentTypeLine = "Content-type: text/html" + CRLF;
              entityBody = "<HTML>" +
                   "<HEAD><TITLE>Not Found</TITLE></HEAD>" +
                   "<BODY>Not Found</BODY></HTML>";
              // Send the status line.
              os.writeBytes(statusLine);
              System.out.println(statusLine);
              // Send the content type line.
              os.writeBytes(contentTypeLine);
              System.out.println(contentTypeLine);
              // Send a blank line to indicate the end of the header lines.
              os.writeBytes(CRLF);
              // Send the entity body.
              if (fileExists)     
                   sendBytes(fis, os);
                   fis.close();
              // file does not exist
                     else
                   os.writeBytes(entityBody);
              // Close streams and socket.
              os.flush();
              os.close();
              br.close();
              socket.close();
    }

    ok. i figured it out. STUPID mistake. i forgot to include "HTTP/1.1" in my status line!!!

  • Saving a web page including images for offline viewing

    Yes, I can view and save the HTML for a web page. But is there a utility or technique which will enable me to pull all the images and enable me to view the page without distortion when offline?
    G5 iMac 1.8Ghz   Mac OS X (10.4.8)  

    Hi Morley!
    This may work for some web pages, but not all.
    Navigate to the webpage.
    From the browser File menu, select Save As.
    In the window that opens, enter a new title if desired, save to Desktop, and at Save as:, select HTML Complete.
    When completed, click once on the html file, not the folder that contains the images, to highlight.
    Depress the  Command + I keys, to Get Info.
    Click the Contextual Triangle for Open with:.
    Select TextEdit.
    The page should now open on your Desktop.
    This may not work for all websites.
    You can trash the image folder if you want.
    ali b

  • How to export PDF to HTML with JPEG image format (not PNG)?

    Hello,
    When I export a ".pdf" file to ".html", using Acrobat 11 Pro, the program creates a subdirectory with ".png" image files.
    I need these images to be in the ".jpg" format, not ".png".
    Do any of you know how to change this setting? I am assuming that it is not a permanent default...
    Thank you,
    brivera0

    Alas, I checked on my Acrobat XI before posting. That setting was removed.

  • Load html page (google image) inside panel?

    Is it possible to create a button  or some way to load a webpage (like google images) inside a panel?

    You can only implement this with HTML Widget.

  • Export to pdf of page with MIME images and analysis

    Hi,
    I have created a web application template where i have a table in its first row i further created a table and designed a static page including images from mime repository, in second row included a analysis based on a query, and in third row a button with functionality export-to-pdf. When i execute this template it shows my static page and output of my analysis properly, when i click on export-to-pdf button it prompts for a pdf setting dialog page when i open my pdf i got the following error. ' There was an error opening this document. This file cannot be opened it has no page'. Can anyone please tell me what this error is and what is its root cause how to rectify that ?
    Thanks

    Waiting for a reply !

  • How do I publish an existing HTML page?

    Hello,
    This might sound a bit basic...possibly because I am not that smart...
    I have an NT file system - with in it there is an HTML page with icons and other html pages that are linked (relative links). There are other .html pages and images needed in this area.
    I have set up a community and want to point to the existing HTML page on that file system - so when a client goes to that community, that HTML page opens up automatically in a portlet.
    The path if Q:\Public\Health\Mainpage.html
    I want mainpage.html to open up with the Health Community is selected.
    So I made the community, and community page. The was going to place a publisher portlet on it - but do not want the clients to se e a blank page with a portlet linking to Q:\Public\Health\Mainpage.html, but instead see Mainpage.html.
    What is the best way of doing this - set up a web service? If so - which one?
    Suggestions for a pre-exisiting website residing on a file system?
    Thanks,
    V
    Computers are like Old Testament gods; lots of rules and no mercy. ~Joseph Campbell
    Edited by vivekvp at 05/07/2008 10:19 AM

    I would serve up the documents with IIS or Apache and create a standard web service remote portlet to the document.
    Another option is to copy and paste the contents of the document into a content item with a long text property. Then use a presentation template which just emits the html from the content item.
    Create a published content portlet for that content item. The good part is that you can edit the document in the portal. The downside is that if someone edits the mainpage.html on the q drive, you will have to copy their changes back into the content item.

  • How to send HTML page via an email

    Hi..
    I wanna send HTML page with images via an email, it should not go as an attachment.
    Is there any Tool or Software available to send HTML Pages via email.
    i just wanna send my advertisement as a HTML page via email
    So plz. help me out

    Java Message Service (JMS) For more info u can visite http://java.sun.com/products/jms/tutorial/
    It is usefull only when u r using some Application servers like WebLogic, WebSpeher, or JBoss
    Bye

  • How do I get the default zooming to not include images or how can I resize everything but actual images?

    I have a problem with the default zooming in firefox Using default layout.css.devPixelsPerPx=-1 or layout.css.devPixelsPerPx=1.5 makes all UI and webpage text look nice and readable, spacing is fine and everything. The only problem is that images are ALSO zoomed which is ridiculous. I guess I would like a way to scale everything BUT images. I have a hi-resolution monitor and think it's silly to have to zoom out every image on a web page just because I wanted text and the UI enlarged. I tried NoSquint using 65% for pages and 150% for text only, but that had the issue of making ONLY text scaled up and not spacing and other stuff (google searches looked even more silly using only 6 cm to the left, rows too close overwrote themselves etc.)

    That is not possible.
    The layout.css.devPixelsPerPx pref affects everything in Firefox, both the user interface and the browsing area.
    'Full page zoom' affects all elements on web pages including images and 'zoom text only' affects the text and can cause issues with text overlapping or disappearing similar to setting a minimum font size because the containing element keeps the same dimensions.
    You can't just exclude the images from zoom and have the containers expand automatically.

  • Load Html page in Div.

    Sir,
    I have main page which have menu on left hand and on right hand i have div in which i want to display information on clicking of menu all html pages store in subfolder and these html page having images which is also store in different subfolder. when i have click on link than it will display html page in div but it will not display images and page format is completly out and not display text also but when i have open html page in browser than page display perfectly but in div it will not displsy correctly.
    Pleae help.
    Rajeev.

    Sir,
    If there is any path problem than if i have access that page which i want to display in div also having problem but it will display perfectly here is the link
    http://www.sgcricket.com/html/test/sgcricket/html/cricket_bat/kingcobra.html
    And i want to display that page in div. and i have follow DW path system i will not enter any path manully.
    Second for long path i have upload that page only for testing purpose because we already haveing working website www.sgcricket.com and latter on when my website complete than i have to replace that website with current one which is having problem.
    Please help.
    Rajeev.

  • Porting existing HTML Pages to Portal

    WE have an existing site which has static HTML pages with images etc.
    Would like to port it to 9ias Portal.
    Can someone tell me a simple way to do it.
    Specifically how do we take care of paths of images in the html pages.
    Quick answer would be appreciated.

    Dhiren,
    Have you looked at the Zip item type?
    You should be able to zip up your existing directory and then load the zip file into Oracle9iAS Portal. You will then have the ability to extract the zip which will add all the files in the zip as items.

  • How to Export Team Site Site Pages to .aspx and for subsequent upload to other Team Site and Web Part Customisation included. (Powershell)

    Hi guys,
    Can i please technically know how to export an .aspx file (in Site Pages library of a team site) to local file?
    Basically, SharePoint Designer has this feature "Export File"
    i Need exactly the same feature that can be done in Powershell
    I tried the following
    $web = get-spweb "MY URL"
    $folder = $web.GetFolder("SitePages")
    $files = $folder.files
    #trying to download the first file
    [System.IO.File]::WriteAllBytes("C:\\LocalPath",$files[0].OpenRead(),$true)
    The file exported via this method is Clean HTML without the Web Part Customisation!
    I NEED the web part customisation in the exported files.
    Sample downloaded via above script
    <!-- Cropping -->
    <tr>
    <td id="_invisibleIfEmpty" name="_invisibleIfEmpty" valign="top" height="100%"> <WebPartPages:WebPartZone runat="server" Title="loc:LeftColumn" ID="LeftColumn" FrameType="TitleBarOnly"/> </td>
    <td id="_invisibleIfEmpty" name="_invisibleIfEmpty" valign="top" height="100%"> <WebPartPages:WebPartZone runat="server" Title="loc:MiddleColumn" ID="MiddleColumn" FrameType="TitleBarOnly"/> </td>
    <td id="_invisibleIfEmpty" name="_invisibleIfEmpty" valign="top" height="100%"> <WebPartPages:WebPartZone runat="server" Title="loc:RightColumn" ID="RightColumn" FrameType="TitleBarOnly"/> </td>
    </tr>
    <!-- Cropping -->
    I tried using WebRequest, it returns the  End HTML, which is not working too.
    Please if anyone has done this? Or is there any SharePoint Designer Developer here and is willing to share how to perform the export in SharePoint Designer via Powershell? API available?
    Much Appreciated!
    Cheng

    Hi,
    According to your post, my understanding is that you wanted to export Team Site Site Pages to .aspx and for subsequent uploaded to other Team Site and Web Part Customisation included using Powershell.
    You can export a specific file or object from the Export-SPWeb context.
    Export-SPWeb -identity "http://sharepoint" -ItemUrl "/default.aspx"  -Path "c:\default.aspx"
    Import-SPWeb -identity "http://sharepoint" -Path "C:\default.aspx"
    Here is a similar thread for you to take a look at:
    http://sharepoint.stackexchange.com/questions/56664/how-to-download-a-sharepoint-aspx-page-from-server-using-powershell
    More information:
    http://technet.microsoft.com/en-us/library/ee428301(v=office.14).aspx
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Not showing image in basic copy gif image icon and place on html page

    Trying to do a basic copy gif image icon and place it on a basic html page.
    The image shows up in my local page and shows on remote side but when I go to view in browser it does not show as a image. It shows the border but no image.
    The directions were (working with windows xp and IE8)
    Download the image to your C:\temp folder.
    4. Copy the gif file from your C:\temp folder and paste it in the same folder where your .html or .asp file is.
    I copied the image with right click save as in many different areas of computer. I even put on desktop.
    I add image and it shows on the site I am working in but when putting to remote side it does not view as an image on the browser.
    I have cleared cashe as well as pressed cntrl/refresh and still nothing.
    Other images work and show.
    on-line-vacations.com
    Thanks!

    Basic assumptions:
    You have Defined a site.
    All files reside within the defined site (including image files)
    All files use the appropriate file extensions, for example, image.gif
    You have saved and uploaded all site files to your server.
    You are EXACTLY naming the source image (no errant capital letters) in the link.
    If your other images are linking properly and showing, delete this image and insert it again (or re-link it to the image file within your site structure).
    Z

Maybe you are looking for

  • Manipulate Product/Service Selection at start of SC (SRM 7.0)

    Hello, I want to manipulate the possibility of selecting  'Product' or 'Service' at the beginning of SC creation. Normally I would do this with BAdI BBP_SC_MODIFY_UI. But this doesn't help. Is there any other place which needs to be considered or che

  • 1 eBS source - 2 Planning targets - how to split data?

    hi I am using FDM ERPI to load eBS data to Hyperion Planning (eBS 11.5 and EPM 11.1.2.1). I have to load data into 2 Planning databases (which are in the same Planning application), so 2 target adapters and two locations. The two locations have the s

  • Java.lang.ClassNotFoundException: long

    I'm migrating a Weblogic Integration 8.5 sp5 application to Weblogic Integration 9.2 MP1. The application makes call to different JPDs through JPDProxies in java service class as follow: WorkflowRequest wfAdmissibility = (WorkflowRequest)JpdProxyImpl

  • Tim Dashwood's presentation at FCPUG SuperMeet 2010

    Tim Dashwood had a nice introductory presentation at FCPUG SuperMeet, during the NAB 2010. It dealt with low cost entry into the 3D stereoscopy, and his time was cut to only 15 minutes, but it was very efficiently presented, so lot of good informatio

  • Screen saver won't come up

    First of all, ...how do I know if my mac is Intel or PPC?  I bought it 4 days ago from the apple store so whatever they're selling now a days is what I got.  27" brand new Imac straight out of the box.   Ok, ..now,...since the day I got it, the scree