| Author |
Message |
Forum: Support Topic: An Uninstaller for DVRMSToolbox (check AHK syntax request) |
| Lithodora |
|
Posted: March 28th, 2012, 8:55 am
|
|
Replies: 2 Views: 58
|
| Well, to me the code looks right. If you do not see anything that I obviously did wrong then I'm leaning toward the code being good. I manually followed the instructions and guess what? They don't work like it says they should. As I said I have been workign with Applescript a lot. One thing it has o... |
|
 |
Forum: Support Topic: An Uninstaller for DVRMSToolbox (check AHK syntax request) |
| Lithodora |
|
Posted: March 28th, 2012, 6:03 am
|
|
Replies: 2 Views: 58
|
| I am trying to follow the directions here Here is what I've come up with, but it isn't working. Can someone tell me if my code is flawed or the procedure outlined. (It's been a while and I've been stuck writing Applescript lately :cry: ) ;;;Make sure to run as Admin if not A_IsAdmin { if A_IsCo... |
|
 |
Forum: Suggestions Topic: Forum upgrade - Bad news (and possibly good news) |
| Lithodora |
|
Posted: June 13th, 2011, 12:09 am
|
|
Replies: 51 Views: 3106
|
| I never found the highlighted text.... :shock: (mainly because I stopped at page 25) On the search page click posts (instead of topics ) where it says "display results as". Facebook search example Well that sort of is like what I mean, but it gives no context to what I'm looking for. Sure... |
|
 |
Forum: Suggestions Topic: Forum upgrade - Bad news (and possibly good news) |
| Lithodora |
|
Posted: June 12th, 2011, 9:25 pm
|
|
Replies: 51 Views: 3106
|
| I realize this is a bit old, but since it is possible to fix the issue that prevented upgrading to phpbb3, why hasn't it been done? The one MAJOR thing I would love to have that is in phpbb3, Search Topic! It would really help wade though stuff and make searches meaningful, example: I searched the f... |
|
 |
Forum: Support Topic: Creating XML Files |
| Lithodora |
|
Posted: May 10th, 2011, 5:14 am
|
|
Replies: 2 Views: 284
|
| There must be a better way..... ; create XML document moviefolder = G:\Movies FileAppend, ( <?xml version="1.0" encoding="utf-8"?> <Movies> ), %A_Desktop%\Myvars.xml Loop, %moviefolder%\*.*,2 { ;; remove any extra name data the movie may have ex. 28 Days Later (2... |
|
 |
Forum: Scripts Topic: Limiting kid's time on computer |
| Lithodora |
|
Posted: May 10th, 2011, 3:59 am
|
|
Replies: 0 Views: 1202
|
| Reference to old work here: http://www.autohotkey.com/forum/viewtopic.php?p=196682 I have made a few different versions in the past 3 years. The longest running one created a 'ticket' that the kids needed to enter to get logged in. This proved to be troublesome as they could never get it entered cor... |
|
 |
Forum: Support Topic: Creating XML Files |
| Lithodora |
|
Posted: May 10th, 2011, 1:58 am
|
|
Replies: 2 Views: 284
|
| Interestingly enough this: xpath(feed, "/Movies[+1]") ; create main Node loop, 3 { xpath(feed, "/Movies/Movie[+1]/title[+1]/test[+1]", "Movie Title Here") ; Movie Title Here } xpath(feed, "/Movies/Movie/trailers[+1]") ; Create... |
|
 |
Forum: Support Topic: Creating XML Files |
| Lithodora |
|
Posted: May 9th, 2011, 11:52 am
|
|
Replies: 2 Views: 284
|
| I've done a lot of searching on the forums.. seen things saying 'update to L for the COM" ... all I can find on that is how to read the xml files which I had no problem doing to begin with using Xpath. I couldn't get Xpath to create this: <Movies> <Movie> <Title>28 Days Later (2002)</Ti... |
|
 |
Forum: Scripts Topic: HD Trailer Downloader |
| Lithodora |
|
Posted: May 9th, 2011, 12:39 am
|
|
Replies: 3 Views: 1142
|
| Excellent, I was considering installing XBMC just to be able to figure out what it would need to be supported. I am curious what the artwork is called then since folder.jpg & background.jpg aren't being used. I would be glad to have the help working on this. Ideally this project would move beyon... |
|
 |
Forum: Scripts Topic: HD Trailer Downloader |
| Lithodora |
|
Posted: May 7th, 2011, 8:23 am
|
|
Replies: 3 Views: 1142
|
| The version I have used is slightly different than the code below, but should work as is. Highly commented and full description at the top of the code. ; Yahoo HD Trailer Downloader ; ; This was written for use with a movie collection used with Media Browser (http://www.mediabrowser.tv/) in ... |
|
 |
Forum: Support Topic: x64 vs x86 |
| Lithodora |
|
Posted: December 1st, 2010, 4:51 am
|
|
Replies: 2 Views: 166
|
| Those pesky DllCalls...... msgbox % processor_type() processor_type(){ RegRead, processor, HKEY_LOCAL_MACHINE, System\CurrentControlSet\Control\Session Manager\Environment, PROCESSOR_ARCHITECTURE var := processor = "AMD64" ? 64:32 return var } pretty much the same... |
|
 |
Forum: Support Topic: x64 vs x86 |
| Lithodora |
|
Posted: December 1st, 2010, 4:20 am
|
|
Replies: 2 Views: 166
|
| IS there a better way to detect whether the system is 32 or 64 bit then this: msgbox % processor_type() processor_type(){ RegRead, processor, HKEY_LOCAL_MACHINE, System\CurrentControlSet\Control\Session Manager\Environment, PROCESSOR_ARCHITECTURE if (processor = "AMD64&... |
|
 |
Forum: Support Topic: Comparing Variable Values |
| Lithodora |
|
Posted: May 20th, 2010, 1:10 pm
|
|
Replies: 5 Views: 357
|
| Let's say I have 6 variables; var1 var2 var3 var4 var5 var6 Each has an unknown number set as it's value. I need to know which of the 6 has the largest number. I need a function to give the response of the name of the variable. It seems simple but I've been up overnight working on stuff and I can't ... |
|
 |
Forum: Support Topic: Win7 FileCreateDir |
| Lithodora |
|
Posted: April 11th, 2010, 7:52 pm
|
|
Replies: 3 Views: 1371
|
| %A_ProgramFiles% is Program Files (x86) %a1% is 0 Still no folder is created in Windows 7 Ultimate with UAC turned on. Solution: Compile AHK to EXE called Install or Installer. This prompts UAC to ask if you want the program to be allowed to make changes to the system and the file is created. (This ... |
|
 |
Forum: Support Topic: Win7 FileCreateDir |
| Lithodora |
|
Posted: April 11th, 2010, 7:39 am
|
|
Replies: 3 Views: 1371
|
| I couldn't find anything on solving this so I posted a new topic: This simply doesn't work: FileCreateDir, %A_ProgramFiles%\Myfolder\ if ErrorLevel MsgBox, Error Creating Folder. FileCreateDir, C:\Program Files (x86)\Myfolder\ if ErrorLevel MsgBox, Error Creating Folder. ErrorLevel doesn't r... |
|
 |
| Sort by: |