问题
Is it possible to get the name of the current page dynamically and add it to the link?
I am trying to add a "Feedback" button to each page of my visio diagram and want to create a mailto: hyperlink on that shape adding as much information as I can in the link.
So, my link looks like
mailto:TargetMailbox@mycompany.com?subject=Visio%20for%20Standards%20-Question/Comment XXXXXXXXXXX Add page name XXXXXXXXXXXXX&cc=LoggedinUser@mycompany.com&body=I%20have%20a%20question.%0AI%20would%20like%20to%20know
Here, in the subject part - I would like to add the page name of the page from which the "Feedback" button is clicked.
Is this possible? How can I do it?
回答1:
You can use the PAGENAME ShapeSheet function as follows:
Hyperlink.Row_1.Address ="mailto:TargetMailbox@mycompany.com?subject=Visio%20for%20Standards%20-Question/Comment%20"&PAGENAME()&"&cc=LoggedinUser@mycompany.com&body=I%20have%20a%20question.%0AI%20would%20like%20to%20know"
来源:https://stackoverflow.com/questions/19579346/visio-2010-using-a-page-name-in-mailto-link