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

  1. #1

    Default Cursor and form

    I want to know how to make a form that people type in and click the send
    button, and there request will be sent to me. i would like a box for there
    email address and a box for there name and a box for them to type in, and
    ofcourse the submit button.

    I also want to know how you change the cursor for a certain link, so i can
    make a link to a help popup and for the cursor to be the help cursor(the
    question mark near the cursor)

    I would like these to be in either html(recommended) or javascript.
    thank you for your replies.

    Shockingu Guest

  2. Similar Questions and Discussions

    1. Cursor bug?
      "Mike G." <mike@thegodshalls.com> writes: You did "select count(name)", which counts the number of non-null occurrences of "name", ie 2. So the...
    2. Where's the (*&#^ cursor?
      ugh. Using FHMX again. Haven't used it for typesetting for a while now. Where is my text cursor? No matter what rendering mode or zoom level I'm...
    3. cursor
      Matt, try this link http://www.pageresource.com/dhtml/csstut10.htm - Mick <>< ><> <>< ><> <>< ><> <>< ><> www.mickwood.com Web...
    4. cursor 200-problem on mac but not pc? how to swap cursor image?
      Hi, I want to hide the cursor in my projector. I've been using "cursor 200" for some time now and it works fine. But now, when I try my projector...
    5. Change the "web hand" cursor in normal arrow cursor?
      Visit my page at http://www.frenchberliner.com and see the swap image...when you fly over it to see the effecct the cursor changes in a small hand as...
  3. #2

    Default Re: Cursor and form

    To send some info to your mailbox, you'll need a "server-side
    language", like ASP, PHP, ColdFusion... If you don't want to use them,
    you can simply change the "action" of the form to
    "mailto:YOU@EMAIL.COM", but the user who send a form that have this
    action will need to have a mail program correctly configutared (like
    OE, Eudora, Thunderbird...) and a "Send Message" window of the program
    will popup in the screen. If the user don't have the mail program
    configurated, it won't work.
    In the case of using the server-side language, the form will be sent
    directly from the server that host your site to you, and the user just
    have to click the submit (don't need programs in his PC).

    To change the cursor in a link, try it:
    <html>
    ....
    <style type="text/css">
    a.helpCur { cursor: help; }
    </style>
    ....
    <a class="helpCur" href="bla.html">LINK</a>


    If you want a personal cursor, try something like..
    a.helpCur { cursor: url('personal.cur'); }


    []s

    --
    - Me ajude a ganhar o curso, acesse
    [url]http://www.atipico.com.br/promocao.asp?i=176184459[/url]

    - Rio de Janeiro, Brasil
    - Troyan <dnunes[at]email[dot]com>


    Troyan Guest

  4. #3

    Default Re: Cursor and form

    Be aware that cursor changes to personal image files are not well
    supported....

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver MX
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]news://forums.macromedia.com/macromedia.dreamweaver[/url] - THE BEST WAY TO GET
    ANSWERS
    ==================
    [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
    ==================

    "Troyan" <Troyan@NoSpam.com> wrote in message
    news:cav2k5$stf$1@forums.macromedia.com...
    > To send some info to your mailbox, you'll need a "server-side
    > language", like ASP, PHP, ColdFusion... If you don't want to use them,
    > you can simply change the "action" of the form to
    > "mailto:YOU@EMAIL.COM", but the user who send a form that have this
    > action will need to have a mail program correctly configutared (like
    > OE, Eudora, Thunderbird...) and a "Send Message" window of the program
    > will popup in the screen. If the user don't have the mail program
    > configurated, it won't work.
    > In the case of using the server-side language, the form will be sent
    > directly from the server that host your site to you, and the user just
    > have to click the submit (don't need programs in his PC).
    >
    > To change the cursor in a link, try it:
    > <html>
    > ...
    > <style type="text/css">
    > a.helpCur { cursor: help; }
    > </style>
    > ...
    > <a class="helpCur" href="bla.html">LINK</a>
    >
    >
    > If you want a personal cursor, try something like..
    > a.helpCur { cursor: url('personal.cur'); }
    >
    >
    > []s
    >
    > --
    > - Me ajude a ganhar o curso, acesse
    > [url]http://www.atipico.com.br/promocao.asp?i=176184459[/url]
    >
    > - Rio de Janeiro, Brasil
    > - Troyan <dnunes[at]email[dot]com>
    >
    >

    Murray *TMM* Guest

  5. #4

    Default Re: Cursor and form

    COOOOOOL THANKS
    Shockingu 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