How do I get top of page curl (IDCS4 to SWF doc) to show when inserted into DW?

Is there a way to get the top & bottom of page curls to show on my web page the way they do in the html preview?  (With a transparant efffect?) I've attached the SWf file, if that helps.
Thanx in advance for any advice.

Hey, well thanks for responding.... but, if ANY other people who are novice web designers want to find out the answer to what, apparently, is a dumb question, a point in the right direction would be nice. Even if it was only a few people checking back to see if an answer was there, it means they want to know how - just as badly as I do.
So, anyways, if you want to know how to make a page curl show up in your DW site, the answer isn't within DW, but somewhere else, correct?
Thanks, for your time, BTW.

Similar Messages

  • I loaded the profile song toolbar twice, how do I get rid of the duplicate and profile song will not show when I am on my FB page anymore it gives me a strange security error

    1.) Just tried reloading the toolbar for profile song. I now have two and not sure how to get rid or uninstall one of them.
    2.) Profile Song used to load within my FB page itself when I logged in and now it doesnt show at all there.

    If it happens again the make sure that you aren't suppressing website colors.
    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Accessibility settings.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    *https://support.mozilla.org/kb/Options+window+-+Content+panel
    *http://kb.mozillazine.org/Website_colors_are_wrong
    *http://kb.mozillazine.org/Websites_look_wrong

  • To get top-of-page in alv list

    How get top-of-page using reuse_alv_list_display ?
    How to get checkbox into that top-of-page ? And how to access that checkbox whether it is checked or not ? And if checked to get into next step of program promptly ?

    hai  Anirban Datta,
    REPORT YBALV_FULLSCREEN_DEMO NO STANDARD PAGE HEADING.
    *"General Data
    TYPE-POOLS: SLIS.
    DATA: BEGIN OF GT_OUTTAB OCCURS 0.
            INCLUDE STRUCTURE SFLIGHT.
    DATA: END OF GT_OUTTAB,
          GS_LAYOUT TYPE SLIS_LAYOUT_ALV,
          G_EXIT_CAUSED_BY_CALLER,
          GS_EXIT_CAUSED_BY_USER TYPE SLIS_EXIT_BY_USER,
          G_REPID LIKE SY-REPID.
    *"Callback
    DATA:
        GT_EVENTS      TYPE SLIS_T_EVENT,
        GT_LIST_TOP_OF_PAGE TYPE SLIS_T_LISTHEADER,
        G_STATUS_SET   TYPE SLIS_FORMNAME VALUE 'PF_STATUS_SET',
        G_USER_COMMAND TYPE SLIS_FORMNAME VALUE 'USER_COMMAND',
        G_TOP_OF_PAGE  TYPE SLIS_FORMNAME VALUE 'TOP_OF_PAGE',
        G_TOP_OF_LIST  TYPE SLIS_FORMNAME VALUE 'TOP_OF_LIST',
        G_END_OF_LIST  TYPE SLIS_FORMNAME VALUE 'END_OF_LIST'.
    *"Variants
    DATA: GS_VARIANT LIKE DISVARIANT,
          G_SAVE.
    INITIALIZATION.
    G_REPID = SY-REPID.
    PERFORM LAYOUT_INIT USING GS_LAYOUT.
    PERFORM EVENTTAB_BUILD USING GT_EVENTS[].
    GS_VARIANT-REPORT = G_REPID.
    G_SAVE           = 'A'.
    START-OF-SELECTION.
    *"Data Selection
      PERFORM SELECT_DATA TABLES GT_OUTTAB.
    END-OF-SELECTION.
    *"List Header for Top-Of-Page
    PERFORM COMMENT_BUILD USING GT_LIST_TOP_OF_PAGE[].
    *"Display List
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
           I_BACKGROUND_ID    = 'ALV_BACKGROUND'
           i_buffer_active    = 'X'
           I_CALLBACK_PROGRAM = G_REPID
           I_STRUCTURE_NAME   = 'SFLIGHT'
           IS_LAYOUT          = GS_LAYOUT
           I_SAVE             = G_SAVE
           IS_VARIANT         = GS_VARIANT
           IT_EVENTS          = GT_EVENTS[]
         I_SCREEN_START_COLUMN    = 0     "Use coordinates for
         I_SCREEN_START_LINE      = 0     "display as dialog box
         I_SCREEN_END_COLUMN      = 0
         I_SCREEN_END_LINE        = 0
      IMPORTING
           E_EXIT_CAUSED_BY_CALLER = G_EXIT_CAUSED_BY_CALLER
           ES_EXIT_CAUSED_BY_USER  = GS_EXIT_CAUSED_BY_USER
      TABLES
           T_OUTTAB = GT_OUTTAB
      EXCEPTIONS
           PROGRAM_ERROR = 1
           OTHERS        = 2.
    IF SY-SUBRC = 0.
      IF G_EXIT_CAUSED_BY_CALLER = 'X'.
    *"  Forced Exit by calling program
    *"  <do_something>.
      ELSE.
    *"  User left list via F3, F12 or F15
        IF GS_EXIT_CAUSED_BY_USER-BACK = 'X'.       "F3
    *"    <do_something>.
        ELSE.
          IF GS_EXIT_CAUSED_BY_USER-EXIT = 'X'.     "F15
    *"      <do_something>.
          ELSE.
            IF GS_EXIT_CAUSED_BY_USER-CANCEL = 'X'. "F12
    *"        <do_something>.
            ELSE.
    *"        should not occur!
    *"        <do_Abnormal_End>.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
    ELSE.
    *"Fatal error callin ALV
    MESSAGE AXXX(XY) WITH ...
    ENDIF.
    *"Form routines
    FORM SELECT_DATA TABLES RT_OUTTAB LIKE GT_OUTTAB[].
    *"- Selection of data to be displayed
      SELECT * FROM SFLIGHT INTO CORRESPONDING FIELDS
                       OF TABLE RT_OUTTAB
                       UP TO 00030 ROWS.
    ENDFORM.
    FORM LAYOUT_INIT USING RS_LAYOUT TYPE SLIS_LAYOUT_ALV.
    *"Build layout for list display
      RS_LAYOUT-DETAIL_POPUP      = 'X'.
    ENDFORM.
    FORM EVENTTAB_BUILD USING RT_EVENTS TYPE SLIS_T_EVENT.
    *"Registration of events to happen during list display
      DATA: LS_EVENT TYPE SLIS_ALV_EVENT.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
          EXPORTING
               I_LIST_TYPE = 0
          IMPORTING
               ET_EVENTS   = RT_EVENTS.
      READ TABLE RT_EVENTS WITH KEY NAME = SLIS_EV_TOP_OF_PAGE
                               INTO LS_EVENT.
      IF SY-SUBRC = 0.
        MOVE G_TOP_OF_PAGE TO LS_EVENT-FORM.
        APPEND LS_EVENT TO RT_EVENTS.
      ENDIF.
    ENDFORM.
    FORM TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
               I_LOGO             = 'ENJOYSAP_LOGO'
                IT_LIST_COMMENTARY = GT_LIST_TOP_OF_PAGE.
    ENDFORM .
    FORM COMMENT_BUILD USING LT_TOP_OF_PAGE TYPE
                                            SLIS_T_LISTHEADER.
      DATA: LS_LINE TYPE SLIS_LISTHEADER.
    LIST HEADING LINE: TYPE H
      CLEAR LS_LINE.
      LS_LINE-TYP  = 'H'.
    LS_LINE-KEY:  NOT USED FOR THIS TYPE
      LS_LINE-INFO = TEXT-100.
      APPEND LS_LINE TO LT_TOP_OF_PAGE.
    STATUS LINE: TYPE S
      CLEAR LS_LINE.
      LS_LINE-TYP  = 'S'.
      LS_LINE-KEY  = TEXT-101.
      LS_LINE-INFO = TEXT-102.
      APPEND LS_LINE TO LT_TOP_OF_PAGE.
      LS_LINE-KEY  = TEXT-103.
      LS_LINE-INFO = TEXT-104.
      APPEND LS_LINE TO LT_TOP_OF_PAGE.
    ACTION LINE: TYPE A
      CLEAR LS_LINE.
      LS_LINE-TYP  = 'A'.
    LS_LINE-KEY:  NOT USED FOR THIS TYPE
      LS_LINE-INFO = TEXT-105.
      APPEND LS_LINE TO LT_TOP_OF_PAGE.
    ENDFORM.
    Regards.
    Eshwar.

  • How do I get my web pages back to original size? My fonts are all too large and keep reverting after I change them back!

    How do I get my web pages back to original size? My fonts are all too large and keep reverting after I change them back!

    That has not worked. I do it and still it reverts. Isn't there a way to tell Firefox to just go back to default settings?

  • How to I get on to page 2 when my document stops at the page 1 layout line and won't go on to another page?

    How to I get on to page 2 when my document stops at the page 1 layout line and won't go on to another page?

    Sounds like you are using a Layout template. These you have to manually link from textbox to textbox.
    Try using a Word Processing template, it lists them in the sidebar of the Template Chooser.
    Peter

  • Getting Top odf page in REUSE_ALV_HIERSEQ_LIST_DISPLAY  List

    Hi
    I am using FM: REUSE_ALV_HIERSEQ_LIST_DISPLAY to display the list..
    But i didn't get top of page on the same.  Can any know abt the same please
    give ans with sample code. I would appreciate your prompt help..
    thanks,

    You have to use the EVENTS parameter in this case.  Here is a complete example.
    report zrich_0001 .
    type-pools: slis.
    data: begin of head occurs 0,
           matnr type afpo-matnr,
           maktx type makt-maktx,
           expand type c,
          end of head.
    data: begin of detail occurs 0,
           matnr type marc-matnr,
           werks type marc-werks,
           dispo type marc-dispo,
          end of detail.
    data: events   type slis_t_event,
          list_top_of_page type slis_t_listheader,
          top_of_page  type slis_formname value 'TOP_OF_PAGE'.
    start-of-selection.
      select matnr maktx from makt
                   into table head
                           up to 100 rows.
      if not head[] is initial.
        sort head ascending by matnr.
        select matnr werks dispo into table detail
                  from marc
                     for all entries in detail
                        where matnr = detail-matnr.
      endif.
      perform call_alv.
    *       FORM call_alv                                                 *
    form call_alv.
      data: gt_fieldcat type slis_t_fieldcat_alv,
            gs_keyinfo  type slis_keyinfo_alv,
            gs_layout   type slis_layout_alv.
      data: ls_fieldcat type slis_fieldcat_alv.
      clear gs_keyinfo.
      gs_keyinfo-header01 = 'MATNR'.
      gs_keyinfo-item01   = 'MATNR'.
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'MATNR'.
      ls_fieldcat-reptext_ddic = 'Material'.
      ls_fieldcat-tabname      = 'HEAD'.
      ls_fieldcat-outputlen    = 18.
      append ls_fieldcat to gt_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'MAKTX'.
      ls_fieldcat-reptext_ddic = 'Description'.
      ls_fieldcat-tabname      = 'HEAD'.
      ls_fieldcat-outputlen    = 40.
      append ls_fieldcat to gt_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'WERKS'.
      ls_fieldcat-reptext_ddic = 'Plant'.
      ls_fieldcat-tabname      = 'DETAIL'.
      ls_fieldcat-outputlen    = 4.
      append ls_fieldcat to gt_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'DISPO'.
      ls_fieldcat-reptext_ddic = 'MRP Controller'.
      ls_fieldcat-tabname      = 'DETAIL'.
      ls_fieldcat-outputlen    = 5.
      append ls_fieldcat to gt_fieldcat.
      gs_layout-expand_fieldname = 'EXPAND'.
      perform eventtab_build using events[].
      perform comment_build using list_top_of_page[].
      data: repid type sy-repid.
      repid = sy-repid.
      call function 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
           exporting
                i_callback_program = repid
                it_fieldcat        = gt_fieldcat[]
                is_layout          = gs_layout
                i_tabname_header   = 'HEAD'
                i_tabname_item     = 'DETAIL'
                it_events          = events[]
                is_keyinfo         = gs_keyinfo
           tables
                t_outtab_header    = head
                t_outtab_item      = detail.
    endform.
    * EVENTTAB_BUILD
    form eventtab_build using events type slis_t_event.
    * Registration of events to happen during list display
      data: tmp_event type slis_alv_event.
      call function 'REUSE_ALV_EVENTS_GET'
           exporting
                i_list_type = 0
           importing
                et_events   = events.
      read table events with key name = slis_ev_top_of_page
                               into tmp_event.
      if sy-subrc = 0.
        move top_of_page to tmp_event-form.
        append tmp_event to events.
      endif.
    endform.
    * COMMENT_BUILD
    form comment_build using list_top_of_page type
                                            slis_t_listheader.
      data: tmp_line type slis_listheader.
      clear tmp_line.
      tmp_line-typ  = 'H'.
      tmp_line-info = 'Here is a line of text'.
      append tmp_line to list_top_of_page.
      clear tmp_line.
      tmp_line-typ  = 'S'.
      tmp_line-key  = 'Key1'.
      tmp_line-info = 'Here is a value'.
      append tmp_line to list_top_of_page.
      clear tmp_line.
      tmp_line-typ  = 'S'.
      tmp_line-key  = 'Key2'.
      tmp_line-info = 'Here is another value'.
      append tmp_line to list_top_of_page.
    endform.
    * TOP_OF_PAGE
    form top_of_page.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
           exporting
    *            i_logo             = 'ENJOYSAP_LOGO'
                it_list_commentary = list_top_of_page.
    endform.
    Regards,
    RIch Heilman

  • How can I get Top Sites to open full screen?

    How can I get Top Sites to open full screen?

    http://support.apple.com/kb/PH11881
    System Preferences > General
    Uncheck the box beside "Close windows when quitting an application".

  • Hi guru's in SMART FORMS how i  can get subtotals , and page totals

    hi guru's in SMART FORMS how i  can get subtotals , and page totals plz help me

    Hi
    check this
    Subtotals - Check the link...
    <b>Re: Subtotal with Table Node in smartforms can use the PROGRAM LINES node to calculate the page totals in Table node.
    Table Node has three sections:
    Header: (Triggered once in the beginning of a page)
    Create a Program lines node to reset the value of TOTAL to 0.
    Main Area (For each row of internal table)
    Create a Program lines node to add the Value to TOTAL
    Footer (Triggered once in the End of a page)
    Display the TOTAL
    Note: 1) You can declare the TOTAL variable in the GLOBAL Definitions under GLOBAL DATA.
    2) In the PROGRAM lines always pass the TOTAL in both INPUT and OUTPUT parameters
    Regards
    Anji

  • How can I get last visited pages on 08/06/12. I can't see it in my history. Is there any archives with please give that history. (only need amazon.co.uk)

    how can I get last visited pages on 08/06/12. I can't see it in my history. Is there any archives with please give that history. (only need amazon.co.uk)

    hello the history is the only place where firefox stores the visited pages. change your settings in firefox > options > privacy when you want to keep the visited sites in the future & make sure that no external programs (like security or "tune-up" software) is clearing the history either. when firefox is launched in private borwsing mode, it won't keep history information for this session.
    [[Settings for privacy, browsing history and do-not-track]]

  • How can I get just a page border without having a border around every paragraph?

    How can I get just a page border without having a border around every paragraph? I just want a border around the perimeter of the page.

    Assuming you are using Pages 5, you haven't said:
    1. Select multiple paragraphs > Text > Layout > Borders & Rules > choose a line > select a thickness > select the 4th Positon (all around) > Offset
    or
    2. Inseert a rectangular shape > Resize to suit > Format > Fill > No fill > Border > Line > select thickness/color > Arrange > Stay on Page > Text Wrap > None
    If you want that on every page
    Menu > Arrange > Section Masters > Move Object to Section Master
    Pages will not be able to use fonts that are on your PC (I suppose?) if it doesn't have them. Obviously.
    Just as your PC will not be able to use the Mac's fonts.
    Peter

  • Please tell me how i can get to the page that let's me change my printer from computer to printer to

    please explain how I can get to the page that will let me change my printer to the wireless system instead of computer to printer I had to use the hardwire way to use my print shop, but now I would like it to be a wireless system  cannot find the page to let me change it back please help

    Usually the HP Printer software/driver folder in the Start Menu has the option to switch to wireless from usb.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • How do you get degrees on pages

    how do i get digreese on pages?

    on Pages for iOS: press and hold zero
    on Pages for Mac: option shift 8

  • How do I get bing off my mac. Safari keeps defaulting to Bing when I search. Thank you. Peter Morse

    How do I get bing off my Mac. Safari keeps defaulting to Bing when I search. Thank you.

    You installed the "Genieo" search-hijacking rootkit. There is an uninstaller, but as the developer is dishonest, you can't use it. I suggest the tedious procedure below to disable Genieo.
    Back up all data. You must know how to restore from a backup even if the system becomes unbootable. If you don't know how to do that, or if you don't have any backups, stop here and ask for guidance.
    Step 1
    Triple-click anywhere in the line below on this page to select it:
    /etc/launchd.conf
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.
    If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.
    A folder may open with a file selected, or the file may not exist, in which case you'll get a message that it can't be found. If it does exist, it's a configuration file created or replaced by the Genieo installer. Any software installer that does this should be considered ipso facto malware. Move the file to the Trash. You'll be prompted for your administrator password. Then restart, empty the Trash, and continue as below.
    IMPORTANT: If the launchd.conf file exists, you must move it to the Trash and restart before continuing. Otherwise the system may become unbootable. In that case, restore from your backup and start over. That's how badly Genieo has sabotaged your system. If you're not completely sure you can complete this step, stop here and ask for guidance.
    Some variants of Genieo don't include the launchd.conf file. The absence of that file doesn't mean that Genieo is not installed.
    Step 2
    Quit the Genieo application, if it's running. Force quit if necessary.
    Move each of these items to the Trash in the same way as above:
    /Applications/Genieo.app
    /Applications/Uninstall Genieo.app
    /Library/Frameworks/GenieoExtra.framework
    /Library/LaunchAgents/com.genieo.engine.plist
    /Library/LaunchAgents/com.genieoinnovation.macextension.plist
    /Library/LaunchDaemons/com.genieoinnovation.macextension.client.plist
    /Library/PrivilegedHelperTools/com.genieoinnovation.macextension.client
    /usr/lib/libgenkit.dylib/usr/lib/libgenkitsa.dylib
    /usr/lib/libimckit.dylib
    /usr/lib/libimckitsa.dylib
    There's no need to restart after each one. Again, some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    Restart and empty the Trash. Don't try to empty the Trash until you have restarted.
    Your web browser(s) should now function normally, and you should be able to reset the home page and search engine. If not, stop here and post your results.
    Step 3
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including ones called "Genieo" or "Omnibar," and any that have the word "Spigot" or "InstallMac" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    This procedure may leave a few files behind, but it should deactivate Genieo. Make sure you don't repeat the mistake that led you to install it. Chances are you got it from one of the Internet's open sewers such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site.
    Finally, be forewarned that when Genieo is mentioned on this site, the developer sometimes shows up under the name "Genieo support." If that happens, don't believe anything he says, but feel free to tell him what you think of his scam.

  • HT204053 How to I get music I purchased before the iCloud was created to show up on my new authorized iPhone?  Right now I can only see the Apps I recently purchased on the actual phone but older music I purchased on my CPU using the same Apple ID doesn't

    How to I get music I purchased before the iCloud was created to show up on my new authorized iPhone?  Right now I can only see the Apps I recently purchased on the actual phone but older music I purchased on my CPU using the same Apple ID doesn't appear.

    Does any music show in the Purchased tab on the iTunes store app on your phone ? Music can't be re-downloaded in all countries, and even where it can be it will only appear whilst it remains in the store. Do you have your purchases on your computer and/or on a backup of your puchases so that you can sync them to your phone ?

  • HT1311 i tried to do a backup from my old iphone as i have a new one that was signed into another itunes account. it said i cant do it because the iphone rejected the request. how do i get around this? i have signed out of the old acct and into mine on th

    i tried to do a backup from my old iphone as i have a new one that was signed into another itunes account. it said i cant do it because the iphone rejected the request. how do i get around this? i have signed out of the old acct and into mine on the phone

    What is the precise wording of the error message that occurs on the old iPhone when attempting to do a backup?
    Are you attempting to backup via iTunes on the computer or iCloud?

Maybe you are looking for