Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. conrai

    Start embedded video

    Thanks, I solved the problem now.. Autostart alone didn't work, i changed the Javascript function: function showVideo(selObj, noselectionWarning){ var newIndex = selObj.selectedIndex; if ( newIndex == 0 ) { document.getElementById('mediaPlayer1').fileName = ''...
  2. conrai

    Start embedded video

    Hi! I have the following problem and it would be nice if you could help me ;). I have embedded the windows media player plugin to my site. The user can choose from a selct menu which video to play and on changing the select menu, the video should start to play. The media player plugin...
  3. conrai

    changing multiple select

    Thanks Dan, this works! I will use document.getElementById() in the future, promised ;-). conrad
  4. conrai

    changing multiple select

    Hi! I'm struggling with the following problem and would be grateful if you could help: I have a multiple select field: <select multiple size="5" name="fields[]"> <option value ="value">option1</option> ... </select> Please note that the name is "fields[]", thus an array, because I want...
  5. conrai

    require/include file within class

    Thanks for your immediate replies! And sorry for the late response. @AdaHacker: your solution with include()ing the file in the constructor worked. I tried this before already, yet I had defined the variables in my file to be inluded without this->. thanks again, i really appreciate this...
  6. conrai

    require/include file within class

    Hi, I know this is probably very simple, but I just don't get it running. I want to include a file within a class, so that it is globally visible within the whole class. Within the functions of a class this works: require ("language/" . $this->language . ".php"); Yet it doesn't outside of...
  7. conrai

    how to convert name of variable to URL opened within object tag?

    Thank you mwolf00, but then it's still the same problem, when I write <body onLoad="document.getElementById('myObject').data='xyz.html'"> then i want to replace "xyz.html" with the javascript variable specifying the url Let's say I use an IFrame: <iframe src="xyz.html" width="90%"...
  8. conrai

    how to convert name of variable to URL opened within object tag?

    Hello! I have the following problem. I have the HTML page "reports.html". It contains a number of hrefs for displaying different reports (in HTML format). All those links refer to the same page "reportsDisplayer.html" but i pass different reportnames to reportsDisplayer by adding them with a...
  9. conrai

    passing variables from one html page to other

    Hello! Hopefully you can help me. I would like to pass a variable from one html page to another one and use the passed variable for generating a dynamic string. Is it possible to do it without JSP/ASP/PHP or so? If yes, how :|??? It should look as follows: In html page 'test' I have the link...
  10. conrai

    basic question JSP

    Hi! I hope you won't throw me out of this forum because of this question but somehow I couldn't find the answer to this question: I have created the following hello world basic JSP page: <html> <head><title>Hello World</title></head> <body> <h2>Hello World</h2> <% out.print("<p><b>Hello...

Part and Inventory Search

Back
Top