AutoHotkey Community

It is currently May 26th, 2012, 10:04 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 77 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next
Author Message
 Post subject:
PostPosted: March 27th, 2007, 11:57 am 
Offline

Joined: January 31st, 2005, 9:50 am
Posts: 3910
Location: Bremen, Germany
Elevator_Hazard wrote:
To Keybored: Same thing here... I took out the ../Anchor/ part of the include path and just placed the anchor script into the program's dir and it worked.
Another option is to copy the anchor function diretly into this script and remove the #include statement.

Elevator_Hazard wrote:
To Maker: You should update this into xml using Titan's XML Reader and Titan's XML Writer
why? What are the benefits?

_________________
Ciao
toralf
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 27th, 2007, 1:19 pm 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5347
Location: UK
toralf wrote:
What are the benefits?
Interoperability and expansion I suppose. It would be slightly complex though, for every snippet you'll have to create and parse a complete RDF such as

Code:
<?xml version="1.0"?>
<rdf:RDF
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xml:lang="en-GB">
   <rdf:Description rdf:about="urn:ahk:examplescript.ahk#20070327">
      <dc:title>Example</dc:title>
      <dc:creator>Titan</dc:creator>
      <dc:description>my gui routine</dc:description>
      <dc:type>text/plain+ahk</dc:type>
      <dc:relation rdf:parseType="Collection" xml:base="http://www.autohotkey.net/~Titan/">
         <rdf:Description rdf:about="dl/Anchor.ahk" dc:title="Anchor" />
         <rdf:Description rdf:about="dl/XPath.ahk" dc:title="XPath" />
      </dc:relation>
      <rdfs:Resource>
         <![CDATA[
            
            Gui, Add, Text, , label
            Gui, Add, Button, gClose, Quit
            Gui, Show
            Return
            
            GuiEscape:
            GuiClose:
            ExitApp
            
         ]]>
      </rdfs:Resource>
   </rdf:Description>
</rdf:RDF>


At the moment I don't think it's necessary. If you had a different idea Elevator_Hazard please post them. By the way, XMLReader/Writer have been replaced with XPath.

_________________
GitHubScriptsIronAHK Contact by email not private message.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 10th, 2008, 4:50 pm 
And where can I find this "anchor function"?




Timo


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 10th, 2008, 5:05 pm 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5347
Location: UK
By searching. Anchor: http://www.autohotkey.com/forum/topic4348.html

_________________
GitHubScriptsIronAHK Contact by email not private message.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 10th, 2008, 9:57 pm 
Thanks. Thanks.



Timo


Report this post
Top
  
Reply with quote  
 Post subject: Minimization sugestion
PostPosted: February 25th, 2008, 11:08 pm 
Offline

Joined: February 22nd, 2008, 6:12 pm
Posts: 44
Whenever u try to delete an item it goes into the cofirm msg and minimizes the main window, This gives me the feeling its running away, lol!

It´ll be nice if it kept the windows still while deleting items, also whenever i activate the window (alt tab or click on task bar) i´ld also like it to show full size and not wait for me place the cursor on its title bar to see its content.

other than that, its very good.

Really GJ

ps - I know more tree levels have already been asked but i still think they are needed here.

_________________
- Humor is but another weapon against the universe - Mel Brooks


Report this post
Top
 Profile  
Reply with quote  
PostPosted: November 30th, 2008, 7:47 am 
Offline

Joined: November 18th, 2008, 3:32 am
Posts: 10
Great little helper, anyone got an loaded "Scriptlet_Library_v4.ini" file to post??
Would save a lot of cuting and pasting :-)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 4th, 2009, 12:43 am 
Offline

Joined: July 2nd, 2009, 6:54 am
Posts: 9
Amazing! :)


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Awesome script
PostPosted: October 18th, 2009, 3:53 am 
Offline

Joined: September 29th, 2009, 1:02 pm
Posts: 75
This script looks great, I would love to integrate it into some scripts I'm working on for my Service Desk. As a Tier II agent I, and my fellow coworkers have to send emails all day long with sets of instructions to our customers... currently I use a MS word file and manually copy and paste the instructions into the email. :oops:
I have ambitious goals of creating something that the whole desk will want to use to help simplify our jobs. I see this tool being an awesome addition to the scripts that I am including, or writing into the final project. I had a quick question. My final program will need to use an INI file stored on a Server where pre-approved instructions for emails are stored for everyone and only approved updates can be made. The approved updates will be managed by a write protected network drive, so that is not the issue. My question is if you think it would be possible to add code to your script that will incorporate 2 INI files, either individually or by copying the network ini, and local ini into a temp ini file, and append updates made by the user to the local ini.
Please let me know if this is something you think could be implemented into your existing code...


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 19th, 2009, 11:38 am 
Dear samhnky,

Thank you for having so much interest in this script.

From what I read I assume it would be much better for you to write a special version just for your specific issue. To include this in the general code would be of no benefit for other users.
I haven't looked at the code for years, so I can't give you a quick hint of where to start. Sorry.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 20th, 2010, 12:04 am 
Offline

Joined: February 18th, 2010, 6:48 am
Posts: 3
I was looking for something like this for a few days.
Amazing script, thank you for making it.
I just start playing around with AHK and scripting for it (still learning to) and this will come in handy. I was saving code snips in a text file.

I have a Question (more of request):
Is it possible to get a Scriptlet.ini with some "Scriptlets" already added?
I'm trying to learn how to script for AHK, and it would be nice to have a few sample scriptlets to play/learn with.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 2nd, 2010, 4:30 pm 
Offline

Joined: August 25th, 2010, 2:32 pm
Posts: 36
What a gem!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 21st, 2010, 7:13 pm 
Offline

Joined: August 18th, 2009, 12:07 pm
Posts: 375
Location: holland
Think you should update the first post about downloading anchor as its a bit confusing
I first downloaded anchor which is now ver 4
but running the script didnt work it said it couldnt load ver 3.3
so I downloaded ver 3.3 but it still didnt work it said it couldnt load it - in the end I put it in the same folder as the script not in a subfolder and changed the include path.
finally got it to work

_________________
"Choose your parents wisely"


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 30th, 2011, 2:24 am 
Chicken Pie 4 Tea wrote:
Think you should update the first post about downloading anchor as its a bit confusing
I first downloaded anchor which is now ver 4
but running the script didnt work it said it couldnt load ver 3.3
so I downloaded ver 3.3 but it still didnt work it said it couldnt load it - in the end I put it in the same folder as the script not in a subfolder and changed the include path.
finally got it to work


I agree. Update first post with a link to anchor, which is now called anchor.ahk.

Change code to say #Include anchor.ahk instead of #Include ..\Anchor\Anchor_v3.3.ahk

Great script. Looking forward to organizing my code snippets.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 14th, 2012, 6:14 pm 
Offline

Joined: January 12th, 2011, 4:04 pm
Posts: 93
Location: Kansas City, USA
Salvete! I don't know if anyone has already asked this, but is it possible to get some autohotkey syntax highlighting?

I have been using an application called CodeBank, which seems to be no longer developed, but it has a few caveats; however, it does do code highlighting, but for ahk, I have to use vbs, which isn't quite right.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 77 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Apollo, JamixZol and 9 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group