in reply to Macro goto xlate help

See Win32::OLE on how to pass named parameters, and Win32::OLE::Constant on how to get at the needed constants. Basically, the following should work (and Perl does not use fancy quotes):

$word_app->ActiveWindow->Selection->GoTo({ What => wdGoToSection, whic +h => wdGoToNext, Count => 1, Name => ''\);

Replies are listed 'Best First'.
Re^2: Macro goto xlate help
by Anonymous Monk on Oct 12, 2010 at 16:47 UTC

    Thanks Corion! That worked!