Workspace Layout problem

When I try to use Dreamweaver CS3 I get a box which states
"The following panel layout is missing or could not be read:
C://program files/adobe/adobe dreamweaver
cs3/configuration/workspace/designer.xml
The application will not have a correct layout. Please load
one from windows
->workspace layout."
I press ok and another box comes up which is blank...I press
ok and the
application ends.
Thus I cannot use dreamweaver!
Please help
Cyberfx

Hey Guys !
Problem:
I had the same problem with Adobe Dreamweaver CS5 i get the following error:
"The following panel layout is missing or could not be read:
C://program files/adobe/adobe dreamweaver
cs3/configuration/workspace/designer.xml
The application will not have a correct layout. Please load one from windows
->workspace layout."
I press ok and another box comes up which is blank...I press ok and the
application ends.
Solution:
Go to your directory where Adobe was installed. In my case it was D Drive
D:\Program Files\Adobe\Adobe Dreamweaver CS5\configuration\workspace
In the "workspace" folder, copy all the XML Files.
Now Go to your "workspace" folder under the Application Data area of your C Drive of your profile
C:\Documents and Settings\userName\Application Data\Adobe\Dreamweaver CS5\en_US\Configuration\Workspace
Delete all the xml files in there, and paste in the new ones you copied across from the installation directory.
Done !  Restart Your Dreamweaver and that should fix it !

