AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Scriptlet Library v4
Goto page Previous  1, 2, 3, 4, 5
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
toralf



Joined: 31 Jan 2005
Posts: 3906
Location: Bremen, Germany

PostPosted: Tue Mar 27, 2007 11:57 am    Post subject: Reply with quote

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
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Titan



Joined: 11 Aug 2004
Posts: 5043
Location: /b/

PostPosted: Tue Mar 27, 2007 1:19 pm    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail Visit poster's website
Timo
Guest





PostPosted: Sun Feb 10, 2008 4:50 pm    Post subject: Reply with quote

And where can I find this "anchor function"?




Timo
Back to top
Titan



Joined: 11 Aug 2004
Posts: 5043
Location: /b/

PostPosted: Sun Feb 10, 2008 5:05 pm    Post subject: Reply with quote

By searching. Anchor: http://www.autohotkey.com/forum/topic4348.html
_________________
Chat (IRC) • PlusNet • Scripts • IronAHK • Contact by email not private message.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Timo
Guest





PostPosted: Sun Feb 10, 2008 9:57 pm    Post subject: Reply with quote

Thanks. Thanks.



Timo
Back to top
bvaroni



Joined: 22 Feb 2008
Posts: 44

PostPosted: Mon Feb 25, 2008 11:08 pm    Post subject: Minimization sugestion Reply with quote

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
View user's profile Send private message Send e-mail
bandittm



Joined: 18 Nov 2008
Posts: 10

PostPosted: Sun Nov 30, 2008 7:47 am    Post subject: Re: Minimization sugestion Reply with quote

Great little helper, anyone got an loaded "Scriptlet_Library_v4.ini" file to post??
Would save a lot of cuting and pasting Smile
Back to top
View user's profile Send private message
supulton



Joined: 02 Jul 2009
Posts: 9

PostPosted: Sat Jul 04, 2009 12:43 am    Post subject: Reply with quote

Amazing! Smile
Back to top
View user's profile Send private message
samhnky



Joined: 29 Sep 2009
Posts: 43

PostPosted: Sun Oct 18, 2009 3:53 am    Post subject: Awesome script Reply with quote

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. Embarassed
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
View user's profile Send private message
toralf n-l-i
Guest





PostPosted: Mon Oct 19, 2009 11:38 am    Post subject: Reply with quote

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

PostPosted: Sat Feb 20, 2010 12:04 am    Post subject: Reply with quote

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
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3, 4, 5
Page 5 of 5

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group