topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Thursday April 25, 2024, 1:54 pm
  • 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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - uries62 [ switch to compact view ]

Pages: [1]
1
Any chance this toggle has been implemented?  I have a help file accessed from within appcapappendmemo and it takes a while until it finishes loading the entire report. In the mean time, I can't scroll or do anything.

2
I use zotero, (a reference manager like endnote) with firefox to keep track of all my references.  I recently discovered a ubuntu / debian package that uses python to copy and then access the sqlite database within zotero to find references and their connected pdf's provided by a search for a specific date or author name. 

The package is gnotero http://www.cs.vu.nl/...dex.php?page=gnotero and looks to be entirely written in python with a zoterotools module, and a module used to create a dialog box in the gnome window manager. 

I think I remember that you could write plugins in python with Fscript, but wasn't entirely sure how to start. 

I guess I have two basic questions. 

Can you program and access external modules in python through FARR so I can get the input and output functionality as in gnotero, also can you output the information in FARR similar to the way it is shown on the linked page?

I have been using FARR for at least 3 years, but haven't gotten into plugins until now.

3
Find And Run Robot / Auto Center FARR
« on: January 23, 2009, 03:02 PM »
Just a little something I came up with using ahk and FARR to auto-center regardless of size.  Maybe it has already been done?

Code: AutoIt [Select]
  1. #Persistent, On
  2.  
  3. SetTimer, center, 500
  4.  
  5. ; Center FARR
  6. center:
  7. IfWinActive, ahk_class TMainForm
  8. Wingetpos, , ,Width, Height, ahk_class TMainForm
  9. WinMove, ahk_class TMainForm, , (A_ScreenWidth/2)-(Width/2), (A_ScreenHeight/2)-(Height/2)

Pages: [1]