Similar Messages

  • Adobe Bridge CS4 doesnt keep workspace layout and folders from previous session.

    After I was working with my photos in specific folder I set workspace layout to specific size of UI elemenst. Like preview windows size, thumnnail size, navigator panel size and so on. When I restart my PC and launched Bridge again - it is again meessed up nad set to some strage sizes and the main bugger it doesnt preserve folder I was working before.
    What might be a problem?
    Thank you
    Bridge CS4 3.0.0.464
    Windows 7 Professional 64bit.

    Assuming that you are closing Bridge correctly and not just shutting down the computer, the fault is probably with the fact that Bridge is Autostarted in the background due to it being enabled in Bridge preferences.
    Setting that as default was a big mistake from Adobe.

  • Working with Multiple Files in Workspace Layout

    If I was working with multiple files in the workspace layout, they each used to be available for selection from a tab.  Now I can either cascade the files horizontally or vertically - but not have them appear in a tab across the top of the workspace layout.
    Does anyone know how to set the workspace to present multiple files in tabs?  I have CS3.

    Tanya,
    This may not help, but the times when that happens to me is when I go too fast and some operations haven't finished. I then try to select a file that hasn't completed and the file I select is in the process of having the data updated. The worst is when it is trying to render as I am doing something.
    I hope this helps some.
    Mel

  • CSS Layout Problem?

    Can someone please help me with a layout problem.
    As far as I can tell the page looks as it should in Netscape,
    Firefox, etc., but IE6 and 7 refuse to work correctly.
    The page I am working on is:
    http://www.vmtampademo.com/localangler/testpage.html
    Most of the picture caption and headline of the middle column
    is behind the picture. I attempted to force the info with a
    seperating div which seems to work sometimes. I doubt that this is
    the correct solution. What am I doing wrong?
    Thank you for the help!

    It looks fine in Firefox 2.0.0.1, Opera 9.10, and IE 7.

  • Layout problem in PDF conversion

    Hi all,
    i am downloading spool data using the function module CONVERT_ABAPSPOOLJOB_2_PDF. But i am facing layout problem. e.g. RFBILA00(financial statement generation program) has written balancesheet data to the spool. This spool data has some 6 columns. but CONVERT_ABAPSPOOLJOB_2_PDF is writing only first 3 columns to the generated PDF file. i used 'GET_PRINT_PARAMETERS' function module also with values like layout as 'X_65_132' and 'X_90_120'. but no success. if anybody knows the answer, please let me know.
    Thanks in advance,
    Naveen

    Hi All,
    i am following the below approach to download the information from spool.
    program/spool output is an ALV List output data having 8 columns. but below approach is converting only first 5 columns in to PDF format. other 3 columns are getting truncated.
    FUNCTION /ngl/download_spoolinfo_as_pdf.
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(I_SPOOL_REQUEST) LIKE  TSP01-RQIDENT
    *"     REFERENCE(I_FILENAME) LIKE  RLGRAP-FILENAME
    *"  EXCEPTIONS
    *"      DOWNLOAD_ERROR
      TABLES tsp01.
      DATA: mtab_pdf LIKE tline OCCURS 0 WITH HEADER LINE,
            mc_filename LIKE rlgrap-filename.
      DATA: mstr_print_parms LIKE pri_params,
            mc_valid(1) TYPE c,
            mi_bytecount TYPE i.
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          copies                 = '1'
          cover_page             = space
          destination            = 'locl'
          expiration             = '1'
          immediately            = space
          mode                   = space
          new_list_id            = 'X'
          no_dialog              = 'X'
          user                   = sy-uname
          line_size              = 200
          line_count             = 65
         layout                 = 'X_65_200'
          layout                 = 'X_90_120'
          sap_cover_page         = 'X'
        IMPORTING
          out_parameters         = mstr_print_parms
          valid                  = mc_valid
        EXCEPTIONS
          archive_info_not_found = 1
          invalid_print_params   = 2
          invalid_archive_params = 3
          OTHERS                 = 4.
      IF sy-subrc EQ 0.
        CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = i_spool_request
            no_dialog                = 'X'
            dst_device               = mstr_print_parms-pdest
          IMPORTING
            pdf_bytecount            = mi_bytecount
          TABLES
            pdf                      = mtab_pdf
          EXCEPTIONS
            err_no_abap_spooljob     = 1
            err_no_spooljob          = 2
            err_no_permission        = 3
            err_conv_not_possible    = 4
            err_bad_destdevice       = 5
            user_cancelled           = 6
            err_spoolerror           = 7
            err_temseerror           = 8
            err_btcjob_open_failed   = 9
            err_btcjob_submit_failed = 10
            err_btcjob_close_failed  = 11
            OTHERS                   = 12.
        IF sy-subrc EQ 0.
          mc_filename = i_filename.
          DATA: lv_filename TYPE string.
          lv_filename = i_filename.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              bin_filesize = mi_bytecount
              filename     = lv_filename
              filetype     = 'BIN'
            TABLES
              data_tab     = mtab_pdf
            EXCEPTIONS
              OTHERS       = 22.
          IF sy-subrc EQ 0.
            WRITE:/ mc_filename, 'CONVERTED TO PDF AND DOWNLOADED'.
          ELSE.
            WRITE:/ 'PROBLEM WITH DOWNLOAD'.
            RAISE download_error.
          ENDIF.
        ELSE.
          WRITE:/ 'PROBLEM WITH PDF CONVERSION'.
          RAISE download_error.
        ENDIF.
      ELSE.
        WRITE:/ 'PROBLEM GETTING PRINT PARAMETERS'.
        RAISE download_error.
      ENDIF.
    ENDFUNCTION.

  • Layout problem - multiple repeating frames

    Hi, I have a layout problem, pls help!
    Short report description:
    - Repeating Frame1 - gives 1 record, contains all other frames, variable vertical elasticity
    - - Frame2 - contains all frames beneath - variable vertical elasticity
    - - - Frame3 - variable vertical elasticity
    - - - - some boilerplates
    - - - - Repeating Frame 2 - various number of records, fixed vertical elasticity, height 100
    - - - - Repeating Frame 3 - various number of records, fixed vertical elasticity, height 30
    - - - - .. other repeating frames ..
    When reaching the bottom of a page, and there is not enough room to print a record for Repeating frame 2, a record from Repeating frame 3 is printed in the bottom.
    Next page starts with the remaining records from Repeating frame 2.. and then the remaining records from Repeating frame 3.
    For example:
    Page 1:
    Rep frame 2 - Record 1
    Rep frame 2 - Record 2
    Rep frame 2 - Record 3
    Rep frame 3 - Record 1 -- not enough space to print Record 4, so this record is printed
    Page 2:
    Rep frame 2 - Record 4
    Rep frame 2 - Record 5
    Rep frame 3 - Record 2
    How can i ensure that all records from Rep frame 2 is printed before records from Rep frame 3?

    Hi, thanks for helping me out!
    I tried to use anchors, but they had no effect when connecting top of 3 to bottom of 2, got the same layout.
    I then tried to create frames with vertical elasticity expand around both rep frame 2 and rep frame 3, and it seems to do the job.
    - Repeating Frame1 - gives 1 record, contains all other frames, variable vertical elasticity
    - - Frame2 - contains all frames beneath - variable vertical elasticity
    - - - Frame3 - variable vertical elasticity
    - - - - some boilerplates
    - - - - Frame 4 - vertical elasticity expand
    - - - - - - Repeating Frame 2 - various number of records, fixed vertical elasticity, height 100
    - - - - Frame 5 - vertical elasticity expand
    - - - - - - Repeating Frame 3 - various number of records, fixed vertical elasticity, height 30
    and so on..
    Thanks again

  • Layout Problem in swings

    I have an Layout problem. My Applications consists of a label and a panel in which some more labels are present.
    The panel should contain the scrollbar in order to view all the label that excced the size of the panel.This label and a panel should be adjacent to each other.
    My problem is, I am not getting the scroll bar to the panel when I am adding the label that excced the size of the panel, when I am adding the label adjacent to this label.

    Did you use JScrollPanel? If not, use it.

  • [solved] layout problem in amarok 2.02

    Hi,
    Here, I have a bad layout problem with amarok 2.02. Amarok does not fit on my screen which is 1400 pixels large! I cannot reduce the part where the collection is shown. So that it is really unpractical to use.
    I uploaded a snapshot to illustrate the problem (it is the full screen!):
    emmanuelfavrenicolin.free.fr/Public/Sna … ok202.jpeg
    Someone have the same problem ?
    I tried to install svn version but I stopped after 3 hours of compilation, it is quite a big application.
    Last edited by manouchk (2009-05-23 06:28:43)

    Well, I tried amarok2-devel 2.0.90-1 but the problem of graphic layout remains similar, no improvement. Is it normall? Maybe amarok is only available for computer with screen >= 1600x1200  or is there an hidden configuration file where I could tweek this?
    Last edited by manouchk (2009-05-18 02:41:03)

  • Urgent: Layout problem in "light inner page"

    Hi Experts,
    I am facing a problem in portal content area on external facing portal. I see a vertical scroll bar which restricts application from being displayed on entire screen.
    I am getting this problem after a patching of EP 7.0, before patching every thing was running fine.
    To me it looks like a layout problem in "light inner page", When I use "Light - 1: column (Full width)" layout I get a vertical scroll bar on portal. When I use default layout then this vertical scroll bar disappears but I see an empty navigation bar on left side which is not required.
    Can some one advise a solution for this.
    -Lave

    hi,
    Similar problem in this thread. check it out
    Desktop inner page lost
    Regardss,
    Ganesh N

  • Div layout problem

    Hi - stuck on what I think should be a fairly basic layout problem:
    I have 2 divs, equal widths but varying heights, one floated to the left and one to the right so that they appear next to eachother on the page.  The one on the left contains varying amounts of text, the one on the right contains a flash player so never varies.
    Where the text for the left div is long, I want it to start off next to the player, but then flow beneath it rather than continuing downwards at the same width as the div.  If I remove the width of the left div, so that it reverts to the container width, the player div positions itself below it, so I can't work out how to get the effect.
    Can anyone help?

    Hi,
    hope I understood in the right way: I used (translated from German DW) "modify table" and so I got one more row and two columns in your Main_Content. In one of the new columns I copied the image and beneath I took the text (you now can replace with image and text of your choice), like this:
    If that's not a help for your question, please ask me again.
    What concerns the width of the pictures, I would format them with PS or a similar program in the same wide.
    Hans-G.

  • Re: DW CC The usual choices for the Workspace Layout are missing. How can I restore them?

    The usual choices for the Workspace Layout are missing. How can I restore them?The usual choices for the Workspace Layout are missing. How can I restore them?

    The Insert panel has been reworked pretty significantly in DWCC (Spry has been dead for over a year now, so it no longer appears for instance), but can still be opened via Window > Insert then dragged to the toolbar location (to get the tabs back) by clicking and dragging the Insert tab up to the top of the application frame until it highlights. Once you drop it, it will then appear as a toolbar.
    Not all of the tools will be visible at all times. DWCC knows when certain things can't technically be used and it won't display them if they can't be inserted.
    EDIT: Oops, forgot to add this. Here is a link talking about what has changed in the Insert panel: http://helpx.adobe.com/dreamweaver/using/changes-insert-options-creative-cloud.html

  • How do I delete a workspace layout?

    I saved my preferred workspace layout, but I want to remove
    an older one. I
    actually named it with a spelling mistake. How do I delete
    it?
    cheers
    ss.

    Synapse Syndrome wrote:
    > I saved my preferred workspace layout, but I want to
    remove an older one. I
    > actually named it with a spelling mistake. How do I
    delete it?
    On my machine, custom workspace layouts are found here:
    C:\Documents and Settings\Linda Rathgeber\Application
    Data\Macromedia\Fireworks 8\Commands\Workspace Layouts
    Linda Rathgeber [PVII] **Adobe Community Expert**
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    Design Aid Kits:
    http://www.webdevbiz.com/pwf/index.cfm

  • I have a dual-screen setup - Workspace Layout Panels - not functioning properly.

    I have a dual-screen setup and since updating to 10.10.2, the panels open on the main screen - and not in the positions as they were saved in a Workspace layout.
    Tried trashing the prefs - which works, but when I save a new Workspace layout, it does the exact same thing.
    Any help is greatly appreciated. Thanks.

    Hi Christopher,
    This is a known issue and the product team is working with Apple to address it. Stay tuned.
    Thanks,
    Preran    

  • Dreamweaver cs5.5 workspace layout not correct

    I have recently gotten Adobe Dreamweaver CS5.5 for my online courses and for manipulation of my website, and it does not seem to have the correct workspace layout as shown in most all tutorials in its use. An example of what I mean:
    This is the proper setup from what I have seen but this
    Is what mine looks like, and I do not know how to get the setup from the first screenshot for my Dreamweaver.... Any help would be golden, and thanks in advance!!

    Hi
    The screen you are seeing is called the 'Welcome screen' and is the fist screen that DW shows when it opens. The top screen is with a document open.
    Can I suggest that you read through the pdf 'manual' or a good introductory book for DW before proceeding further, otherwise you will find DW very difficult to use/learn.
    PZ

  • Workspace layout Setup

    Computer crashed after 6 years of using Dreamweaver 4.  Cannot set workspace layout by following the manual pages 32 and 55.  I want the layout to include the all-in-one-window intergrated layout with windows and panels in a single larger application window.  I do not have a CHANGE WORKSPACE button in the gereral category list.
    thanks for your help

    Workspace isn't set or changed from preferences. It's in the Window menu from the toolbar/menubar. You need to click Window>Workspace Layout> New Workspace and set the panels you use where you want them, then save that workspace as your default.

