Drop Down Menus...

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • bruce

    #1

    Drop Down Menus...

    Hi...

    Never used python, but I have a question regarding Drop Down Menus. Does
    Python allow me to create a website, that will permit the user to create
    Drop Down menus that can be initiated with the right mouse click? If it can,
    is it fairly easy to implement?

    Thanks

    -Bruce

  • alisonken1

    #2
    Re: Drop Down Menus...


    Hello Bruce -

    bruce wrote:[color=blue]
    > Hi...
    >
    > Never used python, but I have a question regarding Drop Down Menus. Does
    > Python allow me to create a website, that will permit the user to create
    > Drop Down menus that can be initiated with the right mouse click? If it can,
    > is it fairly easy to implement?[/color]

    If you are talking about client-side menu's, you should be looking at
    Java or Java-Script.

    Python is good at server-side scripting, but there is no >widely
    installed< python interpreter on peoples browsers that would work,
    whereas java and javascript are pretty much the standard in client-side
    scripting in web browsers.

    Comment

    • bruno at modulix

      #3
      Re: Drop Down Menus...

      bruce wrote:[color=blue]
      > Hi...
      >
      > Never used python, but I have a question regarding Drop Down Menus. Does
      > Python allow me to create a website,[/color]

      Yes.
      [color=blue]
      > that will permit the user to create
      > Drop Down menus that can be initiated with the right mouse click?[/color]

      Not sure to understand what you mean, but this is nothing
      Python-specific - web-programming is web-programming, whatever the
      server-side techno/language.

      --
      bruno desthuilliers
      python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
      p in 'onurb@xiludom. gro'.split('@')])"

      Comment

      • Colin Gillespie

        #4
        Re: Drop Down Menus...

        bruce wrote:[color=blue]
        > Hi...
        >
        > Never used python, but I have a question regarding Drop Down Menus. Does
        > Python allow me to create a website, that will permit the user to create
        > Drop Down menus that can be initiated with the right mouse click? If it can,
        > is it fairly easy to implement?
        >
        > Thanks
        >
        > -Bruce
        >[/color]
        No you wouldn't use python for this. Look at javascript & CSS.

        e.g. http://www.youngpup.net/2004/transmenus/examples
        and http://www.robocup2004.pt/

        Colin

        Comment

        Working...