Dreamweaver CS6 glitch - HTML tag pop up pops up and stays

I'm in code view typing code. Sometimes the HTML tag pop up will pop up and instead of being helpful, it just stays there and the auto-complete HTML tag functions stop working. It is quite annoying on two levels. I cannot consistently recreate the issue but it happens every other day. I "fix" the problem by restarting Dreamweaver every time.
Can you guys patch this issue? I'm using Dreamweaver CS6 on Mac OS X. Here is a screenshot of what it looks like. Notice how this pop up just stays there even as I scroll through the code.
Thanks.

What happens if you hit Shift+Spacebar?
Nancy O.

Similar Messages

  • Can i still buy Dreamweaver cs6 (student edition) from say.. ebay. And get a licence key from Adobe?

    I have my student proof all ready to go.
    Thanks in advance.

    The "perpetual license" version (disk version) of DWCS6 is still available, you don't HAVE to go with the Creative Cloud for that one.
    Keep in mind though, they won't be adding many, if any, new features to it.
    As long as it isn't a cracked/pirated version, you'll be fine.

  • How to use html Tags from MySQL with PHP

    I like HTML tags like <b>bold</b> or <BR>
    and others placed in the MySQL database and used by PHP to show up
    in my pages but I don't succeed. I tryied HTML encode
    (htmlentities) from the bindings POP-up menu but nothing happened.
    What is the way this should be acomplished and where is HTML
    encode (and the others in the pop-up menu) being used for?
    Any help will be appreciated,
    Jos

    arnhemcs wrote:
    > I like HTML tags like
    bold or <BR> and others placed in the MySQL
    > database and used by PHP to show up in my pages but I
    don't succeed. I tryied
    > HTML encode (htmlentities) from the bindings POP-up menu
    but nothing happened.
    Just store the HTML as plain text in your database. Using
    htmlentities()
    turns < into &lt; and so on. Using it is what's
    preventing your HTML
    from displaying correctly.
    David Powers
    Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    http://foundationphp.com/

  • Mac Dreamweaver CS6 very slow to open files

    Hi
    My Mac Dreamweaver CS6 opens html files in about 1-2 minutes! It is very very slow. It all works when the file is open but it is the actual opening that is slow.
    I have turned off external files but no change.
    Any ideas??
    Thanks
    Mac Pro
    Processor  2 x 2.8 GHz Quad-Core Intel Xeon
    Memory  4 GB 800 MHz DDR2 FB-DIMM
    Graphics  ATI Radeon HD 2600 XT 256 MB
    Software  Mac OS X Lion 10.7.4 (11E53)

    I've been strugling with this issue for  a long time.
    I've found that Dreamweaver takes  about 2 minutes to open  CSS files with @import url for  font face.
    for example:
    @import url(http://fonts.googleapis.com/css?family=Oswald:400,300);
    i've never had problem with  big files but if i place this line into my 20k css file,  it takes for ever to load.
    if i  remove it, it opens  fast  as usual.
    Please don't tell me  that it could be a  Google problem  thatis loading slow  because it's not.
    the font file isnt  big enough either.
    Of course i have deativated the "load things from external urls" setting.
    any ideas on how could this be  fixed withoput changing my work style ?

  • How do I change the default color scheme in Dreamweaver CS6?

    Hi All
    I just updated to CS6 on my work computer from CS5 on my personal computer (preferences and stuff were not transferred), and I'm trying to figure out how I can import my custom color scheme that I was using in CS5. In CS5 I was able to replace the Colors.xml file instead of going through each individual color option. I haven't had the same success with CS6.
    In CS5 the Colors.xml file was located at this path (Mac)
    /Users/%name%/Library/Application Support/Adobe/Dreamweaver CS5/%localization(en_US)%/Configuration/CodeColoring
    The problem with CS6 is that there is no Dreamweaver CS6 folder at that path after "Adobe/"
    Has anyone else encountered this problem? Any solutions? Looking at code on a white background is hurting my eyes!

    Do you think this maybe has to do with Mountain Lion?
    Here's a screenshot of no Dreamweaver CS6 folder in Library/../..
    And no, it's not in the "Adobe Creative Suite 6 Design and Web Premium" folder either. I keep going through all of the folders hoping the Dreamweaver cs6 folder will show up, but nothing! Thanks for your help guys. If you think of anything else, please respond!

  • HTML Tags in sql

    Hi guys
    Im executing the below sql with the html tags, as it gone mess and returning error like invalid table name.
    SELECT '<p style="font-family: Script MT Bold;color: #800080;font-size:35px;text-align: center;">' || 'Welcome' || PAPF.FULL_NAME|| '</p>
    <p style="font-family: Times New Roman;color: #000000;font-size:15px;text-align: center;"> The Employees Information of</p>
    <p style="font-family: Times New Roman;color: #000000;font-size:20px;text-align: center;"> <strong>Central Bank of Kuwait</strong>'
    FROM FROM PER_ALL_PEOPLE_f PAPF, FND_USER FU
    WHERE PAPF.PERSON_ID = FU.EMPLOYEE_ID AND
    TRUNC(SYSDATE) BETWEEN PAPF.EFFECTIVE_START_DATE AND
    PAPF.EFFECTIVE_END_DATE
    Im not sure whether i missed any || or quotes in html tags while using with the column name in the select statement
    Thanks in advance.
    Regards,
    Vel

    Don't do this via the SQL selection as hardcoded HTML??
    I think the following 2 approaches far superior.
    If you need the actual SQL projection to contain HTML, implement user functions for data transformation. E.g.
    SQL> create or replace function MakeDiv(
      2          divBody varchar2,
      3          fontColor varchar2 default 'black',
      4          tooltip varchar2 default null )
      5  return varchar2 is
      6          DIV_TEMPLATE constant varchar2(4000) :=
      7          '<div style="color:$COLOR" title="$TOOLTIP"> $BODY </div>';
      8 
      9          htmlDiv varchar2(4000);
    10  begin
    11          htmlDiv := replace( DIV_TEMPLATE, '$BODY', divBody );
    12          htmlDiv := replace( htmlDiv, '$COLOR', fontColor );
    13          htmlDiv := replace( htmlDiv, '$TOOLTIP', tooltip );
    14          return( htmlDiv );
    15  end;
    16  /
    Function created.
    SQL>
    SQL> select MakeDiv( ename, 'blue', 'Employee '||empno ) from emp;
    MAKEDIV(ENAME,'BLUE','EMPLOYEE'||EMPNO)
    <div style="color:blue" title="Employee 7369"> SMITH </div>
    <div style="color:blue" title="Employee 7499"> ALLEN </div>
    <div style="color:blue" title="Employee 7521"> WARD </div>
    <div style="color:blue" title="Employee 7566"> JONES </div>
    <div style="color:blue" title="Employee 7654"> MARTIN </div>
    <div style="color:blue" title="Employee 7698"> BLAKE </div>
    <div style="color:blue" title="Employee 7782"> CLARK </div>
    <div style="color:blue" title="Employee 7788"> SCOTT </div>
    <div style="color:blue" title="Employee 7839"> KING </div>
    <div style="color:blue" title="Employee 7844"> TURNER </div>
    <div style="color:blue" title="Employee 7876"> ADAMS </div>
    <div style="color:blue" title="Employee 7900"> JAMES </div>
    <div style="color:blue" title="Employee 7902"> FORD </div>
    <div style="color:blue" title="Employee 7934"> MILLER </div>
    14 rows selected.
    SQL> An even better approach is not to do this in the SQL projection - but instead have a PL/SQL framework that accepts a SQL, and turns the SQL projection of that SQL into a HTML report. Where this framework can use different templates to generate different types of HTML reports.
    This approach is very successfully used by Oracle Apex.

  • Text in internal table with HTML tags.

    Hi ,
    I have Text in internal table with HTML tags.
    The text has to be shown in output of smartform as formatted text.
    That is the smartform should READ the HTML TAGS , convert the text accordingly and show in the output as formatted text.
    I dont want to make a webform . This is for NORMAL SPOOL output and NOT for WEB OUTPUT.
    IN SHORT
    :- the text in the internal table is like this ( please ignore the dot in the HTML TAG )--
    <html><.U>this is heading</.U>Line with no break<.br>some content text</.br>
    </html>
    OUTPUT
    <U>this is heading</U>Line with no break<br>some content text</br>
    1)  Can I can get the output and store it as text in a string variable and show in the smartform  ?
    In this case I want to know how to convert  and store in a variable  in sap .
    OR
    2) Can the text element convert the text with HTML TAGS to html formatted output and show it ?
    Regards,
    Jagat

    Hi,
    Use the FM SCP_REPLACE_STRANGE_CHARS and check
    See the
    Converting html special characters to plain characters (e.g. u00FC to u00FC)

  • Smartform with text containing html tags

    I am reading from a table that contains html tags like
    <br>
    <menu>
    <LI type="disc">This is a line which contains html tags
    that goes over to 2nd line
    <LI type="disc"> This is also another line which contains html
    tags.
    and each line is stored in a different row. The customer has agreed to use only 3 of the above html tags (
    <br>, <menu> and <LI type="disc">
    When the output is previewed in smartforms, the html tags needs to be formatted and not print in raw format as follows: 
    <LI type="disc">This is a line which contains html tags
       that goes over to 2nd line
    <LI type="disc"> This is also another line which contains html
       tags.
    How can this be done ?

    ok understood...
    you can try this
    Loop at i_html into wa_html.
    tmp = strlen( wa_html-line).
    do tmp times.
    if wa_html-line+0(1) = <
    l_start = 1.
    __elseif wa_html-line+0(1) = >
    l_start = 0.
    concatenate l_char wa_html-line+0(1) into l_char.
    endif.
    if l_start = 1.
    concatenate l_char wa_html-line+0(1) into l_char.
    wa_html-line = wa_html-line+1(l_tmp - sy-index) OR use the keyword SHIFT LEFT...plz chk the syntax
    elseif l_start = 0 and l_char = <LItype=disc>
    concatenate <BULLET>  wa_html-line into  wa_html-line separated by space.
    endif.
    enddo.
    modify i_html form wa_html.
    endloop.
    now u define two text element one with bullet and another without bullet. this is how u insert bullet:
    goto to the texteditor of a text element in smartform. Its a small button on the left hand side of.
    Then goto insert>characters>sap symbols.
    for ur requirement u can use the symbol SYM_FILLED_CIRCLE.
    Remember these icons or symbols whatever u will not be able to see in print preview....u have to take a print
    and see
    Now at the time of display check if the line contains the
    tag <BULLET> ( if wa_html-line+0(8) = '<BULLET>')
    if the line has the tag then display ur text in the text element with bullet
    otherwise
    display it in the non bullet text element..
    remeber to remove the tag before dispalying
    hope this solves ur prob...

  • How to put back html tags

    Hi, I have a program that reads an html file, parses the html tags, now I execute code, and then would like to append the original file with my results...
    How would I put back in the html code that I parsed out? Or would I have to go through it & search for where the information ends, like right before the </body> tag, and then write in html code there...
    What do u think?

    yes, what I did, was read in each line, parse and put into a new StringBuffer... and finally save this into an ArrayList to manipulate it in the program...
    What I'm doing now, is trying to rewrite the html file, by
    PrintWriter cout = new PrintWriter (new
                                  FileWriter ("scores.html"));
    and then
    cout.print("<html>");
    etc, etc...
    and fill in the scores as
    cout.print(<li>);
    cout.print(ArrayList.get(i)); //the saved score
    etc.
    Right now, this isn't writing to the html file, so I wonder if PrintWriter is the right thing to use...
    Thanx for ur help!

  • Optimizing images | Learn Dreamweaver CS6 | Adobe TV

    In Dreamweaver CS6, Adobe has streamlined the integration between Photoshop and Dreamweaver. Learn how to take images directly from Photoshop to Dreamweaver. Then, see how to optimize the images and edit them in Photoshop using Adobe's round-trip editing feature.
    http://adobe.ly/IUFnwT

    warlock7,
    I tested this out in Dreamweaver CS6, but in all cases the drag-and-drop was functioning properly.
    If you create a new document using one of the included layouts (e.g. 3-column liquid) and insert an image in it, are you able to drag it around?

  • SharepointWebControls RichTextField also display HTML tags

    Hi,
    I'm having an issue upon using SharepointWebControls:RichTextField in my custom Page Layout. When I input values on this field, it also displays the html tag in the display form. Do you have workaround for this? Thanks. :)
    Regards,
    Napster

    Hi Juan,
    Thanks for your reply. I have tried it and a richtextbox was displayed on my page layout but just got a problem upon saving and publishing the page, I think the values that I entered in the control can't be saved. I just went back in using the RichTextField
    and made a workaround by creating a script that will hide the html tags showing in my Display and Edit Form page. 
    Regards,
    Napster

  • Validate the user input against HTML tags

    There is text field in my form, the user inputs in this field should be validated against HTML tags. like:
    <H1>HAI</H1> ,
    and "<script>alert('Hai')</script>"
    it should say pls validate a text without HTML tags.
    Pls let me how can I achieve this?
    Regars,
    Nagalakshmi

    You have to spilt the text in the form field, identifiy the difference between the text and HTML tags. The available options are ucan use String.lastIndex("<") methos apply some logic to find the same
    baiju

  • B2b enabling HTML tag in description

    hello
      I followed the 1144654 note to enable the HTML tag in the description area and made the modification as per the note ,but it giving error.Actually I am working one IDES system and done the modification directly on the jsp pages
    Regards
    Kiran Posanapalli

    Hi Kiran,
                   we followed the same note and its working fine. please paste the error your getting.
    Regards,
    Anil.

  • Does Html tags interprets by oracle reports 10g?

    Hi everyone,
    I created a tabular style report on a table in which one of the column is like the following
    TEST_TABLE
    test_table_id 1
    test_table_dsc aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbcccccccccccccccccccdddddddddddddddddddddddddd
    when i diplaying this record in the oracle reports i want to break that test_table_dsc column like this
    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb cccccccccccccccccccccccccccccccccccc dddddddddddddddddddddddddddddddddddd
    i used the HTML "br" tag and set the "contain HTML tag property " to Yes
    Changed the database column like the following aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "br"
    bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb "br"
    ccccccccccccccccccc "br"
    dddddddddddddddddddddddddd
    It is interpreting some other tags like bold tag "b" and underline tag "u"..But if i put the "br" tag it is not interpreting.It is just showing like that. Is there any other way to do line breaks (according the requirement)
    Message was edited by:
    phani marella
    Message was edited by:
    phani marella

    Hi Phani,
    I just tried with the value specified by you. Here is my report :)
    I have created a report with a formula column which returns following text:
    "<html><body>< i >< b >a< /i >< /b >< br >bb< br >ccc< br >dddd< /body >< /html >" (without double quotes). And I set the field's "Contains HTML Tags" property to Yes.
    And my observations are:
    1. Many times I tried in paper layout, it is simply showing the HTML code, but not parsing the tags. :(
    Now executed the report from browser using http://localhost:889/reports/rwservlet.....
    2. If DesType=HTML, everthing is fine and I got the result as I expected. and the result is displayed below
    <b><i>a</i></b>
    bb
    ccc
    dddd
    3. If DesType=pdf. the result is NOT as expected. And I found only bold < b > and < i > tags are interpreted/parse but no other html tags as specified in help. The output is:
    < html >< body ><b><i>a</i></b>< br >bb< br >ccc< br >dddd< /body >< /html >
    This is same with DesType=RTF.
    Conclusion:
    * Full HTML tags are supported only when you run a report with DesType=HTML and ContainsHtmlTags=YES.
    * When DesType is PDF and RTF only limited HTML tags are supported/parsed. Those are Text Style (bold, italics, underline, and strikethrough) and Text Attributes (font name, font color, and font size) as specified in help (you mentioned the same in above post).
    * Even paper layout supports the same limited tags, but not all HTML tags.
    Cheers,
    Gouri Sankar

  • How can I create a pop up window for a Windows Media video file in Dreamweaver CS6?

    I have a Windows Media video file on my homepage that plays automatically when you go to the website. I'd like to change my homepage. I now would like to place text that says "click here to play the video" and I'd like a pop up window to open and play the video. I'm using Dreamweaver CS6. Your help will be appreciated. Thanks.

    BlueSapphire777 wrote:
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    Is the code you told me about (above), is it necessary for older browsers such as ie8? I thought you were saying it was for the HTML5 tags and I wasn't sure I'd bother with it. If it helps people with ie8, I probably should add it.
    I include it (or a link to a localized copy of the file) by default now.
    To truly support the ancient browsers out there, you'd likely need something like...
    <video width="500" height="500">
        <source src="video.mp4" type="video/mp4" />
        <source src="video.ogv" type="video/ogg" />
        <source src="video.webm" type="video/webm" />
        <object width="500" height="500">
        <param name="movie" value="video.swf" />
        <embed src="video.swf" width="500" height="500"></embed>
        </object>
    </video>
    I don't bother with a Flash fall back for old browsers though. I just put in text letting the viewer know they're behind the times pretty severely, like...
    <video width="500" height="500">
        <source src="video.mp4" type="video/mp4" />
        <source src="video.ogv" type="video/ogg" />
        <source src="video.webm" type="video/webm" />
        <p>Your browser is horribly, helplessly and hilariously outdated. Visit <a href="firefox.com" target="_blank">www.firefox.com</a> to download something better, more secure, modern, worthwhile, etc, etc...</p>
    </video>
    For junky old browsers that can't see any HTML5 (which the <video> and <audio> tags are), they get a text message to get something better and a link to go there.

Maybe you are looking for

  • Notifications not showing on iPad

    I have installed latest updates I have changed the app setting in the notification center The same app shows notifications on my iPhone Will not display on my iPad

  • Rotating Sprite Center Axis

    Hi, I found an interesting tutorial (link) and created a working model, adapting it as needed. So far, when I center the container sprite and rotate it, it appears to first rotate from a 0,0 registration point, instead of from its center. I've tried

  • Blackberry to Blackberry Direct Data Transfer

    Hello, Does anyone know if this is possible? There are issues with the PC sync so that's not a possible option, and we're talking about a lot of email/space.  I'm justbasically trying to mirror one to the other. I asume you would need a specialized c

  • Preview window stuck

    Lately my preview window gets stuck on one scene (in this case, a photo) and will not change thru the timeline or clips view.... Les

  • All my contacts have just disappeared. what should i do?

    All my contacts have disappeared off my phone- i have synced with my macbook but they havent come back- help!