Is there a Dreamweaver being considered?

Adobe Community,
I have been a Web Master and software trainer for the last several years and have used Dreamweaver (DW) exclusivly ever since it was Macromedia's product. I'm presently using the DW MX 2004 version, which I know is old, but have had great luck till now using and teaching other clients in my Studio and Community Colleges how to cteate Web Sites and post them. I have cteated over 100+ sites using tables, CSS NAV buttons, lots of Multimedia content and had clients purchase the latest version of DW to maintain the site. Untill now I hadn't any real issues on new versions until your CS4 and CS5 deleted the HTML dialog boxes for font tags in the Property panel. I had a client purchase DW CS5 and to my surprize found Adobe had deleted those functions in the HTML Property Panel. You have to go the CSS panel to get Font, color, size, justification. It makes a mess of the code.
I know CSS is the latest and greatest method for creating fonts but newbie clients go glassy eyes when I try to explain how to change the text up. It was so easy in the HTML method plus I have over 50+ active sites that I and my clients need to maintain on a monthly basics. With this change you have KILLED any newbie and myselg trying to use your new DW software to easily update the site.
My question is whether Adobe is looking to change back the Property Panel to include these deleted boxes or come out with a DW light like they have done with Photoshop and Premiere, which I use both and train clients on both. The $400.00 plus now the complex desktop has almost killed the product for use by the casual new customer. I have lost several future clients that didn't want to puy the high price software and learn the complicated desktop. Therefore unless Adobe is looking to fix this situation I'm looking for another software such as MS Expression Web or equivalent to go forward with.

