Slide Behavior Dreamweaver CS3

I have a created a Dreamweaver page with a horizontal set of 5 nav buttons along the top of the page.
I am trying to make it so that when a button is moused over, my div tag that includes a table, will slide onto the screen.
To get the tables to load on the screen where I can see them, I have also assigned a slide behavior to the other tables to slide up and out of the way.
It seems like it works on the first button I try, however, it doesn't for other buttons. When I refresh the browser it does work on the first button I try however it will not work on others.
Does anyone have a solution for this? Is this Slide behavior limited?
Any help would be greatly appreciated.

I have also assigned a slide behavior to the other tables to slide up
and out of the way
Using tables for this sort of effect will cause problems, try using divs for layout and the show/hide effect.
PZ

Similar Messages

  • Remote Rollover in Dreamweaver CS3

    I want to do something like the effect achieved with the "who" and "why" buttons on this site - http://voicubojan.com/. I'm not sure what to call this to know how to search for how to do it. I have Dreamweaver CS3 and WindowsXP. Thanks for any help.
    Sharon

    It's often called a Disjointed Rollover.
    You can see from View Source in a browser that the example in the link is actually toggling the CSS class in the sidebar from display:block (visible) to display:none (hidden)
    <script>
      $(document).ready(function() {
       $('#content').css('min-height', $(window).height() - 207);
       $('#whoLink').click(function () {
        $('#who').css('display', 'block');
        $('#why').css('display', 'none');
       $('#whyLink').click(function () {
        $('#why').css('display', 'block');
        $('#who').css('display', 'none');
    </script>
    In the Dreamweaver Behaviors panel, (Window > Behaviors), you could also explore "Set Text of Container"

  • Spry Accordian in Dreamweaver CS3

    I am using Spry Widgets in Dreamweaver CS3. However,
    everytime I insert the spry accordion - it doesn't work right if
    too much text is in one of the tabs. For Example: I have 3 tabs in
    the Accordion. Everything works well as it should if there is just
    a little text without a scroll bar. However, when there is a scroll
    bar in the Accordion - it doesn't work right. The panels do not
    minimize, all the panels are open. When I click on one panel, it
    doesn't do what is is suppose to.
    Did I do something wrong here? I don't think I did.

    Without seeing your page (code) I am guesing what your
    peoblem is, but try this.
    Check you have the SpryAssets folder and js content correctly
    referenced between page and external folder. Check that your js
    script, which should be the last script tag set before the closing
    body tag is in place on the page containing the accordion.
    Also, you can change the accordion panel behavior to a
    flexible height, which contains all content, and removes the
    vertical scroll bar. You need to edit the CSS and add a new
    property to the accordion object when it is initialized. Find the
    .AccordionPanelContent CSS class and delete the height property;
    change the overflow property to hidden.
    Next tell the Accordion object to use flexible height by
    going to the bottom of the page and finding the code that has
    (something like: var Accordion1 =
    Spry.Widget.Accordion("Accordion1"); in the code. Add
    useFixedPanelHeights:False to the constructor function so it looks
    like this:
    var Accordion1 = Spry.Widget.Accordion("Accordion1",
    {useFixedPanelHeights:False} );
    That should remove the scroll bars.

  • Dreamweaver CS3 reforderss ColdFusion templates

    Dreamweaver CS3 reorders ColdFusion template code without
    being asked
    When opening a Dreamweaver 8 ColdFusion page, Dreamweaver CS3
    will reorder some ColdFusion tags.
    For example:
    1. <cfswitch expression="#response.errorcode#">
    2. <cfcase value = "10602">
    3. "..Some Code..."
    4. </cfcase>
    5. <cfdefaultcase>
    6. "...Some_Other_Code.."
    7. </cfdefaultcase>
    8. </cfswitch>
    9. <CFQUERY username="#request.dbuser#"
    password="#request.dbpass#" DATASOURCE="#attributes.DSN#">
    10. Blah blah
    11 .</cfquery>
    Saved as a Dreamweaver 8 page and then subsequently opened in
    Dreamweaver CS3, the code becomes jumbled as:
    1. <cfswitch expression="#response.errorcode#">
    2. <cfcase value = "10602">
    3. "...Some_Code.."
    4.
    5. </cfcase><cfdefaultcase>
    6. "...Some_Other_Code.."
    7. </cfswitch>
    8. </cfdefaultcase><CFQUERY
    username="#request.dbuser#" password="#request.dbpass#"
    DATASOURCE="#attributes.DSN#">
    9. ..blah..blah..
    10. </CFQUERY>
    (Note the juxtaposition of the </cfdefaultcase> and
    </cfswitch> tags on lines 7 & 8)
    The Command "Clean up XHTML" has no effect.
    This behavior occurs on every Mac running DWCS3 in our
    office, but doesn't occur on Macs running DW8.
    If the CF page is opened in a Text Editor and saved as a Text
    doc and then opened in DWCS3 as a Text doc, the code stays intact
    and is not scrambled.
    However, as soon as the page is saved with the ".cfm"
    extension, DWCS3 scrambles the </cfdefaultcase> and
    </cfswitch> tags.
    Adobe Dreamweaver Support has duplicated the error but has no
    fix as of yet, so Dreamweaver CS3 is completely useless to me as a
    CF editor.
    Does anyone have any ideas?

    Dreamweaver CS3 reorders ColdFusion template code without
    being asked
    When opening a Dreamweaver 8 ColdFusion page, Dreamweaver CS3
    will reorder some ColdFusion tags.
    For example:
    1. <cfswitch expression="#response.errorcode#">
    2. <cfcase value = "10602">
    3. "..Some Code..."
    4. </cfcase>
    5. <cfdefaultcase>
    6. "...Some_Other_Code.."
    7. </cfdefaultcase>
    8. </cfswitch>
    9. <CFQUERY username="#request.dbuser#"
    password="#request.dbpass#" DATASOURCE="#attributes.DSN#">
    10. Blah blah
    11 .</cfquery>
    Saved as a Dreamweaver 8 page and then subsequently opened in
    Dreamweaver CS3, the code becomes jumbled as:
    1. <cfswitch expression="#response.errorcode#">
    2. <cfcase value = "10602">
    3. "...Some_Code.."
    4.
    5. </cfcase><cfdefaultcase>
    6. "...Some_Other_Code.."
    7. </cfswitch>
    8. </cfdefaultcase><CFQUERY
    username="#request.dbuser#" password="#request.dbpass#"
    DATASOURCE="#attributes.DSN#">
    9. ..blah..blah..
    10. </CFQUERY>
    (Note the juxtaposition of the </cfdefaultcase> and
    </cfswitch> tags on lines 7 & 8)
    The Command "Clean up XHTML" has no effect.
    This behavior occurs on every Mac running DWCS3 in our
    office, but doesn't occur on Macs running DW8.
    If the CF page is opened in a Text Editor and saved as a Text
    doc and then opened in DWCS3 as a Text doc, the code stays intact
    and is not scrambled.
    However, as soon as the page is saved with the ".cfm"
    extension, DWCS3 scrambles the </cfdefaultcase> and
    </cfswitch> tags.
    Adobe Dreamweaver Support has duplicated the error but has no
    fix as of yet, so Dreamweaver CS3 is completely useless to me as a
    CF editor.
    Does anyone have any ideas?

  • Dreamweaver CS3 reformats ColdFusion templates

    Dreamweaver CS3 reorders ColdFusion template code without
    being asked
    When opening a Dreamweaver 8 ColdFusion page, Dreamweaver CS3
    will reorder some ColdFusion tags.
    For example:
    1. <cfswitch expression="#response.errorcode#">
    2. <cfcase value = "10602">
    3. "..Some Code..."
    4. </cfcase>
    5. <cfdefaultcase>
    6. "...Some_Other_Code.."
    7. </cfdefaultcase>
    8. </cfswitch>
    9. <CFQUERY username="#request.dbuser#"
    password="#request.dbpass#" DATASOURCE="#attributes.DSN#">
    10. Blah blah
    11 .</cfquery>
    Saved as a Dreamweaver 8 page and then subsequently opened in
    Dreamweaver CS3 becomes jumbled as:
    1. <cfswitch expression="#response.errorcode#">
    2. <cfcase value = "10602">
    3. "...Some_Code.."
    4.
    5. </cfcase><cfdefaultcase>
    6. "...Some_Other_Code.."
    7. </cfswitch>
    8. </cfdefaultcase><CFQUERY
    username="#request.dbuser#" password="#request.dbpass#"
    DATASOURCE="#attributes.DSN#">
    9. ..blah..blah..
    10. </CFQUERY>
    (Note the juxtaposition of the </cfdefaultcase> and
    </cfswitch> tags on lines 7 & 8)
    The Command "Clean up XHTML" has no effect.
    This behavior occurs on every Mac running DWCS3 in our
    office, but doesn't occur on Macs running DW8.
    If the CF page is opened in a Text Editor and saved as a Text
    doc and then opened in DWCS3 as a Text doc, the code stays intact
    and is not scrambled.
    However, as soon as the page is saved with the ".cfm"
    extension, DWCS3 scrambles the </cfdefaultcase> and
    </cfswitch> tags.
    Adobe Dreamweaver Support has duplicated the error but has no
    fix as of yet, so Dreamweaver CS3 is completely useless to me as a
    CF editor.
    Does anyone have any ideas?

    Dreamweaver CS3 reorders ColdFusion template code without
    being asked
    When opening a Dreamweaver 8 ColdFusion page, Dreamweaver CS3
    will reorder some ColdFusion tags.
    For example:
    1. <cfswitch expression="#response.errorcode#">
    2. <cfcase value = "10602">
    3. "..Some Code..."
    4. </cfcase>
    5. <cfdefaultcase>
    6. "...Some_Other_Code.."
    7. </cfdefaultcase>
    8. </cfswitch>
    9. <CFQUERY username="#request.dbuser#"
    password="#request.dbpass#" DATASOURCE="#attributes.DSN#">
    10. Blah blah
    11 .</cfquery>
    Saved as a Dreamweaver 8 page and then subsequently opened in
    Dreamweaver CS3 becomes jumbled as:
    1. <cfswitch expression="#response.errorcode#">
    2. <cfcase value = "10602">
    3. "...Some_Code.."
    4.
    5. </cfcase><cfdefaultcase>
    6. "...Some_Other_Code.."
    7. </cfswitch>
    8. </cfdefaultcase><CFQUERY
    username="#request.dbuser#" password="#request.dbpass#"
    DATASOURCE="#attributes.DSN#">
    9. ..blah..blah..
    10. </CFQUERY>
    (Note the juxtaposition of the </cfdefaultcase> and
    </cfswitch> tags on lines 7 & 8)
    The Command "Clean up XHTML" has no effect.
    This behavior occurs on every Mac running DWCS3 in our
    office, but doesn't occur on Macs running DW8.
    If the CF page is opened in a Text Editor and saved as a Text
    doc and then opened in DWCS3 as a Text doc, the code stays intact
    and is not scrambled.
    However, as soon as the page is saved with the ".cfm"
    extension, DWCS3 scrambles the </cfdefaultcase> and
    </cfswitch> tags.
    Adobe Dreamweaver Support has duplicated the error but has no
    fix as of yet, so Dreamweaver CS3 is completely useless to me as a
    CF editor.
    Does anyone have any ideas?

  • Dreamweaver cs3 doesn't support php5 ?

    I open a new file with PHP selected. Check in the code, there
    was no php tag already.
    And When I code php, there is nothing call autocomplete. i
    had to type every sing word.
    So dreamweaver nuts with php or what ?

    RunRunforest wrote:
    > I open a new file with PHP selected. Check in the code,
    there was no php tag
    > already.
    That's because PHP is normally used embedded in HTML.
    Dreamweaver
    doesn't know where you want your PHP tags. However, the
    Insert bar will
    insert them for you.
    > And When I code php, there is nothing call autocomplete.
    i had to type every
    > sing word.
    Press Ctrl+Space in a PHP code block to get code hints for
    more than
    2,000 PHP functions.
    > So dreamweaver nuts with php or what ?
    Dreamweaver supports a lot of PHP. It also has a basic suite
    of server
    behaviors that automate such things as user authentication,
    insert,
    update, delete, and select records.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Dreamweaver CS3 Crashing Instantly

    MAC OSX 10.5 Leopard
    I am experiencing an incorrect behavior of Dreamweaver CS3
    instantly crashing. Here's when it happens.
    In Design View... no problems.
    In Code View... instant crash of DW CS3 when I attempt to
    click on any line that has either meta tags or recordset scripting.
    (if I click around parts of the body in code view, no crash).
    Since it's so specific as to what I do when it crashes, what
    do you think is wrong?

    *.ste is the extension that DW uses. BUT - if you have never
    EXPORTed the
    site defintions from within DW, you will not find any of
    these.
    Here is a post from Sonjay, which I found by searching this
    forum for "Mac
    site definition" -
    On the backup of the old drive, look in this directory:
    /Users/you/Library/Application Support/Adobe/Common/9/Sites
    And find the file named "Site Prefs"
    Copy that file into the same location on your new drive.
    The site definitions are defined in this file using from the
    name of your
    hard drive, e.g.,
    "MyHardDrive:Users:Myusername:SiteDirectoryName"
    If the name of your hard drive is different from the old one,
    you'll need to
    open that file in a text editor (NOT Dreamweaver -- something
    like TextMate
    or BBEdit) and do a global find-and-replace to replace the
    name of your old
    hard drive with the name of your new one in all the site
    definitions. Save
    and close.
    Relaunch Dreamweaver.
    You're done.
    Sonjay
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "TMCDesign" <[email protected]> wrote in
    message
    news:fh3ga3$3ud$[email protected]..
    >
    quote:
    > They are *.ste files, and they are stored where you put
    them when you
    > exported them.
    >
    >
    > In Leopard, there is an awesome new utility that backs
    up your computer
    > automatically, just "plug and play" like all Mac things
    that are
    > great.
    >
    > I just needed to know what type of file it was I was
    looking for. When I
    > go
    > back and look at my various stages of backup, I can then
    pluck the file
    > out of
    > wherever it is.
    >
    > .ste (that's the Mac extension?)
    >
    > Thanks for the help.
    >

  • Dreamweaver CS3 slow performance issue confusions & work arounds

    Never mind...I found it.
    Of course I have all the firewall, worm, scanning, phishing
    filtering, full time protect, and everything else turned off when I
    am working on a remote/testing site however I found the Symantec
    antivirus email scan being enabled (doesn't it just interact with
    my email program?) was getting in the way of DW9 ftp operations,
    causing some lagging that was putting DW9 into an unstable mode
    during and immediately after (10 seconds) ftp operations.
    The CPU still spikes to 99% during ftp functions but DW9
    works even though it's likely taxed to the max but when I turn off
    email scan DW9 returned to a functioning state during ftp and
    remote file view. Whatever it takes huh?
    PS: email scanning only never effected DW8.02
    My System Info: properly configured (as in: everything works
    or I fix it) Toshiba - XP pro SP2 – Pentium 4 - 2.3GHz
    – 1.5 GB ram – Intel extreme graphics card 64 MB ram
    – Apache 2.2 server – PHP 5 – MySQL 5 -
    phpMyAdmin – Dreamweaver 8.02 – Interakt Kollection
    3.7.1 – Dreamwweaver 9 - DeVtoolbox – Flash –
    GoLive - Photoshop - ImageReady – Illustrator – Acrobat
    – CuteFTP – Putty SSH - blabla...)

    sundap wrote:
    > Hey , i am pretty new to PHP and MYSQL. I have a login
    page that uses
    > Dreamweaver CS3's Log In User built in function.
    However, when succesfully
    > logged in, I want to create a page that says Hello John,
    or Welcome Bob
    > according to the user that logs in and have been
    unsuccessful so far. I go to
    > the correct page but it says Welcome ( Blank Space)
    >
    > any thoughts? i tried this
    >
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15398&sliceId=2
    >
    > and that doesnt work for me either.....
    What does doesn't work mean?
    Once the user has logged in, can you output the MM_Username
    session variable to the page (in particular the page that the log
    in user behavior has set for a successful log in)? You can do that
    by simply selecting it in the Bindings panel and dragging into the
    design view then previewing the page (after you've logged in of
    course).
    Also to get better responses (and more folks looking at it),
    you should probably post this in the Dreamweaver Application dev
    group:
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=12&catid=263&entercat= y
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | Adobe Community Expert

  • Connect to Port 3307 in Dreamweaver CS3

    I know how to connect to a MySql database in Dreamweaver CS3 using the MySql connection string server behavior. However, I now have to connect to a db on port 3307 and I've never done this before. Is it possible to manually edit the php file in the connections folder to accomplish this? I've tried to just change the hostname variable to "myhost.com:3307" but that doesn't seem to work. I'm fairly inexperienced at PHP. Thanks for any direction I can get. Here is my sample code:
    <?php
    # FileName="Connection_php_mysql.htm"
    # Type="MYSQL"
    # HTTP="true"
    $hostname_connDB = "myhost.com";
    $database_connDB = "my_db";
    $username_connDB = "my_username";
    $password_connDB = "password";
    $connDB = mysql_pconnect($hostname_connDB, $username_connDB, $password_connDB) or trigger_error(mysql_error(),E_USER_ERROR);
    ?>

    The default MySQL port is 3306. To connect on any other port, you simply add a colon followed by the port number like this:
    localhost:3307
    If the MySQL server is on myhost.com, the correct format is
    myhost.com:3307
    If you can't connect, it's probably because the host has blocked remote connections to MySQL. Without knowing more about your setup, it's impossible to offer further advice.

  • Sound "leaks" in  Dreamweaver CS3 page

    How can I fix the performance of .mp3 files on this page:
    http://www.multiminds.org/history/syllabus.html
    The page plays fine in Foxfire. But when opened by Safari,
    Opera, and, I think, IE, the sounds (on content pages reached by
    spry tabs) seem to "spill" out and play in part from first to last
    before the page returns to the sounds I intended it to play first.
    Would converting the .mp3 files to .swf files or some other format
    help? Something else? Thanks for any guidance you can
    provide.

    > so I'm applying the behavior to the <td> tag.
    Don't. Events applied to anything other than an <a> tag
    will usually
    produce unreliable and unexpected results. Seems like you are
    experiencing
    one. Your code below looks fine.
    To do this the most dependable way, make the trigger cell
    contain an anchor
    to which the mouseover event and behavior is applied.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "garethccc" <[email protected]> wrote in
    message
    news:g9su7n$rfr$[email protected]..
    > Hi all,
    >
    > I can't seem to get the "change property" behaviour to
    work in Dreamweaver
    > CS3! I'm trying to make a cell's background image change
    when I roll over
    > another cell in a different table, so I'm applying the
    behavior to the
    > <td> tag.
    >
    >
    http://img247.imageshack.us/img247/8071/changepropertyfu1.jpg
    >
    > The code generated by the behavior dialog above is this:
    >
    >
    onmouseover="MM_changeProp('td1','','backgroundImage','thumbnails/australian
    > wildflowers.jpg','TD')"
    >
    > The contextual help associated with the behaviors dialog
    is quite poor,
    > and
    > I'm guessing that the value is entered without
    quotations and the like.
    >
    > I'm sure I'm making a simple mistake - can anyone help
    me out?
    >
    > Thanks all!!
    >
    >
    onmouseover="MM_changeProp('td1','','backgroundImage','thumbnails/australian
    > wildflowers.jpg','TD')"
    >

  • Dreamweaver ne se ferme plus "Adobe Dreamweaver CS3 ne répond pas"

    Bonjour,
    plus moyen de fermer normalement Dreamweaver CS3 depuis quelques mois. j'ai changé de PC il y a quelques temps (j'ai un HP Quad Core + Vista Familial, rien de révolutionnaire...) mais je ne suis pas sûr que ce soit au même moment ? Il se passe tant de choses sur un PC ...
    Il me faut utiliser CTRL+ALT+SUPPR chaque fois c'est assez désagréable, que la fermeture ait lieu par le menu "fichier" ou par la croix de la barre des titres.
    j'ai tenté une réinstall, une suppression du fichier "WinFileCache-xx.dat", rien ne change.
    Est ce qqu'un a eu le même soucis ? A une piste ?
    Merci !
    ci-jointe une capture du problème...

    Je vois souvent le meme chose, mais sur le MAC.Essayez le suivant:
    The problem is probably ftp timeout.
    On the files window, click the "show" button. (je ne sais pas ce que c'est en francais)
    The Site configuration dialogue should appear
    Click OK
    Dreamweaver will login to the site again (assuming the ftp timed out) and refresh the cache
    Now close dreamweaver. It will close normally.
    The same applies if you try and save changes and it times out. If it starts timing out, click "cancel" and then do the above steps.
    This behavior is in both Dreamweaver CS3 and CS4.

  • Is Spry wdiget causing my Dreamweaver CS3 to crash?

    Recently my dreamweaver cs3 crashed, The last thing I was
    doing on dreamweaver CS3 was using the spry tabs widget.
    When I tried to run Dreamweaver CS3 application, it would
    crash. I then had to reinstall my Dreamweaver following the clean
    cs3 routine.
    Dreamweaver now runs, but when I try and open the html file
    which contained the spry widget it crashes. When I try and open any
    other html file its fine. I even tried to open the spry html page
    using dreamweaver MX2004, and it too crashed.
    However when I view the spry widget page in a web browser, it
    works fine.
    So I guess the srpy widget is causing problems. If so, how do
    I fix it?
    thanks
    Jon

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430http://support.apple.com/kb/ht1430
     Cheers, Tom

  • Dreamweaver CS3 with existing Server Behaviours

    Hi All,
    Obviously i'm aware of the upcoming launch of Dreamweaver
    CS3, which looks good, I'm currently using MX 2004 and considering
    upgrading, however before i do so i have some queries.
    We specialise in building ASP applications, which is why we
    bought MX 2004 in the first place, as it included a number of
    Server Behaviuors like login, go to detail page, recordset builders
    etc, however as we found up, some of the key Server Behaviours,
    like file upload and smartmail were not included.
    Since then we've spent a lot of money buying extensions such
    as WebAssist's SuperSuite and DMXZone's SmartMailor and
    PureASPUpload to mention but a few.
    Obviously keen to ensure before we purchase Dreamweaver CS3
    that it is still aimed at developers and ccomes with Server
    Behaviours but also that it still supports all of these extensions
    and that we wouldn't therefore be losing the use of these very
    usefull tools.
    Thanks in advance

    GTN1707 wrote:
    > Obviously keen to ensure before we purchase Dreamweaver
    CS3 that it is still
    > aimed at developers and ccomes with Server Behaviours
    but also that it still
    > supports all of these extensions and that we wouldn't
    therefore be losing the
    > use of these very usefull tools.
    Dreamweaver CS3 most definitely supports server behaviors:
    http://www.adobe.com/products/dreamweaver/features/allfeatures/
    "Open server and technology support
    "Support for leading technologies
    "Take advantage of support for leading web development
    technologies,
    including HTML, XHTML, CSS, XML, JavaScript, Ajax, PHP,
    Adobe®
    ColdFusion®, ASP, ASP.NET, and JSP."
    AFAIK, all leading extension developers have been given the
    opportunity
    to test their extensions with the new version. To find out
    whether the
    particular commercial extensions you use are compatible with
    CS3,
    contact the developer directly.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Stop Dreamweaver CS3 rewriting my code

    I dearly hope one of you lovely people can help me as this program is driving me nuts!
    I need to find a way of stopping Dreamweaver CS3 from rewriting my code. I know it's a good thing for it to check for errors (unclosed tags, etc) and I have no problem with that, but what I need to stop is the way Dreamweaver keeps running closing tags on to the end of the previous line!
    For example, I type:
    <div>
        <div>
            <a href="link">
                <img src="piccy" />
            </a>
        </div>
    </div>
    which is lovely and structured and, above all, easy to read, but as soon as I edit an element's propery, Dreamweaver makes it:
    <div>
        <div>
            <a href="link">
                <img src="piccy" />        </a>    </div>
    </div>
    which is so annoying!
    I've tried turning off all code rewriting in the preferences, but to no avail.
    Please can someone save what little hair I have left?
    Thanks in desperation
    Peter

    I guess my problem is not directly related to yours after all, as I discovered a hack to live with DW's bad behavior in my case. I found this when I used DW to try to collapse the tags that were getting fouled up and seeing it not know exactly what to do.
    The solution below tricks DW into thinking that my HTML tags are all nested properly, and it no longers rewrites the code in my CFC's function. Because nesting fixed it, I'm guessing the original poster's spacing issue is unrelated.
    Nevertheless, here's what I did:
    <cffunction ... >
        <cfset var strHTML = "">
            <!--- a memorable and always false condition --->
        <cfset var hellfreezesover = False>
        <cfsavecontent variable="strHTML">
        <ul>
            <li>first level
            <!--- Trick DW into submission --->
            <cfif hellfreezesover></li></ul></cfif>
            <cfloop ...>
                <!--- Trick DW into submission --->
                <cfif hellfreezesover><li></cfif>
                <cfif closeit>
                    </li>
                <cfelse>
                </cfif>
            </cfloop>
            <!--- Trick DW into submission --->
            <cfif hellfreezesover><ul><li></cfif>
            </li><!--- close last open li --->
        </ul>
        </cfsavecontent>
        <cfreturn strHTML>
    </cffunction>

  • Dreamweaver CS3 Login user issue

    Hey , i am pretty new to PHP and MYSQL. I have a login page
    that uses Dreamweaver CS3's Log In User built in function. However,
    when succesfully logged in, I want to create a page that says Hello
    John, or Welcome Bob according to the user that logs in and have
    been unsuccessful so far. I go to the correct page but it says
    Welcome ( Blank Space)
    any thoughts? i tried this
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15398&sliceId=2
    and that doesnt work for me either.....
    what am i missing here? any help is greatly
    appreciated

    sundap wrote:
    > Hey , i am pretty new to PHP and MYSQL. I have a login
    page that uses
    > Dreamweaver CS3's Log In User built in function.
    However, when succesfully
    > logged in, I want to create a page that says Hello John,
    or Welcome Bob
    > according to the user that logs in and have been
    unsuccessful so far. I go to
    > the correct page but it says Welcome ( Blank Space)
    >
    > any thoughts? i tried this
    >
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15398&sliceId=2
    >
    > and that doesnt work for me either.....
    What does doesn't work mean?
    Once the user has logged in, can you output the MM_Username
    session variable to the page (in particular the page that the log
    in user behavior has set for a successful log in)? You can do that
    by simply selecting it in the Bindings panel and dragging into the
    design view then previewing the page (after you've logged in of
    course).
    Also to get better responses (and more folks looking at it),
    you should probably post this in the Dreamweaver Application dev
    group:
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=12&catid=263&entercat= y
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | Adobe Community Expert

Maybe you are looking for

  • User Defined function in Where clause

    DB:- 11.2 Input:- 'ACCOUNTING,SALES' Output:- ('ACCOUNTING','SALES') WITH T AS (select 'ACCOUNTING,SALES' str from dual) select '('||regexp_replace(str,'([[:alpha:]]+)','''\1''')||')' from t /*this works*/I've created a function to use this in a wher

  • FBL1N error - vendor balance with customer item

    Hi gurus, One scenario where i have assign vendor as customer & customer as vendor in vendor & customer data. also make tick mark for both clearing with vendor & customer. when i see the customer report with vendor item it shows me the customer & ven

  • How to disable iMessage for an old Apple ID which is only used for AppStore?

    How to disable iMessage for an old Apple ID which is only used for AppStore? I used my old Apple ID for iMessage and AppStore Apps. Now I'm using my iCloud Account (second Apple ID) on my Mac as iCloud and iMessage Account. New Apple ID - iCloud & iM

  • ORA-01722 running sql in C# 2.0, but works in Apex

    Hi, I am using VS2005 with C# and .NET 2.0 and have an Oracle 10g XE database. When I run the following query in Apex then it works: SELECT PIT.TYPE_VALUE AS "Entity Type", PIT.PILE_ITEM_TYPE_ID, RAWTOHEX(PI.PILE_ITEM_VALUE) AS "Entity Value", COUNT(

  • Homogeneous Copy Error

    Hi Gurus, While doing Homogeneous Copy after database restore below error coming, advise me here to come out the issue... User table belonging to the dbo schema were found in the database DEV you can only install an SAP system in a database(MCOD), or