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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by kafkapower

  1. kafkapower

    Media Player in iframe problem with Netscape

    Hi! I'm doing a jukebox (sound and video) controlled with javascript, where I change the source of the media player with javascript. The media player object is in an iframe. And I don't know how to name the media player object (embed with Netscape) so that I can control the object in the iframe...
  2. kafkapower

    change media player object source file in netscape

    Hi! I'm trying to change media player source with javascript in Netscape, I do it in IE, but it doesn't work in NN... Can anyone help me ? Filipe Lopes
  3. kafkapower

    Resize a window with frames

    Hi ! I would like to resize a window with frames. I did the same thing with a window without frames with this code: function stretch(y,yfinal) { if (document.body.clientHeight < yfinal) { theHeight = document.body.clientHeight + y; window.resizeTo(323,theHeight); } if...
  4. kafkapower

    functions to run when a session starts (as in global.asa in IIS)

    Hi! Thanx for reading my message! I would like to know if with PHP, I have a way to initialize certain session variables, as there is on_session_start(), on_session_end() in the Microsoft Internet Information Server ? These functions are started anytime a session is started or ended... Thanx...
  5. kafkapower

    default document in a virtual directory

    Hi! Thanx for reading my message ! In the IIS, when you have a virtual directory, there's a property which defines the document to show when you write a URL in the address bar like &quot;www.your-domain.com/virt-directory/&quot;. By default, this document is &quot;default.htm&quot; or...
  6. kafkapower

    change content in a textarea (with selection)

    Hi! I want to know, when a user selects a part in a textarea object, where does the selection zone starts and ends. Thanks. Filipe Lopes.
  7. kafkapower

    transform alpha to numeric &quot;23&quot; to 23

    Hi ! This must be a very easy feature, but I'm a fresh starter in PHP, so I need this very bad ! How can I transform the string &quot;23&quot; in the number 23 ? in C I have atoi, but in PHP, I don't have that function ! Thanks!

Part and Inventory Search

Back
Top