Adobe muse any option there to export to php

i want to export muse files to php.. if any solutions there for this... please help us

You can export the web-site as html then change it to php with dreamweaver OR make a php page in Dreamweaver to add into Muse with a iframe... bit pointless going into it until you tell us what you want to make.
p.s No Muse can't make a blog... but it can point to one that you made someplace else.

Similar Messages

  • Is there any options there in fieldcatalog ?

    hi friends..
    i am using ALV report using fieldcatalog..
    in that i dispaly the field with output length 10..
    but i want that output length as optimised one...
    ie based on the maximum digitsin the field it get vary..
    is there any options there in fieldcatalog ?

    Hi see This program .
    REPORT  zn_alv_complex                          .
    TABLES : vbrk .
    TYPE-POOLS : slis .
    CONSTANTS : gc_top_of_page TYPE slis_formname VALUE 'TOP_OF_PAGE'.
    TYPES : BEGIN OF ty_vbrk ,
                 vbeln TYPE vbrk-vbeln ,
                 vkorg TYPE vbrk-vkorg,
                 vtweg TYPE vbrk-vtweg,
                 kunrg TYPE vbrk-kunrg,
                 END OF ty_vbrk,
            BEGIN OF ty_vbrp,
              vbeln TYPE vbrp-vbeln,
              posnr TYPE vbrp-posnr,
              matnr TYPE vbrp-matnr,
              netwr TYPE vbrp-netwr,
              END OF ty_vbrp,
           BEGIN OF ty_final,
              vbeln TYPE vbrk-vbeln ,
              posnr TYPE vbrp-posnr,
              matnr TYPE vbrp-matnr,
              netwr TYPE vbrp-netwr,
                 vkorg TYPE vbrk-vkorg,
                 vtweg TYPE vbrk-vtweg,
                 kunrg TYPE vbrk-kunrg,
                 END OF ty_final .
    DATA : it_vbrk TYPE TABLE OF ty_vbrk,
           it_vbrp TYPE TABLE OF ty_vbrp,
           it_final TYPE TABLE OF ty_final ,
           wa_vbrk TYPE ty_vbrk,
           wa_vbrp TYPE ty_vbrp,
           wa_final TYPE ty_final ,
           git_event TYPE slis_t_event,
           git_layout TYPE slis_layout_alv,
           git_fieldcat TYPE slis_t_fieldcat_alv,
           gwa_fieldcat TYPE slis_fieldcat_alv.
    SELECT-OPTIONS : s_vbeln FOR vbrk-vbeln,
                     s_vkorg FOR vbrk-vkorg,
                     s_vtweg FOR vbrk-vtweg.
    START-OF-SELECTION .
      SELECT vbeln vkorg vtweg kunrg
        FROM vbrk
        INTO TABLE it_vbrk
       WHERE vbeln IN s_vbeln
         AND vkorg IN s_vkorg
         AND vtweg IN s_vtweg .
      SELECT vbeln posnr matnr netwr
        FROM vbrp
        INTO TABLE it_vbrp
         FOR ALL ENTRIES IN it_vbrk
       WHERE vbeln = it_vbrk-vbeln .
      LOOP AT it_vbrp INTO wa_vbrp .
        READ TABLE it_vbrk INTO wa_vbrk WITH KEY vbeln = wa_vbrp-vbeln .
        wa_final-vbeln = wa_vbrk-vbeln.
        wa_final-posnr = wa_vbrp-posnr.
        wa_final-netwr = wa_vbrp-netwr.
        wa_final-matnr = wa_vbrp-matnr.
        wa_final-vkorg = wa_vbrk-vkorg.
        wa_final-vtweg = wa_vbrk-vkorg.
        wa_final-kunrg = wa_vbrk-kunrg.
        APPEND wa_final TO it_final.
        CLEAR : wa_vbrk , wa_vbrp , wa_final .
      ENDLOOP .
      PERFORM sub_fieldcatalog.
      PERFORM sub_layout_init CHANGING git_layout.
      PERFORM sub_build_event USING git_event[] .
      PERFORM sub_alv_display.
    *&      Form  SUB_FIELDCATALOG
          text
    FORM sub_fieldcatalog.
      REFRESH git_fieldcat.
      gwa_fieldcat-col_pos = 0.
      gwa_fieldcat-fieldname = 'VBELN'.
      gwa_fieldcat-tabname = 'IT_FINAL'.
      gwa_fieldcat-outputlen = 14.
      gwa_fieldcat-seltext_l = 'Billing Doc.' .
      gwa_fieldcat-seltext_m = 'Billing Doc.' .
      gwa_fieldcat-seltext_s = 'Billing Doc.' .
      APPEND gwa_fieldcat TO git_fieldcat .
      gwa_fieldcat-col_pos = 1.
      gwa_fieldcat-fieldname = 'POSNR'.
      gwa_fieldcat-tabname = 'IT_FINAL'.
      gwa_fieldcat-outputlen = 5.
      gwa_fieldcat-seltext_l = 'Item.' .
      gwa_fieldcat-seltext_m = 'Item' .
      gwa_fieldcat-seltext_s = 'Item' .
      APPEND gwa_fieldcat TO git_fieldcat .
      gwa_fieldcat-col_pos = 2.
      gwa_fieldcat-fieldname = 'VKORG'.
      gwa_fieldcat-tabname = 'IT_FINAL'.
      gwa_fieldcat-outputlen = 14.
      gwa_fieldcat-seltext_l = 'Sales Org' .
      gwa_fieldcat-seltext_m = 'Sales Org' .
      gwa_fieldcat-seltext_s = 'Sales Org' .
      APPEND gwa_fieldcat TO git_fieldcat .
      gwa_fieldcat-col_pos = 3.
      gwa_fieldcat-fieldname = 'VTWEG'.
      gwa_fieldcat-tabname = 'IT_FINAL'.
      gwa_fieldcat-outputlen = 14.
      gwa_fieldcat-seltext_l = 'Dist. Ch.' .
      gwa_fieldcat-seltext_m = 'Dist. Ch.' .
      gwa_fieldcat-seltext_s = 'Dist. Ch.' .
      APPEND gwa_fieldcat TO git_fieldcat .
      gwa_fieldcat-col_pos = 4.
      gwa_fieldcat-fieldname = 'MATNR'.
      gwa_fieldcat-tabname = 'IT_FINAL'.
      gwa_fieldcat-outputlen = 18.
      gwa_fieldcat-seltext_l = 'Material' .
      gwa_fieldcat-seltext_m = 'Material' .
      gwa_fieldcat-seltext_s = 'Material' .
      APPEND gwa_fieldcat TO git_fieldcat .
      gwa_fieldcat-col_pos = 5.
      gwa_fieldcat-fieldname = 'NETWR'.
      gwa_fieldcat-tabname = 'IT_FINAL'.
      gwa_fieldcat-outputlen = 14.
      gwa_fieldcat-seltext_l = 'Price' .
      gwa_fieldcat-seltext_m = 'Price' .
      gwa_fieldcat-seltext_s = 'Price' .
      gwa_fieldcat-do_sum    = 'X' .
      APPEND gwa_fieldcat TO git_fieldcat .
    ENDFORM .                    "SUB_FIELDCATALOG
    *&      Form  sub_alv_display
          text
    FORM sub_alv_display .
      DATA : gv_repid TYPE sy-repid .
      gv_repid = sy-repid.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program      = gv_repid
          i_callback_user_command = 'USER-COMMAND'
          is_layout               = git_layout
          it_fieldcat             = git_fieldcat
          i_save                  = 'A'
          it_events               = git_event[]
        TABLES
          t_outtab                = it_final
        EXCEPTIONS
          program_error           = 1
          OTHERS                  = 2.
    ENDFORM .                    "sub_alv_display
    *&      Form
          text
    FORM sub_layout_init CHANGING xyt_layout TYPE slis_layout_alv.
      CLEAR xyt_layout .
      xyt_layout-colwidth_optimize = 'X'.
      xyt_layout-zebra = 'X' .
    ENDFORM.                    "SUB_LAYOUT_INIT
    *&      Form  SUB_BUILD_EVENT
          text
         -->XT_EVENT   text
    FORM sub_build_event USING xt_event TYPE slis_t_event .
      DATA : lwa_event TYPE slis_alv_event .
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 0
        IMPORTING
          et_events       = xt_event
        EXCEPTIONS
          list_type_wrong = 1
          OTHERS          = 2.
      READ TABLE xt_event WITH KEY name = slis_ev_top_of_page INTO
    lwa_event.
      lwa_event-form = gc_top_of_page.
      IF sy-subrc EQ 0 .
        MODIFY xt_event FROM lwa_event TRANSPORTING form WHERE name =
        gc_top_of_page.
      ENDIF.
    ENDFORM.                    "SUB_BUILD_EVENT
    *&      Form  TOP_OF_PAGE
          text
    FORM top_of_page .
      CONSTANTS : lc_s TYPE char01 VALUE 'S'.
      DATA : lv_ecfld(250) TYPE c ,
             lwa_header TYPE slis_listheader ,
             lv_date(10) TYPE c,
             lv_user(10) TYPE c,
             lit_alv_header TYPE slis_t_listheader .
      CLEAR : lv_user ,  lv_date .
      CLEAR : lwa_header .
      lwa_header-typ = 'S'.
      lv_ecfld = 'User'.
      lwa_header-key = lv_ecfld .
      lwa_header-info = sy-uname.
      APPEND lwa_header TO lit_alv_header .
      CLEAR : lwa_header .
      lwa_header-typ = 'S'.
      lv_ecfld = 'Date'.
      lwa_header-key = lv_ecfld .
      lwa_header-info = sy-datum .
      APPEND lwa_header TO lit_alv_header .
      CLEAR : lwa_header .
      lwa_header-typ = 'S'.
      APPEND lwa_header TO lit_alv_header .
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = lit_alv_header.
    ENDFORM .                    "TOP_OF_PAGE
    Regards,
    Nihar Swain.

  • Adobe Muse SlideShow Options and Capabilities

    Hey there people. I know that in the Adobe Muse slideshow you have the options to use fade, and vertical transitions, etc. I'm trying to make a few pictures in my slideshow go vertical and a few pictures go horizontal, and maybe a few pictures fade during its transition. (All in the same Slideshow) Is this possible?

    Right now there is only the three options. I am sure it would be easy enough for the dev team to add a random setting. I suggest you add it to the Muse ideas forum.

  • My shortcut keys on CS6 are gone. I get a message to reinstall CS6. I would rather not go through the hell of getting the license key for Adobe. Any options?

    I get the message that my shortcut keys have gone missing.... And the message says to reinstall Photoshop CS6. I would rather burn my arms off than go through the hell of reinstall with Adobe's horrible licensing process. Please help me avoid this! I tried system restore on my Windows PC to no avail. Any solutions or downloads I might try?
    Thanks for any help.
    John

    Not sure what you mean when you say "Adobe's horrible licensing process". If you have a valid license key code you type it in and you are done. The program, licensing system, checks that key against the online system and if it is valid and not installed on more than 2 computers at the same time you don't have to do anything else.
    If the version of CS6 you are using is an Upgrade version then you will need to type in a valid license key from a qualified previous version. Again once that is done and it is checked against the online license system you are done.
    As to your problem with the shortcut keys going away I "Think" that is a problem with your computer more than with Photoshop. Some how the file that holds the default and user edited keyboard shortcuts has become corrupted or you have somehow deleted it. If it became corrupted that is a Sure Sign you have a hardware problem. More than likely some type of hard drive problem, the drive might be on it's last legs, it is failing and will need to be replaced.
    One thing I suggest you do from this point forward is make regular backups of your complete system. Like doing it every week if not more. That way when, NOT IF, you have similar problem you can restore your system from the most current backup. And if it is a hardware failure, like the drive going bad, you can restore your system to that state once the hardware problem is fixed.
    If you do have a hardware problem, like the hard drive is dying, reinstalling PS won't stop it from happening again.

  • Using Form Central with Adobe Muse. Is there an advantage?

    What the difference between Form Central and Web Forms on Business Catalyst? Is there an advantage to use one over the other?

    In my opinion, there is never a good reason to use two organizing programs simultaneously, as this just causes extra work, confusion and disorganization.
    So, if you have to pick one, I would strongly recommend using Lightroom as Organizer and Editor, and PSE as auxiliary editor. Lightroom's Library Module provides a much nicer workflow than the PSE Editor, has a nicer interface and (very importantly) has dramatically fewer bugs.
    What would you be losing by select Lightroom3 over PSE10? You would be losing the major bugs in the PSE Organizer. However, you would also lose the ability to do face tagging in PSE (but even if you wanted to have that feature, in my opinion its just not worth it because of the advantages of LR in workflow) and you would be losing PSE's ability to make "creations", like photobooks. And that's about it, as far as I know.

  • Adobe muse doesn't seem to export to all devices.

    My testlink is http://galzerano.com/thummer
    On some machines it's perfect, but for the android and apple phone 4 it renders small and justified to the left. Anyone know how to fix this?

    As much as I believe that Muse is not really fit for purpose yet, I do not have the issues you are encountering with Opera.

  • 'Adobe Muse CC quit unexpectedly' is all I get when I try to open the app?

    I am using Yosemite, i've un and reinstalled, updated AIR, quit, restarted....what else can I do?

    I expect that somehow the permissions set for your Preferences folder are incorrect.
    Please open the preferences folder. (Hold the Option key down while selecting the "Go" menu in the Finder and an additional "Library" item will appear in that menu. Select it. It will open a Finder window for your user Library folder (which is normally a hidden folder). Inside the Library folder you'll find a Preferences folder.)
    In the Preferences folder you should see an "Adobe" folder. Is it there?
    Inside the "Adobe" folder there should be an "Adobe Muse CC" folder. Is it there?
    Inside the "Adobe Muse CC" folder there should be a "2014.2" folder. Is it there?
    If at any point the folder is not there, attempt to create a new folder at that location. (The default name of "untitled folder" is fine.) Are you prompted to enter your password? You shouldn't be. Did any error or warning appear?

  • Non-breaking space in Adobe Muse

    Is it possible to insert non-breaking space in Adobe Muse?

    Hi,
    There is no direct way or Muse-specific keyboard shortcut to insert a non-breaking space.
    On Mac, I was able to insert it using Unicode Hex Input keyboard layout (see http://en.wikipedia.org/wiki/Unicode_input#Hexadecimal_code_input). Non-breaking space is 00A0. I would expect the corresponding Windows method to work too.
    That said, Muse exports a setting (word-wrap: break-word) that allows word breaks at normally 'unbreakable' positions. I haven't tested it, but I have a feeling non-breaking spaces will be defeated by this setting. May I ask what your use case is?
    Thanks,
    Abhishek

  • Publishing website on Adobe Muse

    I have been working on my website for a long time and finally it is about to be finished but there is a problem with publishing. I tried to publish it directly and it gave me ..............businesscatalyst.com but ı already paid for that domain no need to pay adobe to get domain and ı would like to get rid of businesscatalyst part. how can ı publish my website properly ?

    the process will depend upon what webspace you want to use, you can use the adobe webspace or webspace you have bought with a different provider, which is normally (but not always) the same company you buy the web domains from
    the following is cut and pasted from a business catalyst email
    "Did you know your Adobe Creative Cloud™ membership plan includes site hosting?
    An Adobe Creative Cloud membership plan includes hosting for five sites.*
    An Adobe Muse one-year membership plan includes hosting for one site.*
    (How to) Push your temporary site live
    If hosting with Adobe Web Hosting:
    Click the Manage mode in the Adobe Muse menu. This will take you to the Admin Console.
    > Click Push Site Live.
    > Apply your site hosting, which is part of your membership plan.
    > Consider whether to customize your domain.
    If hosting with another provider:
    Go to the Adobe Muse File menu, and choose Export as HTML. From there, you can upload the HTML files to your hosting provider.
    Or, choose Upload to FTP Host and complete the FTP upload form."

  • HT3042 i want to transfer picture from iphone 3gs to iphone 4s by bluetooth . and i dont find any option how do i do it

    hi
    i want to transfer my snaps to one Iphone to the other iphone by using bluetooth . i have turned on the bluetooh of both sets yet could not transfer the file as i dont see any option there. please tell me how do i do it ?

    To my knowledge, that is NOT an option.
    Barry

  • Can I import content .asp in Adobe Muse?

    Is it possible to import a content .asp in Adobe Muse? Or there's another way to do it?
    Thank you!

    If you are using a third party host for your asp content the only way would be to use an iframe in your muse design to display your asp stuff.

  • Is there any way, to create with Adobe Muse HTML-Mail Templates?

    Is there any way, to create with Adobe Muse HTML-Mail Templates? or to convert the createt page to only html content? any other tool like an website copyer?
    tanks for help!

    Off the top of my head, you should be able to create mail templates in muse BUT it will require  very basic html/css knowledge on your part. I am assuming you want to do just the signature?
    Create the design you would like on one page, dont do any kind of styling in a master page. Then export the site into a folder. Open the html file with notepad/ textedit and then copy just the code for JUST the template. Throw it in you mail app of choice and it should work.
    This seems like something that would be done alot quicker in dreamweaver in design view.
    PLEASE NOTE: ^i could be completely wrong - but in theory this may work.

  • Is it possible to have a 'file upload' option on an Adobe Muse Form. Is there a widget for this?

    Is it possible to have a 'file upload' option on an Adobe Muse Form. Is there a widget for this?

    Hi
    Please refer to this thread, Upload file button

  • Is there anyway to share an application on an Adobe Muse web page? More specifically an applet exported from the Processing interface?

    Is there anyway to share an application on an Adobe Muse web page? More specifically an applet exported from the Processing interface?

    Hi,
    You can add your app to the Muse page using the Insert HTML feature in Muse. However, it depends on your hosting server whether or not the app will work. For example, if your app is in php and your server is configured for php, the app should work.
    Regards,
    Aish

  • Is there any way to publish from Adobe Muse directly to a domain without Business Catalyst?

    I'm getting extremely frustrated with Adobe Muse. I think it's ridiculous having to go through Business Catalyst to publish a website when I have already purchased my own domain. Please tell me there is a way around this.

    No problem. We recognize it would provide a more consistent user experience if we merged all possible output paths under the "Publish" experience. It's just not something that's hit the top of the priority list, yet. Enjoy Muse.
    Just as an fyi, there are currently 2 features that require BC hosting, so you may want to keep those in mind as you plan/develop your site.
    1) The CAPTCHA field in forms; and
    2) The In-Browser Editing functionality.
    We are aware many customers would like to see these features enabled on non-BC hosting.

