Having a image alignment problem using clearbox

Hi,
I'm having an image alignment problem. I cannot figure it out. I'm using the clearbox - lightbox dreamweaver widget. Using Dreamweaver CS6.
Actual page located here. Any help would be appreciated.
http://dirtysouthink.com/gallery/dustin2.html

This has very little to do with Dreamweaver. DW is merely a tool to assist you in building a web site. It is purely a matter of styling (CSS).
When I look at the structure, I see
BODY-CONTENT (width: 490px)
     GALLERY (width: 452px)
          CONTAINER (width: 500px)
               ITEM (width: 150px)
From this I can deduce that:
GALLERY will fit inside BODY-CONTENT
CONTAINER will NOT fit inside GALLERY or BODY-CONTENT
ITEM will fit three times into CONTAINER
To start with, I would reduce the size of the CONTAINER so that it fits inside of its parent. Then I would adjust the width of the ITEM so that only two of them fit inside of the CONTAINER.

Similar Messages

  • Image alignment problem in Fireworks/Dreamweaver

    Hello!
    For my webbie, I have made a "large" image using Photoshop and brought it into Fireworks (I'm using CS4 programs btw). I sliced up the image according to the table I wanted and exported each section as .png files (it has to be png for various reasons). My image size is 600px h by 800px w.
    So, I create a table in Dreamweaver and in each cell, I insert the .png files.
    Now, my problem is that
    some of the cells do not align properly (in two places) and ends up shifing the entire row over so it overextends.
    You can see this problem on the two screen caps that I have:
    http://i993.photobucket.com/albums/af60/CrescentChi/Picture2.png
    and
    http://i993.photobucket.com/albums/af60/CrescentChi/Picture1.png
    Now, I know the logical thing is to check to make sure each row adds up to 800px.
    I have done this already and here are the measurements for each cell:
    For row 2 I have: 341, 130, and 329.
    For row 4 I have: 166, 93, 93, 96, 93, 95, and 164.
    And as you can see, these add up to 800.
    I just end up with some kind of space in between my cells...
    the pictures I have provided shows what the property palette shows when I click on either a cell or one of the spaces in between the cells.
    Do you know what I'm doing wrong?
    Thanks for your time of looking and help! <3

    I did get it from DW.... I got it in the code view.
    I did my testing one, but I'm still getting the same problem (nonetheless I'll put the code I used for it down below).
    After when I hit File > New in DW I get a flow chart of options (although it goes sideways; I'm using a MAC too btw).
    The best choices I get are...
    Blank Page > HTML > none (this refers to layout)
    Blank Template > HTML template > none
    I've been using the first one. There is also a scroll option for DocType (that only appears when I use the Blank Page option). I use the default one they give me: XHTML 1.0 Transitional but there are others...
    None, HTML 4.01 Transitional, HTML 4.01 Strict, XHTML 1.0 Strict, XHTML 1.1, and XHTML Mobile 1.0
    Maybe something is wacky with my DW program? Honestly, I am still a bit new to this (using DW and using CSS). I'll go back to my DW book and see if what it says. I'll also try and re-install my DW program if I can find the disc....
    Thanks so much for your time.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    body {
        background-image: url(Images/Pink%20Frost.jpg);
        background-repeat: repeat;
    -->
    </style></head>
    <body>
    <table width="800" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td colspan="7"><img src="Images/Slices/CBSO_r1_c1.png" width="800" height="370" /></td>
      </tr>
      <tr>
        <td colspan="3"><img src="Images/Slices/CBSO_r2_c1.png" width="340" height="50" /></td>
        <td><img src="Images/Slices/CBSO_r2_c2.png" width="135" height="50" alt="Home" /></td>
        <td colspan="3"><img src="Images/Slices/CBSO_r2_c3.png" width="325" height="50" /></td>
      </tr>
      <tr>
        <td colspan="7"><img src="Images/Slices/CBSO_r3_c1.png" width="800" height="60" /></td>
      </tr>
      <tr>
        <td><img src="Images/Slices/CBSO_r4_c1.png" width="165" height="60" /></td>
        <td><img src="Images/Slices/CBSO_r4_c2.png" width="94" height="60" alt="About" /></td>
        <td><img src="Images/Slices/CBSO_r4_c3.png" width="94" height="60" alt="Gallery" /></td>
        <td><img src="Images/Slices/CBSO_r4_c4.png" width="94" height="60" alt="Blog" /></td>
        <td><img src="Images/Slices/CBSO_r4_c5.png" width="94" height="60" alt="Shop" /></td>
        <td><img src="Images/Slices/CBSO_r4_c6.png" width="94" height="60" alt="Links" /></td>
        <td><img src="Images/Slices/CBSO_r4_c7.png" width="165" height="60" /></td>
      </tr>
      <tr>
        <td colspan="7"><img src="Images/Slices/CBSO_r5_c1.png" width="800" height="60" /></td>
      </tr>
    </table>
    </body>
    </html>

  • Image border problem using JAI

    I've written some very simple code to scale an image down to a small
    thumbnail in JPG format but the quality is quite horrible. Is there a way of making it look nicer?
    src = JAI.create("fileload","filepath")
    ParameterBlock params = new ParameterBlock();
    params.addSource(src);
    params.add(xScale);//x scale factor
    params.add(yScale);//y scale factor
    params.add(0.0F);//x translate
    params.add(0.0F);//y translate
    params.add(Interpolation.getInstance(Interpolation.INTERP_NEAREST));
    dest = JAI.create("scale", params,null);
    I switched to InterpolationBicubic, instead of Interpolationnearest the quality was much better but the resulting image contained borders.
    could some one tell me is there any other way to get better and nicer results.

    Yes you can fix the border problem by setting a render hint to change the way the borders are handled. Something like the following will do the trick.
    You can also use BORDER_WRAP instead of BORDER_COPY, both seem to have a similar result. Mind you I am still very dissapointed with the quality of the bicubic resampling in JAI, but at least this will fix the problem with the borders.
    RenderingHints rh = new RenderingHints(JAI.KEY_BORDER_EXTENDER, BorderExtender.createInstance(BorderExtender.BORDER_COPY));
    dest = JAI.create("scale", params,rh);

  • Alignment problem using TOP_OF_PAGE w/cl_gui_alv_grid

    Hi,
    I copied ZRNBCALV_EDIT_03 and made the following changes:
    1. In class lcl_event_receiver, added a public method:
    public section.
        methods:
          handle_data_changed
             for event data_changed of cl_gui_alv_grid
                 importing er_data_changed,
          top_of_page
             for event top_of_page of cl_gui_alv_grid
               importing e_dyndoc_id.
    Implementation of top_of_page method as follows:
      method top_of_page.
        perform print_top_of_page.  " using E_DYNDOC_ID.
      endmethod.                    "top_of_page
    FORM PRINT_TOP_OF_PAGE .
      types:
        begin of ty_itab,
          werks type vbap-werks,
          lgort type vbap-lgort,
          bwtar type vbap-bwtar,
          inv  type i, " vbap-menge,
          ord  type i, " vbap-menge,
          delv type i, " vbap-menge,
        end   of ty_itab.
      DATA:
            LV_QTY_O(13)   TYPE C,       "Inventory
            LV_QTY_C(13)   TYPE C,       "Confirmed Orders
            LV_QTY_D(13)   TYPE C,     "confirmed Delivery
            LS_ITAB TYPE TY_itab,
            lt_itab type standard table of ty_itab.
      data:
            lv_space type i,
            lv_text(255) type c.
      CONSTANTS C_UNIT LIKE MARA-MEINS VALUE 'EA'.
      field-symbols:
                     <ls_itab> type ty_itab.
      ls_itab-werks = 'ML01'.
      ls_itab-lgort = '1000'.
      ls_itab-bwtar = SPACE.
      LS_ITAB-inv = 0.
      ls_itab-ord = 0.
      ls_itab-delv = 0.
      append ls_itab to lt_itab.
      clear lS_itab.
      ls_itab-werks = 'ABCD'.
      ls_itab-lgort = '1000'.
      ls_itab-bwtar = SPACE.
      LS_ITAB-inv = 1.
      ls_itab-ord = 0.
      ls_itab-delv = 0.
      append ls_itab to lt_itab.
      clear lS_itab.
      ls_itab-werks = 'ABCD'.
      ls_itab-lgort = '1000'.
      ls_itab-bwtar = 'VALUATED'.
      LS_ITAB-inv = 1.
      ls_itab-ord = 0.
      ls_itab-delv = 0.
      append ls_itab to lt_itab.
      clear ls_itab.
      ls_itab-werks = 'IJ01'.
      ls_itab-lgort = '1000'.
      ls_itab-bwtar = SPACE.
      LS_ITAB-inv = 0.
      ls_itab-ord = 0.
      ls_itab-delv = 0.
      append ls_itab to lt_itab.
      clear ls_itab.
          CALL METHOD GO_HTML->ADD_GAP.
          perform add_text_label using 'Material'.
          MOVE:  'ABCD456' TO LV_TEXT.
          perform add_gap using 1.
          perform add_text using lv_text.
          CALL METHOD GO_HTML->NEW_LINE.
          CALL METHOD GO_HTML->ADD_GAP.
          perform add_text_label using 'Plant'.
          perform add_gap using 5.
          perform add_text_label using 'Location'.
          perform add_gap using 5.
          perform add_text_label using 'Valuation'.
          perform add_gap using 4.
          perform add_text_label using 'Inventory'.
          perform add_gap using 2.
          perform add_text_label using 'Orders'.
          perform add_gap using 2.
          perform add_text_label using 'Delivery'.
       LOOP AT lt_ITAB ASSIGNING <ls_itab>.
        WRITE <ls_itab>-ord TO LV_QTY_O UNIT C_UNIT RIGHT-JUSTIFIED.
        WRITE <ls_itab>-inv TO LV_QTY_C UNIT C_UNIT RIGHT-JUSTIFIED.
        WRITE <ls_itab>-delv TO LV_QTY_D   UNIT C_UNIT RIGHT-JUSTIFIED.
        CALL METHOD GO_HTML->NEW_LINE.
          lv_text = <ls_itab>-WERKS.
          perform add_text_label using lv_text.
          lv_text = <ls_itab>-lgort.
          condense lv_text no-gaps.
          perform add_gap using 5.
          perform add_text_label using lv_text.
          lv_text = <ls_itab>-bwtar.
          condense lv_text no-gaps.
          perform add_gap using 7.
          perform add_text_label using lv_text.
          if <ls_itab>-bwtar is initial.
            lv_space = 7 + 8.  " 8 for VALUATED
          endif.
          lv_text = LV_QTY_O.
          condense lv_text no-gaps.
          lv_space = lv_space + 12.
          perform add_gap using lv_space.
          perform add_text using lv_text.
          lv_text = LV_QTY_c.
          condense lv_text no-gaps.
          lv_space = 17.  " lv_space.  " + 5.
          perform add_gap using lv_space.
          perform add_text using lv_text.
          lv_text = LV_QTY_d.
          condense lv_text no-gaps.
          perform add_gap using lv_space.
          perform add_text using lv_text.
      ENDLOOP.
      CREATE OBJECT GO_VIEW
        EXPORTING
         SHELLSTYLE         =
          PARENT             = go_contnr_top.
      go_html->html_control = go_view.
      CALL FUNCTION 'REUSE_ALV_GRID_COMMENTARY_SET'
        EXPORTING
          DOCUMENT       = go_html
          BOTTOM         = space
      IMPORTING
        LENGTH         =
      CALL METHOD GO_HTML->MERGE_DOCUMENT.
      CALL METHOD GO_HTML->DISPLAY_DOCUMENT
        EXPORTING
          REUSE_CONTROL      = 'X'
         REUSE_REGISTRATION =
         CONTAINER          =
          PARENT             = go_contnr_top
       EXCEPTIONS
         HTML_DISPLAY_ERROR = 1
         others             = 2
    ENDFORM.                    " PRINT_TOP_OF_PAGE
    In pbo, replaced cl_gui_custom_container with docking_container and cl_gui_easy_split container, cl_dd_document
    call method g_grid->list_processing_events
         exporting
                I_EVENT_NAME = 'TOP_OF_PAGE'.
    perform print_top_of_page.
    rest of the code from bcalv_edit_03 as it is
    and cl_gui_easy_split container, cl_dd_document
    call method g_grid->list_processing_events
         exporting
                I_EVENT_NAME = 'TOP_OF_PAGE'.
    perform print_top_of_page.
    rest of the code from bcalv_edit_03 as it is
    if u run the output that comes is not aligned.
    Appreciate any help
    Thanks
    Rajeev

    Hi,
    I copied ZRNBCALV_EDIT_03 and made the following changes:
    1. In class lcl_event_receiver, added a public method:
    public section.
    methods:
    handle_data_changed for event data_changed of cl_gui_alv_grid importing er_data_changed,
    top_of_page for event top_of_page of cl_gui_alv_grid importing e_dyndoc_id.
    Implementation of top_of_page method as follows:
    method top_of_page.
      perform print_top_of_page.
    endmethod. "top_of_page
    FORM PRINT_TOP_OF_PAGE .
    types:
    begin of ty_itab,
    werks type vbap-werks,
    lgort type vbap-lgort,
    bwtar type vbap-bwtar,
    inv type i,
    ord type i,
    delv type i,
    end of ty_itab.
    DATA: LV_QTY_O(13) TYPE C, "Inventory
    LV_QTY_C(13) TYPE C, "Confirmed Orders
    LV_QTY_D(13) TYPE C, "confirmed Delivery
    LS_ITAB TYPE TY_itab,
    lt_itab type standard table of ty_itab.
    data:
    lv_space type i, lv_text(255) type c.
    CONSTANTS C_UNIT LIKE MARA-MEINS VALUE 'EA'.
    field-symbols: type ty_itab.
    ls_itab-werks = 'ML01'.
    ls_itab-lgort = '1000'.
    ls_itab-bwtar = SPACE.
    LS_ITAB-inv = 0.
    ls_itab-ord = 0.
    ls_itab-delv = 0.
    append ls_itab to lt_itab.
    clear lS_itab.
    ls_itab-werks = 'ABCD'.
    ls_itab-lgort = '1000'.
    ls_itab-bwtar = SPACE.
    LS_ITAB-inv = 1.
    ls_itab-ord = 0.
    ls_itab-delv = 0.
    append ls_itab to lt_itab.
    clear lS_itab.
    ls_itab-werks = 'ABCD'.
    ls_itab-lgort = '1000'.
    ls_itab-bwtar = 'VALUATED'.
    LS_ITAB-inv = 1.
    ls_itab-ord = 0.
    ls_itab-delv = 0.
    append ls_itab to lt_itab.
    clear ls_itab.
    ls_itab-werks = 'IJ01'.
    ls_itab-lgort = '1000'.
    ls_itab-bwtar = SPACE.
    LS_ITAB-inv = 0.
    ls_itab-ord = 0.
    ls_itab-delv = 0.
    append ls_itab to lt_itab.
    clear ls_itab.
    CALL METHOD GO_HTML->ADD_GAP.
    perform add_text_label using 'Material'.
    MOVE: 'ABCD456' TO LV_TEXT.
    perform add_gap using 1.
    perform add_text using lv_text.
    CALL METHOD GO_HTML->NEW_LINE.
    CALL METHOD GO_HTML->ADD_GAP.
    perform add_text_label using 'Plant'.
    perform add_gap using 5.
    perform add_text_label using 'Location'.
    perform add_gap using 5.
    perform add_text_label using 'Valuation'.
    perform add_gap using 4.
    perform add_text_label using 'Inventory'.
    perform add_gap using 2.
    perform add_text_label using 'Orders'.
    perform add_gap using 2.
    perform add_text_label using 'Delivery'.
       LOOP AT lt_ITAB ASSIGNING <ls_itab>.
        WRITE <ls_itab>-ord TO LV_QTY_O UNIT C_UNIT RIGHT-JUSTIFIED.
        WRITE <ls_itab>-inv TO LV_QTY_C UNIT C_UNIT RIGHT-JUSTIFIED.
        WRITE <ls_itab>-delv TO LV_QTY_D   UNIT C_UNIT RIGHT-JUSTIFIED.
        CALL METHOD GO_HTML->NEW_LINE.
          lv_text = <ls_itab>-WERKS.
          perform add_text_label using lv_text.
          lv_text = <ls_itab>-lgort.
          condense lv_text no-gaps.
          perform add_gap using 5.
          perform add_text_label using lv_text.
          lv_text = <ls_itab>-bwtar.
          condense lv_text no-gaps.
          perform add_gap using 7.
          perform add_text_label using lv_text.
          if <ls_itab>-bwtar is initial.
            lv_space = 7 + 8.  " 8 for VALUATED
          endif.
          lv_text = LV_QTY_O.
          condense lv_text no-gaps.
          lv_space = lv_space + 12.
          perform add_gap using lv_space.
          perform add_text using lv_text.
          lv_text = LV_QTY_c.
          condense lv_text no-gaps.
          lv_space = 17.  " lv_space.  " + 5.
          perform add_gap using lv_space.
          perform add_text using lv_text.
          lv_text = LV_QTY_d.
          condense lv_text no-gaps.
          perform add_gap using lv_space.
          perform add_text using lv_text.
      ENDLOOP.
      CALL METHOD GO_HTML->DISPLAY_DOCUMENT
        EXPORTING
          REUSE_CONTROL      = 'X'
    *      REUSE_REGISTRATION =
    *      CONTAINER          =
          PARENT             = go_contnr_top
    *    EXCEPTIONS
    *      HTML_DISPLAY_ERROR = 1
    *      others             = 2
    ENDFORM.                    " PRINT_TOP_OF_PAGE
    In pbo, replaced cl_gui_custom_container with docking_container and
    cl_gui_easy_split container, cl_dd_document
    call method g_grid->list_processing_events
    exporting
    I_EVENT_NAME = 'TOP_OF_PAGE'.
    perform print_top_of_page.
    rest of the code from bcalv_edit_03 as it is.
    if u run the output that comes is not aligned.
    Appreciate any help
    Thanks
    Rajeev

  • Having network printer connection problems using a Macbook Pro

    I hope a "greater mind" can suggest a solution to the following problem:
    Up until 2 days ago, I was successfully connected to the network printer at my office using both my Macbook Pro at work and at home (both wirelessly, OS 10.6.8). From yesterday, however, I now only receive the following message when I send a file for printing: "network host (and then its IP address) is busy. Will try again in 10 seconds."
    All right, my system admin. advised me to re-install the printer on both computers.  I did. In printer set-up, 1) Protocol: Line Printer Daemon - LPD; 2) Address: the IP address of the printer; 3) Queue: secinmac. This is the queue name specifically for Mac use and given to us by the company who installed our network printer; 4) Name: we use the printer's IP address; 5) Location: left blank; 6) Print Using: Generic PCL Laser Printer. Further for 6), in the "installable options" dialog box, I click "Duplexer". Then, finally, I click "ADD". The printer is added.
    However, when I try to print a file, I continue to get the "busy" message.  The file spools for about 3%, and then the "busy message" appears, and I cannot print.  You can imagine how frustrating this is when the problem has arisen from one day to the next!  A colleague who also uses a MacBook Pro sent a file to print on the network printer today, and he had no problems!  I, however, have no success !
    Any ideas that can help me?  Thanks, in advance!

    Thank you for taking the time to respond.
    Yes, I tried this when I was reading a bit of Apple communities history on this matter, and it did not work.  I also tried this, and then rebooted my Mac, but to no avail!  While I was at the office today, my system admin also logged into our network and tried to get something to print on his Mac, but he now has the same problem as I do.
    He gets the "busy message", too !
    I'll try to see if I can get a solution from APPLE by going through my support service agreement.....From reading the history on this issue, I would have thought that APPLE would have worked on this to come up with a fix by now...!
    Thank you again for your suggestion!  Cheers.

  • Having one image below another using child index

    I'm not too familiar with how I can use the getChildIndex() along with an if statement in a mouse_move event to make sure one image is always above the other or one is always on the bottom

    Something like this..?.. (not sure what your intentions are)...
    if(this.getChildIndex(childUnderName) < this.getChildIndex(childOverName) ){
         // the under one is under
    } else {
         // the under one is not under

  • Image aligned problem - small gap between images

    Can anyone spot what is causing the small gap between the
    images in this
    page:
    http://dwayne.compasslearning.com/index.html
    see the top middle image is pushed up to the very top of the
    window where it
    should have a small space at the top and then it has a gap at
    the bottom
    where there should be no space or gap?
    Any help is appreciated.
    Thanks.

    Please disregard...I figured it out.
    Thanks.
    "-D-" <[email protected]> wrote in message
    news:f2kqck$qot$[email protected]..
    > Can anyone spot what is causing the small gap between
    the images in this
    > page:
    >
    >
    http://dwayne.compasslearning.com/index.html
    >
    > see the top middle image is pushed up to the very top of
    the window where
    > it should have a small space at the top and then it has
    a gap at the
    > bottom where there should be no space or gap?
    >
    > Any help is appreciated.
    >
    > Thanks.
    >

  • How to read ZIP files(having PDFs,Image) using MQ Series link for R/3

    Hi,
    1)Is it possible to transfer a zip file (having an image or pdf) using IDocs in SAP 4.6C using MQ Series link for R/?
    Scenario: "MQ Series link for R/3" converts Business-Reports from a third-party software,into SAP IDocs.Each Business-Report contains one XML file and one ZIP file.
    2)Being on ABAP side,do I have to worry about how the zip file would be converted into IDocs?
    Detailed descrption:
    This scenario requires integration of a non-SAP software which talks in XML with SAP R/3(4.6C).The customer has decided to go with 'MQ Series link for R/3' (which integrates any non-SAP application running on IBM MQ Series to R/3,by converting data(in any format) into IDocs).He is not ready to go for XI.
    The Problem area is a functionality which requires the non-SAP software to send XML file along with an attached Zip file.So,XML document,basically,has a 'zippedFile' XML element having actual file in XML keyword 'file'.
    This XML document ideally, should be converted by the subsystem(MQSeries link for R/3) into IDocs i.e. into a stream which could be stored in a table on R/3 side and later, sent back to the non-SAP software through MQ Series link to be converted into zip-file again with corresponding pdfs,images.I want someone who has worked in a similar scenario to confirm this.

    Hi,
    I have a feeling I have posted this question in the wrong forum or maybe I will let you decide this.Any help would be appreciated (even the right forum name).
    My scenario requires integration of a non-SAP software which talks in XML with SAP R/3(4.6C).The customer has decided to go with 'MQ Series link for R/3' (which integrates any non-SAP application running on IBM MQ Series to R/3,by converting data(in any format) into IDocs).He is not ready to go for XI.
    The Problem area is a functionality which requires the non-SAP software to send XML file along with an attached Zip file.So,XML document,basically,has a 'zippedFile' XML element having actual file in XML keyword 'file'.
    This XML document ideally, should be converted by the subsystem(MQSeries link for R/3) into IDocs i.e. into a stream which could be stored in a table on R/3 side and later, sent back to the non-SAP software through MQ Series link to be converted into zip-file again with corresponding pdfs,images.I wanted someone who has worked in a similar scenario to confirm this.

  • Rendering problem using meteor inside an HTML overlay

    Hi everyone,
    I'm having a pretty specific problem, using meteor, and could really use some help.
    I've posted a detailed description of the problem on Stack Overflow, but the gist of it is this:
    Inside of Adobe DPS, the headless browser used in overlays on iOS 6.1.7 has some issues with meteor.
    specifically:
    1- every meteor page -- no matter if it's just the out-of-the-box Hello Meteor page -- generates a non-obtrusive error: TypeError: 'undefined' is not a function.  There's no stack trace, no other details (I used debuggify to discover the error)
    2- after redirect from the "accept permissions" page(s) using the Facebook Login Alternative flow, the page will not render.
    Neither of these errors occurs inside Mobile Safari, or Mobile Chrome on the iPad. 
    I believe this may be caused by some of the restrictions we're putting on the headless browser (hence error #1), and is a combination of the redirect having a hash (#) after the URL, and (maybe?) handlebars or some other js framework not loading in time.
    If anyone has any ideas -- either to solve this specific problem, or a workaround for me (I need to log in to facebook using meteor, inside a DPS article HTML overlay on an iPad) I'd really appreciate it.
    Article on Stack is here:  http://stackoverflow.com/questions/18808652/meteor-rendering-in-adobe-dps-overlay-after-re direct-from-facebook-login
    Thanks!
    Strack

    Unfortunately if something works in Mobile Safari that doesnt' mean it'll work in DPS, due to how the iOS Web Control works. It's kinda, but not exactly, the same as Mobile Safari, and sometimes things work in one but not the other. This isn't something we have control over either, it's just how the OS control works.
    Neil

  • Alignment problem on abap report after Unicode conversion

    Hi,
    I've recently convert my system to unicode. Now my user is complaining the aged debtor report (ABAP) is having a column alignment problem when displaying the Japanese character.
    I'm not sure what to do now. Have anyone experience this and let me know how can I sove the problem?
    /Eida

    Hi,
    you need to regenerate the data
    For this regeneration, you start the program RKETREGP with the parameter
    application class 'KK', subclass '01' and table name 'KKROBJ'.
    br, Guido

  • How to solve the image display problem in the iTunes Store

    Hi guys!
    I just want to give a work-around for all of you having the image display problem in the iTunes Store. In my case only the square images in the slider sections won't load:
    I had this in my last W7-installation and got it again in W8 after the first few weeks.
    There are a lot of reports about this problem out there and adhoc solutions like 'clear the cache' or 'reinstall and drink ice tea' that do not work. It is obviously a file request error. It is all about finding out which server addresses get blocked by your computer.
    Solution: Go to your firewall and your Anti-virus-program. There must be a whitelist option. In Kaspersky, check the web-options, the banner-options and the firewall-options, because the all have whitelists. The following addresses have to be whitelisted:
    *.apple
    *.mzstatic.apple.com.akadns.net
    *.mzstatic.com.edgesuite.net
    *.da1.akamai.net
    *.itunes.apple.com
    se.itunes.apple.com
    upp.itunes.apple.com
    ax.init.itunes.apple.com
    xp.apple.com
    *.mzstatic.com
    client-api.itunes.apple.com
    www.apple.com.edgekey.net
    www.isg-apple.com.akadns.net
    Press Ctrl + R in the iTunes Shop then and browse throught the music sections. All images should be displayed correctly now.
    If not, there might be more Apple servers involved in your case. You can find them by running a DNS sniffing tool like the DNS query sniffer by Nirsoft or Wireshark.

    Phone restarting randomly could be loose battery. Tighten by putting a small strip of electrical tape on the back edge.
    THE BITTERNESS OF POOR QUALITY, LINGERS LONG AFTER THE CHEAPNESS OF PRICE, IS SOON FORGOTTEN.

  • Good Morning.  I'm having a problem using both my Photoshop elements and premiere programs.  I've installed the programs, redeemed my code and entered the serial numbers, and created the adobe log-in.  I am able to open up the organizer without problems,

    Good Morning.  I'm having a problem using both my Photoshop elements and premiere programs.  I've installed the programs, redeemed my code and entered the serial numbers, and created the adobe log-in.  I am able to open up the organizer without problems, but when I try to open up the photo editor (either by trying to open up the program from the main menu, or right-clicking on a photo in the organizer to edit in elements), the program asks me to sign in to adobe (which I can do and it doesn't give an an "incorrect password" or log-in ID error) then accept the terms and conditions.  When I click to accept the terms and conditions, nothing happens and the editor fails to open.  Everytime I click on the program, I get this same "loop" of signing in and accepting T&C's, but the program fails to open.  Any advice?

      Premiere Elements 10 is now 64 bit, but not PSE10.
    Take a look at your scratch disk set-up and if you have a spare volume, allocate that first before the C drive. Elements use scratch disks when it gets low on RAM.
    Click image to enlarge
    Turn off face recognition and the auto-analyzer to improve performance.
    When editing photos or videos check the task manager to see what background processes may be running and end them temporarily if not needed.

  • Problem using images in a button skin

    So, I have a weird problem. I need to be able to see a button in design mode. My button is a custom component (a ButtonBase) with a skin. So, I left is a tiny bit of the default skin so that you can see what it looked like in design mode. Now, the paths to the images that will be used for the various states of the button are binded to strings passed from another subcomponent. There was no other way to get what we needed done, so it stays messy. Anyway, I don't get things to display correctly. Here's the code, and after an image for what I'm getting:
    [CODE]
    <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009"
                             xmlns:s="library://ns.adobe.com/flex/spark"
                             xmlns:fb="http://ns.adobe.com/flashbuilder/2009"
                             xmlns:mx="library://ns.adobe.com/flex/mx"
                             minWidth="21" minHeight="21" alpha.disabled="0.5"
                             preinitialize="initImageVars()" creationComplete="init()">
        <!-- host component -->
        <fx:Metadata>
            <![CDATA[
            [HostComponent("customComponents.ToggleButtonCustom")]
            ]]>
        </fx:Metadata>
        <!-- states -->
        <s:states>
            <s:State name="up" />
            <s:State name="down" />
            <s:State name="selected" />
            <s:State name="disabled" />
            <s:State name="over" />
        </s:states>
        <fx:Script>
            <![CDATA[        
                import mx.controls.Alert;
                /* First thing's first: we need to initialize our global and accessable components. */
                [Bindable]
                public var upButtonPath:String = "";
                [Bindable]
                public var downButtonPath:String = "";
                [Bindable]
                public var activeButtonPath:String = "";
                [Bindable]
                public var disabledButtonPath:String = "";
                [Bindable]
                protected var label:String = "";
                private function initImageVars():void
                    upButtonPath = "assets/" + this.hostComponent.upButtonPath;
                    downButtonPath = "assets/" + this.hostComponent.downButtonPath;
                    activeButtonPath = "assets/" + this.hostComponent.activeButtonPath;
                    disabledButtonPath = "assets/" + this.hostComponent.disabledButtonPath;
                private function init():void
                    /* Give values to public variables */
                    //upButtonPath = "Up.png";
                    //downButtonPath = "Down.png";
                    //activeButtonPath = "Active.png";
                    label = this.hostComponent.label;
                /* Define the skin elements that should not be colorized. For button, the graphics are colorized but the label is not. */
                static private const exclusions:Array = ["labelDisplay"];
                override public function get colorizeExclusions():Array {return exclusions;}
                override protected function initializationComplete():void
                    useChromeColor = true;
                    super.initializationComplete();
                private var cornerRadius:Number = 2;
            ]]>       
        </fx:Script>
        <!-- layer 1: fill -->
        <s:Rect id="fill" left="1" right="1" top="1" bottom="1" radiusX="2">
            <s:fill>
                <s:LinearGradient rotation="90">
                    <s:GradientEntry color="0xFFFFFF"
                                                     color.down="0xAAAAAA"
                                                     color.selected="0xBBBDBD"
                                                     alpha="0.85" />
                    <s:GradientEntry color="0xD8D8D8"
                                                     color.down="0x929496"
                                                     color.selected="0x9FA0A1"
                                                     alpha="0.85" />
                </s:LinearGradient>
            </s:fill>
        </s:Rect>
        <mx:ViewStack id="buttonImage" x="0" y="0"
                                    selectedIndex="0" selectedIndex.down="1" selectedIndex.selected="2"    selectedIndex.disabled="3">
            <s:NavigatorContent id="upState">
                <mx:Image source="{upButtonPath}" width="500" height="500" />
            </s:NavigatorContent>
            <s:NavigatorContent id="downState">
                <mx:Image source="{downButtonPath}" />
            </s:NavigatorContent>
            <s:NavigatorContent id="activeSate">
                <mx:Image source="{activeButtonPath}" />
            </s:NavigatorContent>
            <s:NavigatorContent id="disabledState">
                <mx:Image source="{disabledButtonPath}" />
            </s:NavigatorContent>
        </mx:ViewStack>
        <s:Label id="labelDisplay" text="{label}"
                         textAlign="center"
                         verticalAlign="middle"
                         maxDisplayedLines="3"
                         horizontalCenter="0" verticalCenter="1"
                         left="10" right="10" top="2" bottom="2">
        </s:Label>
    </s:SparkSkin>
    [/CODE]
    That gives me this image:
    And if I use the following code to resize it, I get this:
    [CODE]
    /* From the component, called from init(), which is called on creationComplete */
    private function resizeEverything():void
      var dummyImage:Image = new Image();
      var pathToDummy:String = "assets" + upButtonPath;
      dummyImage.source = pathToDummy;
      thisBtn.height = dummyImage.height;
      thisBtn.width = dummyImage.width;
      dummyImage = null;
    [/CODE]
    If you have any idea what to do with this, let me know. I set the buttons to the exact height and width of the images I'm using when I first call them. I don't know how else to manage this. I want the faded white to be an exact mirror of the image, so that designers (not me) can move them around on design mode. Thank you!

    Figured it out. The images I was given had large amounts of padding, and when I tried to auto-resize the buttons, Flash could never grab the image and therefore couldn't size off it, so the size of the component was forced to 0,0. It's all good now.

  • Until recently I was able to send images in the body of my Yahoo emails. Now, I am getting the message "This message has been truncated", and the email does not go through. I do not have this problem using IE. Could you please help? Thank you.

    Until recently I was able to send images in the body of my Yahoo emails. Now, I am getting the message "This message has been truncated", and the email does not go through. I do not have this problem using IE. Could you please help? Thank you.

    Try this -> http://support.apple.com/kb/TA38632?viewlocale=en_US

  • Having problems using ion tape express with itunes cannot find the song on hard drive

    Having problems using ION tape express with itunes.  The song is on hard drive as temp1 not the name of the song.  And I have problems playing it in itunes
    because it says it cannot locate the song'

    Then correct the name of the song or point iTunes to the new file.
    Issues with restoring should be directed to the manufacturer of the backup software/device... this is not an Apple or iTunes issue.

Maybe you are looking for

  • NFS nightmare

    I always had touble setting up NFS on my computer. i want to run the nfs server so that i can access the cd, but when i run /etc/rc.d/nfsd start i get nothing, no output, nothing, just [FAIL] i only want to share the nfs mount in my home network, not

  • Plsql coding for multiplication table

    hai i need plsql coding for multiplication table can any one plzzzz.....

  • Oracle_Apps11i  install on RHEL4

    Hello, I am trying to install Oracle APPS11i on RHEL4, it gives the Following Errors System Utilities Check, How to resolve this problem System Utilities Check These utilities need to be accessible on your system in order to do administrative tasks.

  • Import CDs as Audiobooks?

    I am trying to import a large set of CDs as audiobooks. Is there any way to do this? If not, is there any way to make a certain genre not appear in the rest of the library? Any help would be appreciated. Thanks!

  • Labview and VTK

    Has anyone tried/had success using LabView to run the various functions available via VTK (http://public.kitware.com/VTK/)? It seems to me that is the functions can be linked together via C++/Java/Python/Tcl, then one could use LabView to do that sam