Recent content by Steven ~

  1. S

    Perl substr replacement?

    Hi, I'm working with packets in Perl, and cannot remember how to fill in blank spaces using substr. For example. I have \x00\x00\x00\x00, but the combined packet has to be at least \x00\x00\x00\x00\x00\x00. How would I be able to add the last 2 \x00s on using substr? Currently, I have this (I...
  2. S

    Perl substr replacement help.?

    I'm using substr in perl to add missing characters to a string. ex. substr($string, length($string), 23-length($string), ????) After this, I need to add a character for each missing character, how would I do this? :x For an example. I enter the number 19563, but the length of the string...
  3. S

    Perl substr replacement?

    Hi, I'm working with packets in Perl, and cannot remember how to fill in blank spaces using substr. For example. I have \x00\x00\x00\x00, but the combined packet has to be at least \x00\x00\x00\x00\x00\x00. How would I be able to add the last 2 \x00s on using substr? Currently, I have this (I...
  4. S

    Perl substr replacement help.?

    I'm using substr in perl to add missing characters to a string. ex. substr($string, length($string), 23-length($string), ????) After this, I need to add a character for each missing character, how would I do this? :x For an example. I enter the number 19563, but the length of the string...
  5. S

    how to write different font in html?

    or you can do <font size=3><p>text</p></font>
  6. S

    How to turn panel black/dark grey with HTML?

    in the <EMBED> tag add style="background-color: #000000;" or whatever hex color you need ex #4b4b4b so it would be <EMBED etc etc etc style="background-color: #000000;"> Make sure you add that semicolon or it will not work. It might not have a 100% chance to work either, so if it doesnt...
  7. S

    How to turn panel black/dark grey with HTML?

    in the <EMBED> tag add style="background-color: #000000;" or whatever hex color you need ex #4b4b4b so it would be <EMBED etc etc etc style="background-color: #000000;"> Make sure you add that semicolon or it will not work. It might not have a 100% chance to work either, so if it doesnt...
  8. S

    How to turn panel black/dark grey with HTML?

    in the <EMBED> tag add style="background-color: #000000;" or whatever hex color you need ex #4b4b4b so it would be <EMBED etc etc etc style="background-color: #000000;"> Make sure you add that semicolon or it will not work. It might not have a 100% chance to work either, so if it doesnt...
Back
Top