Maybe you are looking for

  • How to retrieve specific data from a text file

    Hi, everyone For my project it is required that a parameter file is read at the beginning, in order for certain variables to be initialized with specific values that change with the user. At the moment, the way it is done is the following:  The value

  • Snow Leopard version of Preview:  Enable lines of text in the search results?

    In Preview 4 on OS X 10.5.8 Leopard and Preview 3 on OS X 10.4.11 Tiger, when a search of a PDF file was conducted, the search term would appear in context in the drawer on the side of the main Preview window.  The multiple lines of text in the searc

  • Rs.updateBoolean SQLException: ORA-12899: value too large for column

    Complete error is SQLException: ORA-12899: value too large for column "SMSUSER"."PRUEBA"."VLOGIC" (actual: 4, maximum: 1) Let's see the code: PreparedStatement ps=null; ResultSet rs=null; try ps=conn.prepareStatement("create table prueba(name varchar

  • RV180 no internet in NAT if DHCP off

    Hello, I have a RV180 running behind a DSL-Router, connected to the WAN-Port. I have "internet" in my NAT if I have activated the DHCP. I want to use fixed IPs, so I have turned off the DHCP, than I have no constant conection to the internet. Any ide

  • Customize plot legend

    Hello all, I am trying to customize a plot legend. Changing the color to transparent gets me only to the point where the pseudo-3d effect of the surrounding box is gone. How do I get rid of the hole around the plot sample in the legend? I want it to