Jump to content

etusa

Members
  • Posts

    5
  • Joined

  • Last visited

etusa's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I also don't post here much and I appreciate all the efforts by everyone. i spent a couple of days unsuccessfully trying to get ID3_v3.4.au3 to work but It wouldn't write tags in a ID3v2 file. (Sample error with ID3_v3.4.au3 -> ID3_v3.4.au3(1315,29) : ERROR: Dec() [built-in] called with wrong number of args.) However, the ID3.au3 version modified by TheSaint in March 2012 worked instantly! in this post: Can someone crown TheSaint's ID3.au3 as the current working winner and place it in post #1 as the newest (working) version?
  2. DisabledMonkey,, SMS UDF is a great function! Thanks for your work on it! The function is written to send the SMS message using the "Subject" field. Unfortunately on some smartphones, part of that field is consumed by the word "Subject:" A better solution is to send the SMS message using the TextBody Field. I've made only a few changes to the SMS UDF script to send the SMS using $s_TextBody instead of $s_Subject. I sent the modifications to DisabledMonkey - hopefully he'll included them and republish the script. --Chuck Eglinton
  3. How would this Javascript be written as Autoit Code? // Replace all doubled-up <BR> tags with <P> tags : var pattern = new RegExp ("<br/?>[ \r\n\s]*<br/?>", "g"); document.body.innerHTML = document.body.innerHTML.replace(pattern, "</p><p>"); Is what I wrote below, correct? $HTML = 'paragraph one<br><br>paragraph two<br><br> paragraph 3<br>' $sResult = StringRegExpReplace($HTML, '<br/?>[ \r\n\s]*<br/?>', '</p><p>') ConsoleWrite($sResult & @CRLF) Can someone explain to me precisely what this RegExp does? How can the RegExp be written so that it works with both <BR> and <br> (lower case)? Thanks in Advance.
  4. I would like to pay someone to convert 60-100 lines of Javascript to a single AutoIt function. This should be an easy programming job for a programmer who understands RegExp, Javascript, and AutoIt. If you're interested, please send me a private message for details. Thanks in advance.
  5. The link seems to be broken to download this. Can someone post it again? Or can Manadar or someone post the source in a message? Thanks
×
×
  • Create New...