topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Sunday June 29, 2025, 12:27 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 99 100 101 102 103 [104] 105 106 107 108 109 ... 158next
2576
General Software Discussion / Re: nag window software
« Last post by Contro on August 17, 2013, 08:27 PM »
ClickOff seems close.

:-[
Oh my god. I knew this. In the goldmine forum I do a consult because a nag screen appear in 01.01.2012
Just trying to localize a program I found this old information.
One technic name ClickOff. And goes well.
And for this time ClickOff goes well.

In the goldmine forum another member discover another solution hacking the main exe file gmw5.exe
I don't remember well what I do but I have reference somewhere. i think i have to edit the exe file and substitute a year. Then the snag screen was solved and i forget quickly ClickOff.
But now I have downloaded the last version from december 2012 and goes very well.

Best Regards
2577
General Software Discussion / Re: nag window software
« Last post by Contro on August 17, 2013, 12:55 PM »
I guess something can be done with autohotkey's #ifwinactive#.
But how, that I don't know.

 :-[
Perhaps a code snack.
But wait perhaps somebody knows. Because the purpose is general and configurable. Interactive response to an emerging windows and determine its class, type, properties, buttons and save the answer : continue, cancel, ......

 :P
2578
General Software Discussion / nag window software
« Last post by Contro on August 17, 2013, 10:36 AM »
I am looking for a freebie to solve this similar situations :



A resident to be able to recognize an activated window and take a decision : postpone

Best Regards


2579
OK
At the present moment may be possible with an AHK script ?
 :-*
2580
Well, it certainly can be done as an add-on. Evernote used have one (maybe still do). I currently use an InfoQube addon to save emails to an InfoQube folder (but it's not customisable, sorry!)

i understand. i have an old version of goldmine : 5.5.
Really the aim is a perfect information manager with my old software and not so old software. that's the point. because of this i need a code snack i suppose.

 :-\
2581
 :mad:
Really.
I need a very customisable one indeed
 :huh:
2582
you don't need anything extra. In Thunderbird you mark / select the files you want to copy. Then go to "Files" and click Save As... > Files, and navigate to the folder > Save. That's all.


I need something more powerful.
I usually use the drag and drop option to the open folder.....
2583
You *think* - or you know?  :P

jajajaja. I think you think and I think i know because is an addon I have in TB
 ;D
2584
I have begin the post here :
https://www.donation...?topic=35777.new#new

I would like a hotkey to "copy" the selected messages (eml files) from thunderbird to a folder in windows explorer of my election.
Configurable. Multiple selections.

Best Regards
 :-*
2585
I think is not the same.
That tool is for general purpose, not for "copy" the email from the thunderbird main window to a desired folder in the windows explorer.
 :P
2586
copy an eml file from TB to a folder under windows 7

I would like a script for copy the selected eml files from the main window in Thunderbird to a folder of my election in windows explorer under windows 7.

Do you know any software to do this o perhaps is a little snack ?

Best Regards
2587
General Software Discussion / Re: mp3 audio to text
« Last post by Contro on August 11, 2013, 08:45 AM »
Running to learn
2588
General Software Discussion / Re: mp3 audio to text
« Last post by Contro on August 11, 2013, 07:59 AM »
I use Ivona products -excellent!

link

 :-[

I am meaning audio to text, not text to speech......
2589
General Software Discussion / Re: mp3 audio to text
« Last post by Contro on August 10, 2013, 04:45 AM »
It's is the transcript of speech/discussion.

 :P
2590
General Software Discussion / Re: mp3 audio to text
« Last post by Contro on August 08, 2013, 06:11 PM »
 :-*
I am going to learn.
Best Regards
2591
My real thought is in correspondance with the programmer.
For me AHK is enough for a good programmer.
But a good programmer likes to solve problems and like at least three languages or more.
AHK is able for almost any problem except perhaps some abilities like optical recognition, auditive recognition or complex interaction with specialised hardware such as technical sensors or artificial intelligence.
Perhaps exists a lot of software programmer solutions because of commercial interests or simply our human nature and flexibility.
Of course our world is continually changing with new operating systems and the programmers look for common and universal languages. But the Babel Tower is there ....
In all these years in DC i have observed we are far away of solving our real problems and even automation is a dangerous thing in the general context.
But of course all we love automation and everyday trying of creation ideas.
Automation Anywhere seems oriented to people like me (not programmer) but this is not completely true because the real power comes along with the integration software idea and optical recognition.
And perhaps, I don't know really, AHK can make some of these tasks with more or less effort and more satisfaction.

 :-*
2592
General Software Discussion / Re: Open or launch hyperlinks from a pdf file
« Last post by Contro on July 14, 2013, 07:23 PM »
 ;D

Owwww , this was the function :

http://www.tek-tips.com/viewthread.cfm?qid=1689945

Function doHL() Dim nd As Document Dim a As Document Dim h As Hyperlink Dim r As Range Application.ScreenUpdating = False Set a = ActiveDocument Set nd = Documents.Add For Each h In a.Hyperlinks Set r = nd.Range r.Collapse r.InsertParagraph r.InsertAfter (h.Address) Next nd.Activate Application.ScreenUpdating = True Application.ScreenRefresh End Function
2593
What is an OP ? :-*
2594
General Software Discussion / Re: Open or launch hyperlinks from a pdf file
« Last post by Contro on July 14, 2013, 07:04 PM »
Retrieving Hyperlinks from a Word Document

One of the…joys…of working at a place like Microsoft is that you get plenty of opportunities to brush up on your reading; hardly a day goes by without you being asked to read a white paper, a spec, a proposal, a draft chapter…. As you might expect, any time you read that many things you’re bound to encounter a clunker or two; in fact, there have been several occasions when we said to ourselves, “Well, the paper isn’t very good, but there sure are a lot of useful references scattered throughout it. If only there was a way to extract the hyperlinks and discard the rest of the document.”

But, unfortunately, there’s no way to – what’s that? You say that the Microsoft Word object model includes something called the Hyperlinks collection, a collection that contains all the hyperlinks found in the document? You say that we could write a script that extracts all these hyperlinks? You say that we could then take these hyperlinks and add them to our Internet Explorer Favorites or save them as an HTML page?

Wow. Wish we’d thought of that.

Turns out that you guys were right: we can write a script that extracts all the hyperlinks from a Word document. In fact, here’s a script that does that very thing:



Set objWord = CreateObject("Word.Application")
objWord.Visible = True

Set objDoc = objWord.Documents.Open("c:\scripts\test.doc")

Set colHyperlinks = objDoc.Hyperlinks

For Each objHyperlink in colHyperlinks
    Wscript.Echo objHyperlink.Address
    Wscript.Echo objHyperlink.TextToDisplay
Next



That’s right: on top of being very handy this script is amazingly simple as well. We begin by creating an instance of the Word.Application object, and then set the Visible property to True. (We do that just so you’ll see Word pop up on the screen and thus get some assurance that the script is hard at work.) When then use the Open method to open the document C:\Scripts\Test.doc.

The rest is easy. We use the Hyperlinks property to return a collection of all the hyperlinks found in the document; those hyperlinks get stashed in a variable named colHyperlinks. Next we set up a For Each loop and loop through all the hyperlinks in the collection; for each hyperlink we echo the value of two properties:

    Address, which is the URL of the hyperlink.

    TextToDisplay, which is the text you actually click on.

For example, suppose we had a link like this, a link that takes you to the Script Center home page (http://www.microsoft...tcenter/default.mspx):

Script Center

If this is the only hyperlink in Test.doc then our script returns output like this:



http://www.microsoft...tcenter/default.mspx
Script Center



Yes, very cool.

But you’re right: not as cool as it could be. It’s nice that we can echo back URLs in a command window or a message box; unfortunately, though, you can’t click a hyperlink in a command window and be transported to that Web page. (We tried.) What would really be cool would be the ability to add these URLs to our Internet Favorites folder or to an HTML document. And because the Scripting Guys and cool are practically synonymous (hey, we said practically), then let’s do something really cool and add these URLs to our Internet Favorites:



Set objWord = CreateObject("Word.Application")
objWord.Visible = True

Set objDoc = objWord.Documents.Open("c:\scripts\test.doc")

Set colHyperlinks = objDoc.Hyperlinks

For Each objHyperlink in colHyperlinks
    objHyperlink.AddToFavorites
Next



Hey, we said this was cool; we didn’t say it was hard. As you can see we pretty much used the same script as before; the only difference is that we didn’t echo back the properties of each hyperlink. Instead we simply called the AddToFavorites method and had Word add each hyperlink to our Internet Favorites. (Really: try it for yourself and see.) Notice that we don’t even have to pass the AddToFavorites method any parameters; it does all the work for us.

Of course, this also means that AddToFavorites won’t always do things exactly the way we’d like them to. For example, when testing this method we had the following hyperlink (linking to http://www.microsoft...s/qanda/default.mspx) in our document:

Hey, Scripting Guy!

When this was added to our Internet Favorites it looked like this:

Default.mspx (www.microsoft.com)

The link worked fine; it just had a different name than we expected.

Of course, you might not want every hyperlink automatically added to your Internet Favorites. But that’s OK; it’s very easy to create an HTML page that includes all these links. All you’d have to do then is open that particular page and start clicking links. For example, here’s a script that creates a file named C:\Scripts\Links.htm. The script then grabs all the hyperlinks from our Word document and uses HTML tagging to create a corresponding link in Links.htm:



Set objWord = CreateObject("Word.Application")
objWord.Visible = True

Set objDoc = objWord.Documents.Open("c:\scripts\test.doc")

Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.CreateTextFile("c:\scripts\links.htm")

Set colHyperlinks = objDoc.Hyperlinks
For Each objHyperlink in colHyperlinks
    objFile.WriteLine "<a href=" & chr(34) & objHyperlink.Address & Chr(34) & ">" & _
        objHyperlink.TextToDisplay & "</a href><br>"
Next

objFile.Close



We won’t talk about the HTML tagging today; that’s a bit outside the scope of this column. However, you can find more information in the HTML and DHTML Reference on MSDN. In the meantime, here’s what your finished product might look like:
Internet Explorer


Now that’s cool.
Top of page


this may be another answer i haven't tried. I keep tryng to locate the script i applied
 :-[
2595
General Software Discussion / Re: Open or launch hyperlinks from a pdf file
« Last post by Contro on July 14, 2013, 07:00 PM »
I have a text document with randomly spread URLs. Is there any solution to extract all the URLs under Word?
Solution

    Press Alt + F9 to display the fields
    Ctrl + F to open the search box
    Search: ^d hyperlink
    Check "Highlight all items found ..."
    Click on the Find All button
    Close the dialog
    Ctrl + C to copy everything that is highlighted
    Open a new document and paste.



Thanks to M@rina for this tip.


This may be another method i haven't try. I am keep trying to locate the script for VB editor I used. .....

 :(
2596
General Software Discussion / Re: Open or launch hyperlinks from a pdf file
« Last post by Contro on July 14, 2013, 06:38 PM »
I continue investigating.
Recently I got this :
1. Convert the pdf to a doc word document
2. Apply a function to extract all the url to a new doc file. a VB script for word 2010.
but for my God now I have lost the script. When refound I'll put here.
The answer is possible too with special software like pCOS and other (PDFlink ?).
I am trying to relocate all this and put the links....
 :-[


Note : At my present situation my problem may be solved because now i have the url addresses in a txt file. And with "my" script LinetoClip I parse the url to the browser opening all the tabs even with a temporal distance between the launchs.
With the url in a txt file is super easy with AHK to multi launch.....

Really my target now is the partial scanning of any folder to my goldmine database.
While scanning the folder the files are added to my database and linked in the link tab. I can do in two ways : creating multiple records or a single records with all the links.
But the partial scanning must control the files and take into consideration past actions. This is useful with the scanned files folder of the year I need to link several times each year, but only once each file inside.

 :-[


2597
General Software Discussion / Re: Open or launch hyperlinks from a pdf file
« Last post by Contro on July 14, 2013, 12:30 AM »
I can't
I have tried, but I don't see the way to open multiple url included in the pdf file.
 :-[
2598
General Software Discussion / Re: Open or launch hyperlinks from a pdf file
« Last post by Contro on July 13, 2013, 05:08 PM »
 :-*

trying.
But I need to open all hyperlinks with a hotkey.....
In different tabs of my browser

2599
General Software Discussion / Open or launch hyperlinks from a pdf file
« Last post by Contro on July 13, 2013, 05:00 PM »
Open or launch hyperlinks from a pdf file

Periodically I receive a pdf with links to web normatives (laws...).
Are normally 20 or less links
I would like a program to open all links in my firefox browser at the same time (one after another....)

How can I do this ?

Best Regards

Note : a code snack ?

2600
Could it be this rather expensive Automation Anywhere?
Yes, we can find that, sure, but dropping a question, without any documentation whatsoever, and at the rate the OP is dropping them, makes me wonder about his google-abilities :(

 ;D

Oohhhh yes. Number 2000 post cominggggg
 :P
Pages: prev1 ... 99 100 101 102 103 [104] 105 106 107 108 109 ... 158next