Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Code Hint and DHTML

    Folks,

    Bear with me if i sound really naive. When i code a HTML page, when I hit the
    spacebar the code hints pop op and I can choose from a selection of HTML
    properties. I am trying to use DHTM properties like <tr class=" text-align :
    center">. If i select class from the drop down list and then dreamweaver says
    no CSS style which is true cause i have co css files attached to the current
    html file. But this <tr class=" text-align : center"> should work also. So I
    AM WONDERING whether is there a way in dreamweaver to give me hints for DHTML..

    Thanks

    A

    AJAY_KUMAR Guest

  2. Similar Questions and Discussions

    1. code hint javascript api
      I am extending dreamweaver to add code hinting and color coding to my proprietary scripting language. I am fine with the Javascript but I am not...
    2. pipe to a script hint
      Hi I can feed an email to a php script but am having problems figuring out how to grab the incoming data. At a guess a while loop reading...
    3. A little hint
      Hi, I know i'll burn hell for a long time for this post, but here I go ;) I'm a sysadmin/webadmin and I looking for a little help. A few...
    4. hint: making CSS IDs and complex classes in dreamweaver
      hey.. that sounds GREAT! i will check that instantly..
    5. Attaching "OnClick" Javascript code to dhtml popup menu links
      I am currently developing a web site using fireworks, and am trying to figure out a way (through hand-coding) of attaching a javascript function...
  3. #2

    Default Re: Code Hint and DHTML

    > I am trying to use DHTM properties like <tr class=" text-align :
    > center">.
    DHTML is usually used to describe the 'confluence' of javascript and HTML in
    such a way that the markup on the page is changed dynamically, i.e., after
    the page has been fetched from the server. What you show would not be
    dHTML. In fact, what you show is only invalid markup.

    If you wanted to use inline CSS, you would have -

    <td style="text-align:center">

    or if you wanted to use an embedded stylesheet or an externally linked one,
    you would have -

    <td class="whatever">

    with this in the stylesheet -

    ..whatever { text-align:center; }

    See what I mean?

    As soon as you enter style=" when you are writing the inline style, you
    should get a code hint dropdown. In addition, you can trigger one by using
    Ctrl-spacebar.

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "AJAY_KUMAR" <webforumsuser@macromedia.com> wrote in message
    news:dbivql$n3j$1@forums.macromedia.com...
    > Folks,
    >
    > Bear with me if i sound really naive. When i code a HTML page, when I hit
    > the
    > spacebar the code hints pop op and I can choose from a selection of HTML
    > properties. I am trying to use DHTM properties like <tr class="
    > text-align :
    > center">. If i select class from the drop down list and then dreamweaver
    > says
    > no CSS style which is true cause i have co css files attached to the
    > current
    > html file. But this <tr class=" text-align : center"> should work also.
    > So I
    > AM WONDERING whether is there a way in dreamweaver to give me hints for
    > DHTML..
    >
    > Thanks
    >
    > A
    >

    Murray *TMM* Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139