Action Button (trigger Button) -- Is there a way to ....

  • Thread starter Thread starter John Clements
  • Start date Start date
J

John Clements

I have a question which concerns defining a trigger (action button).

I want to create a "generic" action button which would go to the shim slide
for the previous slide (2 slides back).

I only found a Previous Slide command, does anyone know if there something
like "Previous Slide -1"? This way the button would be always be relative
to slide it is placed on and eliminate to the need to hardcode the name of
the shim slide it is supposed to activate.

Regards, John
 
Sure, it can do dat.

Add this macro and set the action setting to run macro 'BackTwo' instead of
hyperlink.

======================
Sub BackTwo()
SlideShowWindows(1).View.GotoSlide _
SlideShowWindows(1).View.CurrentShowPosition - 2
End Sub
======================

Hope this helps,
B
 
Mr. B, when I'm feeling formal.

--
Please spend a few minutes checking out www.pptfaq.com This link will
answer most of our questions, before you think to ask them.

Change org to com to defuse anti-spam, ant-virus, anti-nuisance
misdirection.
 
Please spend a few minutes checking out www.pptfaq.com This link will
answer most of our questions, before you think to ask them. Done


Change org to com to defuse anti-spam, ant-virus, anti-nuisance
misdirection.
I'm not sure what you mean by the the above. Email me directly if this NG
is not the place to explain.
 
There are several viruses out there that pull names from NG addresses, and
then send them junk advertisements or use their address in a spoofed 'sent
from' field of an e-mail. Sometimes it isn't an advertisement, sometimes
it's a virus laden phony 'update' from Microsoft or some other official
sounding source. I get about 50 or so of these a day at an old e-mail
address I used to use.

There are also programs written to 'harvest' e-mail addresses from the NG's.
These are used by direct-to-your-PC marketing schmucks, sometimes referred
to as spammers. They will send out a hundred million e-mails in hopes that
0.1% of the people, who read the ad, will respond. If they do, then the
marketer gets rich. But, everyone else has to wade through the garbage
about enlargement, on-line mortgages, degrees without schooling, dating
services, 'special' friends that will being town and want to chat, drugs
from overseas and the like. In one estimate, the cost of the work time lost
to this (just deleting the bulk e-mails) was measured in the millions of
dollars every year.

There are some anti-junk e-mail programs out there that help to filter out
the unwanted e-mail before you ever get it. Some use white lists, some
black lists, some look for key words or capitalization/punctuation
percentages, some use community feedback, some use combinations of these.
There is even one (sorry, I don't remember the program name) that attacks
these spammers, by downloading 5-10 or more copies of the response web-page
and deleting them all. The idea is that, if everyone did this, the spammer
would be flooded with responses (that would make him use a lot of band-width
that he has to pay for). The web-pages are all deleted without being shown
or stored on your computer.

But the bottom line is this: By changing my e-mail address a little, it
sends the virus and spammer generated junk to a dummy address where I don't
have to delete it. If a real person wanted to e-mail me, they would read
the tag and know to change the domain of the address. Org to Com.

It is strongly recommended that all posters use some form of misdirection.

B
 
Cool!

John had emailed me about how to do this, but (as you know!) I don't do
code. If it was possible, I knew someone here would know how, though.

Thumbs up, B. Thanks for making me look good. <g>
 
Back
Top