| Author |
Message |
Forum: Support Topic: How to retrieve FileGetTime and paste in a cell on a page? |
| memoday |
|
Posted: March 19th, 2008, 8:18 pm
|
|
Replies: 3 Views: 470
|
| What you will do is have AHK write the html source file that will be used when the page is needed, like you would with php or one of the other languages used on the internet. Some where there is a post going into how this can be done semi-cleanly. Edit: Found it . Thank you so much for sharing this... |
|
 |
Forum: Support Topic: How to retrieve FileGetTime and paste in a cell on a page? |
| memoday |
|
Posted: March 19th, 2008, 6:54 pm
|
|
Replies: 3 Views: 470
|
| Hi there, I have a simple web page (html) with a table and a column called (Last Modified). What I wan to do is to have the modified date of the file displayed in the that column in the row corresponding to the file name. Is there a way to do that? How can I intergrate a AHK script within HTML? Is t... |
|
 |
Forum: Support Topic: How can we send right to left? |
| memoday |
|
Posted: March 10th, 2008, 5:28 am
|
|
Replies: 7 Views: 602
|
| String = A quick brown fox jumped over the lazy dog. Loop % StrLen(String) Send % SubStr(String, StrLen(String) - A_Index + 1, 1 ) That should do for normal strings. I don't know about the second thing you're asking for though. Thanks VxE for your reply. How can I reverse th... |
|
 |
Forum: Support Topic: How to override the default browser in a script? |
| memoday |
|
Posted: March 9th, 2008, 12:10 am
|
|
Replies: 11 Views: 3012
|
| an example with IE ;------- INTERNET EXPLORER IE STATUSBARWAIT search for Done ------------ ; ; or see example here= ; http://www.autohotkey.com/forum/topic19256.html ; #Persistent coordmode,mouse SetTitleMatchMode, 2 winset,alwaysontop,on mousemove,0,0 ;mouse to left corner ;......................... |
|
 |
Forum: Support Topic: My script functions on some machines and doesn't on others? |
| memoday |
|
Posted: March 8th, 2008, 12:12 pm
|
|
Replies: 5 Views: 908
|
| A Million Thanks to you SKAN. I really appreciate it. |
|
 |
Forum: Support Topic: My script functions on some machines and doesn't on others? |
| memoday |
|
Posted: March 6th, 2008, 9:39 pm
|
|
Replies: 5 Views: 908
|
Thanks lexiKos and SKAN for your reply.
Do you have any idea why this script does not function consistently on all machines? It works fine on machines with AHK installed.
Is there something wrong in the code itself.
Thanks again for your help. |
|
 |
Forum: Support Topic: My script functions on some machines and doesn't on others? |
| memoday |
|
Posted: March 5th, 2008, 11:43 pm
|
|
Replies: 5 Views: 908
|
| Hi everybody, I did create a simple script, but this script (after compiling it into exe file), works on all machines where AutoHotKey is installed, but on all other machines that do not have AHK installed, it does just fire up Internet Explorer the first time I use the hotkey and after that it does... |
|
 |
Forum: Support Topic: Tutorial for Newbies |
| memoday |
|
Posted: March 5th, 2008, 8:58 pm
|
|
Replies: 17 Views: 20868
|
| As a person who started using AHK having absolutely zero programming experience (never taken a class or read a book on computers in my life), I will give you my 2 cents on learning it. Thanks A Million jaco0646. I have just come across this thread, and I am a newbie too. You have a really smart log... |
|
 |
Forum: Support Topic: How can we send right to left? |
| memoday |
|
Posted: March 5th, 2008, 5:07 am
|
|
Replies: 7 Views: 602
|
| Try to be more specific, please. Do you want to reverse a given string then Send it? Sorry to get in. Yes, how can we reverse a text? Let me make it clearer: I want a script that can convert the English text residing in Arabic sentence and make it left to right. I also want it for example, select a... |
|
 |
Forum: Support Topic: How to override the default browser in a script? |
| memoday |
|
Posted: February 29th, 2008, 11:34 pm
|
|
Replies: 11 Views: 3012
|
| hello memoday, can't test your script url doesn't work for me here an example with FireFox, wait until page is loaded, then continue Thank you so much garry for your help. How would you do the same thing, but with Microsoft Internet Explorer? The internal terminology database does not work with Moz... |
|
 |
Forum: Support Topic: How to override the default browser in a script? |
| memoday |
|
Posted: February 27th, 2008, 8:50 pm
|
|
Replies: 11 Views: 3012
|
| define when start (?) IE=%ProgramFiles%\Internet Explorer\IEXPLORE.EXE run,%IE% http://www.transnat.net/termbase/MainSearch.aspx,,max Thanks garry for your help. Where in the code should I put it please? I am sorry, I am newbie. I tried a few things, and now it does open another instance of IE. tha... |
|
 |
Forum: Support Topic: How to override the default browser in a script? |
| memoday |
|
Posted: February 27th, 2008, 7:15 am
|
|
Replies: 11 Views: 3012
|
| please post some example code. Thank you so much for your help in advance. Here is a sample code. BTW, I am a newbie :oops: #t:: path = C:\Program Files\Internet Explorer\iexplore.exe #Persistent ; keep program running #SingleInstance force #NoEnv Run, http://www.transnat.net/termbase/MainSearch.as... |
|
 |
Forum: Support Topic: How to override the default browser in a script? |
| memoday |
|
Posted: February 27th, 2008, 1:35 am
|
|
Replies: 11 Views: 3012
|
| Hi guys, I really need your help this time and I hope someone there is willing to help. I have managed to create a script that can function as planned, but for some reason whenever I use the hotkey (#t::), it opens an instance of the web page in both Mozilla FireFox and Internet Explorer. I just wan... |
|
 |
Forum: Support Topic: How to force using same Internet Explorer Window session? |
| memoday |
|
Posted: February 27th, 2008, 1:13 am
|
|
Replies: 7 Views: 4981
|
wOxxOm wrote: it depends on script maybe you can activate the existing browser window
Thanks for your reply.
I want to have my script use the same IE Window for search. How to force such behavior in AHK? |
|
 |
Forum: Support Topic: How to force using same Internet Explorer Window session? |
| memoday |
|
Posted: February 26th, 2008, 1:00 am
|
|
Replies: 7 Views: 4981
|
| Dear all, I am trying to create a script that should search a password-protected internal terminology database? I managed to create a script that more or less achieves what I was hoping for, but I have a problem now. Whenever I use the hot key to run the script, it opens a new IE window which is ver... |
|
 |
| Sort by: |