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. vladibo

    ActionScript 3 object Tracer

    Hello, I have created a new object for tracing ActionScript 3 objects and I want to share it with other developers and eventually get some feedback in order to make it better. You can get the source from: http://blog.bodurov.com/Post.aspx?postID=13 Any feedback is welcomed!
  2. vladibo

    Where can I find classes of the namespace flex.messaging.io

    Where can I find classes of the namespace flex.messaging.io? Can I download them fro somewhere?
  3. vladibo

    XSLT question

    How can I define in XSLT schema that one attribute is required and another is optional? There is no "required" or "minOccurs" parameter here <xs:attribute name="Name" type="xs:string" />
  4. vladibo

    how do I determine which submit button was clicked?

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <html> <head> <title>Test</title> <script type='text/javascript'> function Test(str){ alert(str); } </script> </head> <body> <form method="post"> <input type="submit" name="one" onclick="Test('Button One')"> <input type="submit"...
  5. vladibo

    Safari Question

    But BabyJeffy, with your code you don't place the newly created INPUT into a "password-span"?!
  6. vladibo

    Syntax question

    Thanks tsuji, that seem to be a reasonable argument.
  7. vladibo

    Syntax question

    This guy is very good: http://www.walterzorn.com/dragdrop/dragdrop_e.htm I am impressed but I don't understand everything.
  8. vladibo

    Syntax question

    I've seen this syntax: this.ie4 = !!(this.ie && !document.getElementById); Can somebody explain to me why do I need !!, why not just: this.ie4 = (this.ie && !document.getElementById);
  9. vladibo

    How to get mouse position if it is not over my window?

    How to get mouse position if it is not over my window? For example if it is over the title bar or windows task bar
  10. vladibo

    IIS Log - is it really strange one or it is ok?

    I am not IIS Administration expert so I may be wrong but as I look on our production IIS log there are serveral stange thinds there the logs look like that date time s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) sc-status sc-substatus sc-win32-status 2005-09-16...
  11. vladibo

    ActionScript 2 Documentation Creator?

    Is there open source or commercial program that creates Documentation from ActionScript 2 class files? Thank you
  12. vladibo

    Disabling window bars

    And the status bar on IE on a server that is not local can not be removed - this is security restriction.
  13. vladibo

    Focus on an ActiveX Control

    This should be caontroller in the Active X control - it will not be possible to set it from JavaScript except if that Active X does support communication with JavaScript
  14. vladibo

    Passing variable fro Javascript function to asp page

    there is no =+ there is +=
  15. vladibo

    calling multi dimentional arrays

    var arrNoteType = new Array(6); <!-- category 1 --> arrNoteType[0] = ["Claims Issues",19]; arrNoteType[1] = ["Client Policies",23]; arrNoteType[2] = ["Loss History Requests",21]; arrNoteType[3] = ["Return to Work",20]; arrNoteType[4] = ["Risk Control",22]...
  16. vladibo

    JavaScript program for drawing curvs

    Waw I just tried that with Mozzila. DO NOT USE THIS PROGRAM WITH MOZZILA It takes minutes to run. With IE it takes 6 secs. You can think about this as a performance test and the Mozzila has failed
  17. vladibo

    JavaScript program for drawing curvs

    My idea was to create something that is drawing images then I simplified it for curvs, that's why I draw every pixel.
  18. vladibo

    JavaScript program for drawing curvs

    Mine with IE takes 10 seconds. I didn't try with Mozzila.... Yes you are right I should not be creating every pixel, I'll fix that when next time I feel bored enough at work :)
  19. vladibo

    JavaScript program for drawing curvs

    What is SVG image?

Part and Inventory Search

Back
Top