Visio Guy

Visio Discussions => General Visio => Topic started by: taherkhanji on February 11, 2016, 09:12:49 AM

Title: Navigation Presentation Mode between multiple Visio Files that are Hyperlinked
Post by: taherkhanji on February 11, 2016, 09:12:49 AM
Hello Everyone,

I am a Newbie with VISIO and need some urgent help finishing a presentation.

When I add a hyperlink to any object to goto a page in the same visio file. I am able to navigate to the linked page on clicking that object. It happens normally as expected. I do that in presentation mode.

Now the issue is,
I add the hyperlink to an object that is to goto a page on a different Visio file. So in presentation mode when I click on that object, it does take me to that linked page of the other visio file but it will come out of the presentation mode.

I need to navigate among multiple visio files without coming out of the presentation mode.

Kindly let me know, how can I get this done.

Thanks in advance.

Regards,
Taher
Title: Re: Navigation Presentation Mode between multiple Visio Files that are Hyperlinked
Post by: Yacine on February 11, 2016, 09:55:40 AM
This is a difficult one.

A first thought would be to prepare the documents to call with a macro that starts them in presentation mode:
Private Sub Document_DocumentOpened(ByVal doc As IVDocument)
Application.DoCmd visCmdFullScreenMode
End Sub

Just a thought.