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 wOOdy-Soft 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 theKeyper

  1. theKeyper

    Return Max Field

    Found It! GREATEST() Thanks, Keyper The Key is more powerful than the Sword.
  2. theKeyper

    Return Max Field

    Hi Guys, I need to compare multiple fields and return the field that has the max value for that row. e.g. SELECT HIGHEST(largest_classroom, largest_bedroom, largest_livingroom) AS largest_room (Similar to the MAX() function but horizontal instead of vertical) Thanks, Keyper
  3. theKeyper

    Scrollpane component first load problem IE

    I have a scrollpane component that works fine locally and in other browsers like firefox but in IE on the first load, the content (.swf file) loads but no scrollpane. One refresh and it's fine. Any ideas???
  4. theKeyper

    Dyanmic Text Line Spacing

    My flash file is using dynamic text importing a text file. I have my line spacing set perfect locally but when I upload it descreases the spacing. When I upload I have to descrease the line spacing to match what it looks like locally. Any ideas on what the cause? The Key is more powerful...
  5. theKeyper

    Define a GET variable and transmit it through URL's

    I don't think I quite understand what your after Simo. Would it be a simple case of $var = $_GET['var']+1; on the recieving end? (seeing as how you do not want to change your already existing links?) And it seems the second example does something different. Do you have a test we can see...
  6. theKeyper

    what is $HTTP_RAW_POST_DATA?

    Hi, I have started looking into XML for integration into Flash. I was reading the following FAQ: http://www.flashdeveloper.nl/g_flash_xml_faq.html And I ran into a lot of stuff about $HTTP_RAW_POST_DATA. Does anyone know about this, any helpful links, and how it differs from a simple $_POST...
  7. theKeyper

    Dynamically Writing Javascript Function

    mmerlinn, I am now facinated. What browser/platform are you using? Have you had a look at the source? Here is the code for that 'test' word: <button onClick="licenceinsert(1);licenceinsert(2);licenceinsert(3);licenceinsert(4);licenceinsert(5);" id="test1">Test</button> -Keyper
  8. theKeyper

    Dynamically Writing Javascript Function

    <b>mmerlinn:</b> try hitting 'test' a few times, then the browse buttons. Then you can check out the source code. <b>mrpicker:</b> The following code may be of help to you: <script language="javascript"> <!-- function newWin(){ ven = window.open('','_blank'); var results...
  9. theKeyper

    display:none has not enough time to render in Firefox

    Thanks alot Dave. That worked well. Got a quick flicker happening in gecko engines (ff, moz, nn) but IE still works sweet and it hasn't broken on Safari either, so ROCK ON! Note to Kendel: Pause did not seem to work. I tried 5 secs and the problem was still there. After 6 secs I gota popup...
  10. theKeyper

    display:none has not enough time to render in Firefox

    Thank you for your replies Jemminger: yes, table-row is the w3c spec, and no, IE does not handle it correctly. However, the section that I am hiding is a Div box, and I believe it is a timing issue as I have duplicated the problem with nearly empty div boxes and the problem is not there...
  11. theKeyper

    display:none has not enough time to render in Firefox

    Hi Guys, I have a page that is broken up into sections. When you click the 'next' button, the current section is set to display:none and the next section is set to display:block. The code is as follows: document.getElementById('form_section_'+sectionnum).style['display'] = 'none'...
  12. theKeyper

    Using Dynamic Variable Names

    WOOOOHOOOOOOOOOOOOOOOOOOOOOOO!!!!!!!!! Fantastic. Works well (In IE). Just one question, do you have an idea of how cross-browser compatible this method is? Thank you for your time and prompt response. Regards, Keyper
  13. theKeyper

    Using Dynamic Variable Names

    Hello, I am trying to find an equivalent to PHP's "Variable Variables". Baisically, if I have an unknown number of variables (stuff_1, stuff_2, stuff_3, etc...) and want to reference them using a loop, I might try the following: for(i=1; i<=num_variables; i++) { var tempstring =...
  14. theKeyper

    Dynamically Writing Javascript Function

    Beautiful Mate! Thankyou. If you are interested in viewing the final(ish) product, visit: http://www.visualobsession.com.au/tests/jstest/javatest7.htm Thanks again. Keyper The Key is more powerful than the Sword.
  15. theKeyper

    Dynamically Writing Javascript Function

    Hi, I need to write a javascript function dynamically. This function does not get called at any stage, it simply must exist (at a certain place) on the page. I have tried two methods as you see below. (For testing purposes I have simplified the code, and set a button to call the function that...

Part and Inventory Search

Back
Top