| View previous topic :: View next topic |
| Author |
Message |
toralf
Joined: 31 Jan 2005 Posts: 3906 Location: Bremen, Germany
|
Posted: Tue Mar 27, 2007 11:57 am Post subject: |
|
|
| 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.
why? What are the benefits? _________________ Ciao
toralf  |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5043 Location: /b/
|
Posted: Tue Mar 27, 2007 1:19 pm Post subject: |
|
|
| 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. _________________ Chat (IRC) PlusNet Scripts IronAHK Contact by email not private message. |
|
| Back to top |
|
 |
Timo Guest
|
Posted: Sun Feb 10, 2008 4:50 pm Post subject: |
|
|
And where can I find this "anchor function"?
Timo |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5043 Location: /b/
|
|
| Back to top |
|
 |
Timo Guest
|
Posted: Sun Feb 10, 2008 9:57 pm Post subject: |
|
|
Thanks. Thanks.
Timo |
|
| Back to top |
|
 |
bvaroni
Joined: 22 Feb 2008 Posts: 44
|
Posted: Mon Feb 25, 2008 11:08 pm Post subject: Minimization sugestion |
|
|
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 |
|
| Back to top |
|
 |
bandittm
Joined: 18 Nov 2008 Posts: 10
|
Posted: Sun Nov 30, 2008 7:47 am Post subject: Re: Minimization sugestion |
|
|
Great little helper, anyone got an loaded "Scriptlet_Library_v4.ini" file to post??
Would save a lot of cuting and pasting  |
|
| Back to top |
|
 |
supulton
Joined: 02 Jul 2009 Posts: 9
|
Posted: Sat Jul 04, 2009 12:43 am Post subject: |
|
|
Amazing!  |
|
| Back to top |
|
 |
samhnky
Joined: 29 Sep 2009 Posts: 43
|
Posted: Sun Oct 18, 2009 3:53 am Post subject: Awesome script |
|
|
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.
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... |
|
| Back to top |
|
 |
toralf n-l-i Guest
|
Posted: Mon Oct 19, 2009 11:38 am Post subject: |
|
|
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. |
|
| Back to top |
|
 |
SquirrelSlax
Joined: 18 Feb 2010 Posts: 3
|
Posted: Sat Feb 20, 2010 12:04 am Post subject: |
|
|
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. |
|
| Back to top |
|
 |
|