Maybe you are looking for

  • Lightroom Mobile sync  and 2 computers

    Hi All, I've looked but I can't see a specific answer to this question, so I thought I'd make it my first posting. I've just subscribed to Creative Cloud for Lightroom. I liked the idea of being able to sync different devices and continue work whilst

  • Massive modification of "Calling Search Space" under "Directory Number Configuration".

    Hi all, I have a question in order to modify in a massive manner the field "Calling Search Space" inside of the option "Directory Number Configuration". There are a lot of phones that doesn't have the correct CSS, and I need to change it, but are apr

  • Flash and Soundbooth files out of sync on rewind

    If I add a flash animation (52s) and audio into Captivate, they play together beautifully. If I rewind all the way, great. If I drag the slider backward to a point, the sound moves and not the animation. This also happens if I embed the audio in the

  • QM - partial quantity inspection for 04 inspection type

    Hi all, I have one requirement regarding 04 inspection type. suppose my user puts an entry of GRN for 10000 Qty of goods.Then from that 10000 qty, only some percentage of qty should fall in quality.say 10 % I.E. 1000. Is this possible? - like in mate

  • OSX Printing Problems after Installing Bonjour for Windows in Parallels

    Since I installed Parallels a few weeks ago I had no need to print from Windows. Yesterday I had need so I installed the Apple Bonjour for Windows and the necessary print driver (Brother HL-1430) and was able to print. The issue I have is that I can