My question is whether Adobe is looking to change back the Property Panel to include these deleted boxes
Don't hold your breath.  HTML style tags are deprecated and CSS is here to stay.
Adobe didn't remove these style boxes from the HTML properties panel to punish you.  They did it to generate better code which meets the W3C's modern web standards. http://www.w3.org/standards/
I'm looking for another software such as MS Expression Web or equivalent to go forward with.
I think you'll find MS products work in much the same way.  CSS isn't something you can ignore. It's an integral part of web authoring now. Instead of asking clients to use pro-level software that is beyond their reach, why don't you use Contribute or build your client sites around a Content Management System (CMS) framework which your clients can access from any web browser?
WordPress
PHP & MySQL required
http://wordpress.org/
Content Seed -
Available in ASP, PHP, or  ASP.net
versions - no database needed. 
http://contentseed.com/
Concrete 5 -
PHP & MySQL required
http://www.concrete5.org/
10+ More Free CMS mentioned here:
http://woork.blogspot.com/2008/11/10-free-powerful-content-management.html
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • This is a stupid question but I needed to ask because I don't want to go there and not being able to buy it, but can I get the iPhone 5 brought straight there when I go to an apple store?

    This is a stupid question but I needed to ask because I don't want to go there and not being able to buy it, but can I get the iPhone 5 brought straight there when I go to an apple store?

    And I meant go to the apple store physically without preordering it online, and I meant the Southampton one. So could I just stroll in apple store and buy a iPhone 5 in Southampton apple store and buy the iPhone 5 straight away? Because I didn't want to have to wait? I just want to go in and buy it and go out with it, if you guys get what I mean? And felipeV if it is in stock could I just buy it and leave with my iPhone 5?

  • Y r there 3 documents being genrated in bdc

    I have written code for bdc that works if plant is kf* and allows only non ware house storage locations.
    Till then its working fine....
    but user asked y r there 3 documents being genrated in bdc???when the consumption is on 1 process order nly
    i would like to club all the materials that are listed fora particular order in the same material document.
    User also wanted format download facility also.
    Please let me know what all the changes to be done

    my code is like this, now let me know what are the changes i have to do in detail.
    if not  it_data1 is initial.
    SELECT *  into table iT_320 FROM  T320
      for all entries in it_data1
    where WERKS = it_data1-werks and
               LGORT  = it_data1-lgort.
    endif.
      LOOP AT IT_DATA1 .
      read table iT_320 INTO wa_320 with key werks = it_data1-werks
                                              lgort = it_data1-lgort.
    if sy-subrc = 0 .
      delete it_data1 index sy-tabix.
      ENDIF.
    endloop.
    clear : it_data1.
    LOOP AT IT_DATA1 .
      DATA LV_DATE(10) TYPE C.
    WRITE SY-DATUM TO LV_DATE.
        perform bdc_dynpro      using 'SAPMM07M' '0400'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RM07M-WERKS'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'MKPF-BLDAT' LV_DATE  .
    perform bdc_field       using 'MKPF-BUDAT' LV_DATE.
    perform bdc_field       using 'RM07M-BWARTWA' '261'.
    perform bdc_field       using 'RM07M-WERKS' IT_DATA1-WERKS.
    perform bdc_dynpro      using 'SAPMM07M' '0421'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MSEG-WERKS(03)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    CLEAR : FLAG1.
    W_FLAG = W_FLAG + 1.
    CONCATENATE 'MSEG-MATNR' '(' W_FLAG ')' INTO W_MATNR_C.
    perform bdc_field       using  W_MATNR_C
                                   IT_DATA1-MATNR.
    CLEAR : QTY.
    QTY = IT_DATA1-ERFMG.
    SHIFT  QTY LEFT DELETING LEADING SPACE.
    CONCATENATE 'MSEG-ERFMG' '(' W_FLAG ')' INTO W_ERFMG. "QUANTITY
    perform bdc_field       using W_ERFMG  QTY.
    CONCATENATE 'MSEG-ERFME' '(' W_FLAG ')' INTO W_ERFME. "Batch
    perform bdc_field       using W_ERFME IT_DATA1-ERFME.
    CONCATENATE 'MSEG-LGORT' '(' W_FLAG ')' INTO W_LGORT. "Batch
    perform bdc_field       using W_LGORT IT_DATA1-LGORT.
    CONCATENATE 'MSEG-CHARG' '(' W_FLAG ')' INTO W_CHARG. "Batch
    perform bdc_field       using W_CHARG
                                  IT_DATA1-CHARG.
    CONCATENATE 'MSEG-WERKS' '(' W_FLAG ')' INTO W_WERKS. "Batch
    perform bdc_field       using W_WERKS
                                  IT_DATA1-WERKS.
    perform bdc_dynpro      using 'SAPLKACB' '0002'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/EENTE'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'COBL-AUFNR'.
    perform bdc_field       using 'COBL-AUFNR' IT_DATA1-AUFNR.
    perform bdc_dynpro      using 'SAPLKACB' '0002'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/EENTE'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'COBL-KOSTL'.
    perform bdc_dynpro      using 'SAPLKACB' '0002'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/EENTE'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'COBL-KOSTL'.
    perform bdc_dynpro      using 'SAPLKACB' '0002'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/EENTE'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'COBL-KOSTL'.
    perform bdc_dynpro      using 'SAPMM07M' '0421'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MSEG-ERFMG(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BU'.
    perform bdc_dynpro      using 'SAPLKACB' '0002'.
    perform bdc_field       using 'BDC_OKCODE' '=UPDA'.
    CALL TRANSACTION 'MB1A' USING IT_BDCDATA MODE 'A'.
    CLEAR: IT_BDCDATA.
        REFRESH: IT_BDCDATA.
    ENDLOOP.

  • Production version with status " locked for any use" being considered

    Dear All,
    while creating integration model for PDS , materials with production version locked for any use are being considered. Can any body put some light on it.
    My requirement is that in creation of integration model it should not take production version which are locked for use.
    Regards
    Arun Negi

    Check OSS Note 854561 - PDS does not recognize any locked production version in R/3
    "Symptom
    If a production version is locked in the R/3 System, this change is not transferred to the related production data structure (PDS) in APO. The PDS is therefore still used as a source in APO in the plan explosion. This causes errors during planning and results in terminations when an order is converted and subsequently transferred to the R/3 system."
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=854561
    Manish
    Edited by: Manish Kumar Rathi on Oct 10, 2008 11:46 AM

  • HT4623 Why every time i format my computer i have to ask acess of my iphone to be used by same computer,my unique pc is being considered as third in five authorizations allowed.

    Why every time i format my computer i have to ask acess of my iphone to be used by same computer,my unique pc is being considered as third in five authorizations allowed.
    Thks for your promptly reply.

    Read here about authorizations/de-authorizations:
    http://support.apple.com/kb/HT1420
    Don't know why you're formatting all the time, but remember to de-authorize BEFORE you format.

  • Is there a human being I can talk to at Adobe?

    Is there a human being I can talk to at Adobe? I bought a Nikon D800. My Photoshop Elements 8 does not work. I like it. Will Photoshop Elements 10 work? Is 10 similar to 8, or will I have to start all over again cataloging my photos? Help!!!

      You could convert your NEF’s to Adobe DNG and then continue using PSE8. Otherwise an upgrade to PSE10 will work.
    Windows
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5375
    Mac
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5374

  • We are in the military overseas in Japan.Is there anyway of being able to signin to our tune ACCOUNT ON THE APPLE tv?

    We are in the military overseas in Japan.Is there anyway of being able to access our itunes account on our apple tv here?

    It should be on systems (I believe on channel 683) before the tourney begins.  Check on Monday even if it doesn't show in the guide (try direct tuning the channel # since the guide sometimes lags channel adds).  Knowing Verizon though, no guarantees.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.

  • Cash Discount if F110 being considered even after expiry of due date

    Hello SAP Consultants,
    I have setup a payment term for client which is 1% disc if paid within 10 days of invoice date. On running automatic payment program F110, irrespective of no. of days, the payment program generates discount of 1%. (I am using standard payment method C-cheque)
    My doubt is why SAP is applying cash discount in F110 even when the payment is being made after 10 days say after a month.
    I have cheched the setting in FBZP in All company Codesfor Maximum Cash Discount. The tick is not there means it is not activated. Still we are getting the above error in F110.
    Regards,
    Abhishek

    Hi Abhishek,
    The problem you're experiencing is caused by your payment term configuration, which probably has 1% 5 days but does not include how to handle cash discount after that date e.g. 0% 6 days. You can test this quite simply (presuming you have access to a test system) by changing the payment term configuration to include 0% for 6 days then post a vendor invoice with the same details provided in your message and process for payment. Alternatively find an existing vendor invoice with payment term you mention and double click into the vendor line item and add 6 days to the Cash discount days 2 field but leave the Cash discount percentage 2 field blank (see example below) then process for payment. I have also pasted the text from OSS note 48384 below which refers to this issue.
    Vendor line item - Additional details tab
    Payt terms   XXXX                    Days/percent 5   1.000  % 6          %    
    Expected results (based on details mentioned in your message):
    Payment run posting date: 15/03/10  -  Posting date of next payment run: 16/03/10
    cash discount still valid and should be deducted
    Payment run posting date: 16/03/10 -  Posting date of next payment run: 17/03/10
    cash discount not valid and should not be deducted
    SAP Note 48384 - Cash discount is taken although item overdue
    Note Language: English Version: 4 Validity: Valid Since 20.02.1997
    Summary
    Symptom
    Vendor invoice is paid with cash discount by the payment program
    although the cash discount period has expired, the "Always max. cash
    discount" flag in configuration Payment program is not set and no cash
    discount agreement is noted in the document either.
    Additional key words
    F110, payment run
    Cause and prerequisites
    If in the terms of payment only, for example, 10 days 3 % and nothing else has been defined (further fields are not filled at all), the payment program has no instructions as to how the payment is to be made if the first cash discount period has expired. Nevertheless, the payment is made with cash discount terms 1 under these circumstances.
    Solution
    Choose other terms of payment.
    Header Data
    Release Status: Released for Customer
    Released on: 19.02.1997 23:00:00
    Master Language: German
    Priority: Correction with medium priority
    Category: Consulting
    Primary Component FI-AP Accounts Payable
    The Note is release-independent

  • Sales Order in Entered Status are being considered in planning

    Hi,
    We're having issues in ATO items, where we've sales orders, which are not booked yet so there is no supply created; however, ASCP is considering these entered SO in planning and suggesting the planned orders.
    Regards
    Nikhil

    ASCP considers the sales orders if it is scheduled. Status does not matter.
    If you don't want the entered sales orders to go to ASCP, find out who is entering a scheduled ship date.
    It may be a user or it may be your order workflow.
    Hope this answers your question
    Sandeep Gandhi
    Independent Techno-functional Consultant

  • TS3899 Changed Yahoomail password and have tried to change it on IPad mini.  Changes, verivies, but go back to that accoundt and old password is there.  Mail being received but account was hacked from my Ipad or phone.  How do I change password permanentl

    Changed Yahoo email password due to being hacked, I think.  Tried changing of Ipad mini but reverts to old password when go to account settings again.  Tried deleting and adding mail account anew, but same deal.  How do I get password to permanently change.

    Sign out of old ID and sign in with new.
    Settings>iTunes and App Store>Apple ID

  • Forecast horizon values are not being considered in Total demand row

    Hello Experts,
    We are in SCM 4.1 Version.
    I have a question regarding Forecast horizon consderation in Planning book.
    We have a weekly data view In our  Planning book,and in that planning data view "Total demand" row is not calculating correctly for the products with Forecast horizon .
    The entire Forecast is counted in Total demand without considering forecast horizon value for that Product.
    But this is working fine for Daily data view.
    I have also noticed that, Total demand values are calculating correcly in weekly view ( Forecast horizon value from the Product master is taken into account ) only when the Forecast horizon value crossing that week bucket.(i.e >7 days).
    But usually we will have a Forecast  horizon value of 3 days for all our products,.
    What should we do to get the Total demand values correctly?
    Thanks in advance..
    SAPLOUIS.
    Edited by: saplouis on Dec 5, 2010 6:42 AM

    Check the macros on data view
    Regards
    Aban

  • IT0210 exemptions not being considered in BSI script

    Dear all,
    If you have note 1455498 the exemption will not be considered in BSI Interface.
    To solve it you need to apply SAP note 1466714. Even though you don´t use BADI  PC10_PAY0008.
    Kind regards,
    Graziela Dondoni

    Hi Sudhir,
    Can you check if following wage types are present in system by processing of INPET-
    Leave Encashment Exemtwage type (/4V7) - This wage type stores the amount entered as the sum of all leave encashment exemptions availed. It gets processed only on the event of the separation of the employee from your organisation. The value of this wage type gets deducted from the maximum exemption limit for leave encashment exemption
    Gratuity Exemptionwage type (/4V8) - This wage type stores the amount entered as the total gratuity availed. It gets processed only on the event of the separation of the employee from your organisation. The value of this wage type gets deducted from the maximum exemption limit for gratuity exemption amount.
    VRS Exemption wage type (/4V9) - This wage type stores the amount entered as the Voluntary Retirement Scheme (VRS) exemption amount availed. VRS Exemption wage type (/4V9) gets processed only on the event of the separation of the employee from your organisation. No tax exemption is given, in case the employee has availed of the same with any of the previous employers
    If these wage types are present then calculation is correct.
    Plz note that the value of these wage type get deducted from the maximum exemption limit of the corresponding exemption amounts. Exemption has already compared been considered for them and tax component were computed correspondingly.
    Let me know if stll not clear.
    Regards,
    Praveen

  • Drivers that are currently installed but its not familiar and theres no drivers being inserted

    please help me what should i do.. is that a virus?? cuz i been seeing this drivers in my laptop but i havnt partitioned or inserted any drivers but then i still see drivers that are not familiar with me...theres 3 drivers or more please im afraid that
    y laptop might have infected

    Hi,
    What are these drivers? and what's your problem?
    To detect misbehaving drivers, please attempt to run Driver Verifier.
    http://support.microsoft.com/kb/244617/en-us
    Andy Altmann
    TechNet Community Support

  • Supply quantity isn't being considered in min-max planning report Oracle

    Oracle 12 Issue:
    system isn't considering the open PR/PO while suggesting re-order quantity in new PR of same item code. I am giving all parameters with "Yes" except include non-netable parameter with "NO". I take system current date as default date for "Demand & Supply cutoff date".
    Please help me to resove/identify this issue.
    Zeeshan Khan
    [email protected]

    Hi,
    Issue #1:
    Need by Date on the purchase order/Requisition line is after the supply cut-off date entered by the user (or defaulted) when launching the Min-max planning report.
    Fix: Please re-launch the Min-max planning report with higher supply cut-off date.
    Issue #2:
    Destination type stamped on the purchase order line / distribution is Expense.
    Since it will not affect the on hand quantity for the item, the Min-max planning report is ignoring this purchase order.
    Fix:Please retry with a new purchase order with destination type set as Inventory.
    Thanks
    -Arif.

  • GR posting date is being considered as Shelf life expiry date

    Following settings made in material master:
    In Purchasing view: Batch management check box ticked.
    In Plant data / stor.1 view: (Shelf life data): Max storage period is 1, Time unit: YR
    Min remaining shelf life:1, Total Shelf life: 365, Period Ind for SLED: D
    Following data entered in GR:
    Document date: 10.03.2011, Posting date:10.03.2011
    In batch management tab of GR: Date of Manufacturing is :01.12.2010, SLED/BBD is appearing as 01.12.2011
    While taking shelf life report (on 12.03.2011) for the said material following output is displayed:
    Remaining shelf life             SLED / BBD
    -2 days                                10.03.2011
    In  batch display (MSC3N) Shelf life exp. date is appearing as 10.03.2011 where as in GR document it is showing as 01.12.2011.
    Kindly help where is the problem.
    regards,

    Hi,
    It is interesting.
    I understood the problem but for getting solution, you have to get ABAPeru2019s help. 
    In calculation in report, the report date 12.03.2011(DD.MM.YYYY) is taken by system as 03.12.2011(DD.MM.YYYY) and SLED is as per GR document 01.12.2011(DD.MM.YYYY). So 1-3= -2 days. Now, for calculating SLED date, system is deducting 2 days (or you can say adding -2) in report date 12.03.2011 (DD.MM.YYYY). So this is 10.03.2011.
    So in batch display (MSC3N), it is showing calculated date 10.03.2011.
    Please explain it to ABAPer & debug it, you will get solution.
    Before that try one thing. Check your user profile for date format. If it is MM.DD.YYYY, change it to DD.MM.YYYY, or vice versa. Then take report again , also check in MSC3N.
    BR.

Maybe you are looking for

  • Error-M2O-Settlement rule for assembly order for item...could not be genera

    Hi, When I am creating Sales Order (VA01) for M2O, I am able to do the costing and copy the EK02 condition type. I have verified the the incompletion log, it indicates that document is complete. But while saving the sales order, the below error messa

  • Acrobat 9.0 Javascript Debugger

    I'm trying to learn some stuff about writing javascript in documents for acrobat.  All of the documentation that i've looked at tells me that i have to go into Edit Preferences ---> JavaScript and hit the Enable Javascript Editor Checkbox.  At this p

  • How to use same taskFlow with inputparam twice on page

    Hi, I have 2 taskFlows (Task1, Task2) with imputParams and CallMethod default activity. Tsak1 is form, task2 is table. I need to use Taskflow 1 twice on same page. TaskFlow1(without param)-taskFlow2(get param from taskflow1)-TaskFlow1(get param from

  • Attributes are not visibles in drop down

    HI EXPERTS, When i am trying to fix the setting attributes in shopping cart,the drop down of the attributes is blank.The error is occiring to myself only for another user is ok.  Please suggest. Thanks & Regards VINAY.

  • What is a upnp.log??????

    Every now and then a file called upnp.log appears in my Hard Disk folder. What is it?