Attached is an AutoIt script to find the next table and go to the first cell.
You have to find the "Any Table" before running it.
You also have to install AutoIt (free) from http://www.autoitscript.com/site/autoit/
  
Regards,
Shmuel Wolfson
Technical Writer
052-763-7133
 
On 26-Apr-13 1:01 AM, Alison Craig wrote:

I got that advice off-list – and it works, except there is the extra step of esc t m t to get to the beginning of the first cell.

 

It would be nicer if there was just a command to go to the beginning of the first cell of the next table.

 

Thanks, Alison

 

From: Stuart Rogers [mailto:srog...@phoenix-geophysics.com]
Sent: Thursday, April 25, 2013 3:01 PM
To: Alison Craig
Cc: framers@lists.frameusers.com
Subject: Re: Skip to Next Table Command?

 

On 2013-Apr-25 4:34 PM, Alison Craig wrote:

FM 9 Version: 9.0p255

Unstructured

OS: Windows 7, 64 bit

 

Is there a “skip to next table” command?

 

I’m using Silicon Prairie tools to check everything in my books for overrides (tedious to say the least) and it would be so much simpler to check the tables is there was a keyboard command to move from “wherever” in the current table to the beginning of the first cell in the next table.

 

I checked the Frame 9 PDF and also Scriptorium’s Unstructured Frame 8 book, but no luck.

 

 



I'm on FM 10, and can't remember if FM 9 has this command:  Edit > Find/Change > Find Any Table.  If FM 9 has it, there you go.  Or it might have Find Table Tag <table tag name>?

HTH,

-- 
Stuart Rogers
Technical Communicator
Phoenix Geophysics Limited
3781 Victoria Park Avenue, Unit 3
Toronto, ON, Canada  M1W 3K5
+1 (416) 491-7340 x 325
 
http://www.phoenix-geophysics.com


_______________________________________________


You are currently subscribed to framers as shmue...@gmail.com.

Send list messages to framers@lists.frameusers.com.

To unsubscribe send a blank email to
framers-unsubscr...@lists.frameusers.com
or visit http://lists.frameusers.com/mailman/options/framers/shmuelw1%40gmail.com

Send administrative questions to listad...@frameusers.com. Visit
http://www.frameusers.com/ for more resources and info.

; This script finds the next table and goes to the first cell.
; Find "Any Table" before running this script.

Opt("WinTitleMatchMode", 2)
Dim $answer

While 1 
   WinActivate(".fm")
   WinWaitActive(".fm")
   Send("^+f") ; CTRL+SHIFT+f = find next
   Sleep(400) ; pause 400 millseconds
   Send("{ESC}tmt")
   $answer = MsgBox(262145, "", "Next table?")
   If $answer = 2 Then Exit 
WEnd
_______________________________________________


You are currently subscribed to framers as arch...@mail-archive.com.

Send list messages to framers@lists.frameusers.com.

To unsubscribe send a blank email to
framers-unsubscr...@lists.frameusers.com
or visit 
http://lists.frameusers.com/mailman/options/framers/archive%40mail-archive.com

Send administrative questions to listad...@frameusers.com. Visit
http://www.frameusers.com/ for more resources and info.

Reply via email to