How do you link to a particular page to a visio drawing saved in h

B

Brady

I have a 14 page visio drawing that I have saved as web page. I would like
to have a link from another web site that links to the 5 page in this
drawing. Can that be done and if so how?

Thanks
 
P

Paul Herber

I have a 14 page visio drawing that I have saved as web page. I would like
to have a link from another web site that links to the 5 page in this
drawing. Can that be done and if so how?

I think all you can do is link directly to the page image .htm file
so, if you have a document Drawing1 then there will be a folder
Drawing1_files, page 5 will be named jpg_5.htm
 
B

Brady

Thanks I was hoping to find a way to link to it so you get all of the
functionality that one gets with the typical save as web page. I looked at
the code that is generated by visio and tried something like the following.
It opens up a new window with my visio flow in it but when it trys to call
the viewMgr.loadPage it gives an error message. perhaps someone with more
javascript knowledge could help here.

Thanks
Brady

<script>
function Brady ()
{
winHandle =
window.open('http://acxiompmo/sites/pmomethod/ut...rocess_Flow.htm','NarrativeWindow','width=550,
\ height=650, \ directories=no, \ location=no, \ menubar=no, \
resizable=yes, \ scrollbars=1, \ status=no, \ Toolbar = no ');

winHandle.focus();
var viewMgr = new CViewMgr("ConvertedImage", "arrowDiv");

viewMgr.loadPage (4);

}
</script>
<A HREF="javascript:Brady()">Click Here</A>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top