Who can post on the job board
1. You must first be a registered member of AcrobatUsers.com and logged in.
2. Not a member? Registration is free and provides numerous benefits.
How to post on the job board
1. All job postings must be Acrobat-related. Job postings that are not Acrobat-related or are irrelevant be removed.
2. Title of post must begin with 'jobs offered' or 'jobs wanted.'
EXAMPLE: Job Offered: Full-time Acrobat JavaScript Developer Needed
EXAMPLE: Job Wanted: Part-time Writer with 6 Years Acrobat Experience
3. If you’re looking for a job, be sure to create a Profile on AcrobatUsers.com to detail additional information about yourself.
4. Be sure to active your e-mail link in the forums to facilitate contact.
5. Post a link to your resume. If you don’t have a location to post your resume, you can post it on Acrobat.com (free service).
For more information on how to do this visit the following blog, Using Acrobat.com to Share Files in the Forums.
6. If you’re replying to a post, be sure to Subscribe to the topic for additional updates.
How to close a post
1. When your job post has been filled or you are no longer available for work, please be sure return to the job board forum and edit your title to close the thread.
EXAMPLE: CLOSED: Job Wanted: Part-time Contractor for Acrobat Forms
2. All job postings will be closed after 60 days on the board, so be sure to return frequently to update.
1. Create custom menu item (in both Acrobat and Acrobat Reader) that will
2. Run an Excel add-in subroutine, taking a passed parameter
Apparently this can't be done in JavaScript, and needs to be a C++ plug-in. More details:
A. The menu item really only needs to come up when a user is viewing a document
B. The VB code that I use (within Access/VBA) is:
XL.Run "'C:\Documents and Settings\Administrator\Application Data\Microsoft\AddIns\PharmaDocs.xla'!DMS_ShowDocuments", strParam
Where XL is an Excel application object, followed by the strange-grammar path to the add-in itself and the name of the subroutine. Notice this VBA Run command allows parameter passing so the strParam is a string that gets passed to the subroutine as well.
I don't have to have the parameter-passing but I DO need that specific subroutine to launch. When using VBA, this starts an Excel instance without really "showing" it, and that's what I'm after. FYI this subroutine opens a userform, takes input, and "does stuff".
So I am looking for the same functionality I describe in (1) and (2) above, but for Acrobat.
Thanks for help/quotes.
m