Hi again. I've tried the new external image viewer in 5.0.13 but I still
can't get IE9 to view in embedded mode. So I'm once again trying to embed a
pdf file so that IE9 will display it in embedded mode instead of using the
default pdf viewer so that it doesn't cover up my icons in my topleftmenu
bar. I found the js file at PDFObject.com:
[[pdfobject.js]]

/* PDFObject, copyright (C) 2008 Philip Hutchison (pipwerks.com).
Documentation and examples are at www.pdfobject.com. Version 1.2,
April 2011. MIT style license */
var PDFObject=function(y){if(!y||!y.url){return false;}var
w="1.2",b=y.id||false,i=y.width||"100%",z=y.height||"100%",r=y.pdfOpenParams,a,x;var
v=function(){var c=null;if(window.ActiveXObject){c=new
ActiveXObject("AcroPDF.PDF");if(!c){c=new
ActiveXObject("PDF.PdfCtrl");}if(c!==null){return true;}}return
false;};var u=function(){var c,f=navigator.plugins,d=f.length,e=/Adobe
Reader|Adobe PDF|Acrobat/gi;for(c=0;c<d;c++){if(e.test(f[c].name)){return
true;}}return false;};var t=function(){var
c=navigator.mimeTypes["application/pdf"];return(c&&c.enabledPlugin);};var
s=function(){var
c=null;if(u()||v()){c="Adobe";}else{if(t()){c="generic";}}return
c;};var q=function(){var
e=document.getElementsByTagName("html");if(!e){return false;}var
c=e[0].style,d=document.body.style;c.height="100%";c.overflow="hidden";d.margin="0";d.padding="0";d.height="100%";d.overflow="hidden";};var
p=function(d){var c="",e;if(!d){return c;}for(e in
d){if(d.hasOwnProperty(e)){c+=e+"=";if(e==="search"){c+=encodeURI(d[e]);}else{c+=d[e];}c+="&";}}return
c.slice(0,c.length-1);};var o=function(d){var
c=null;switch(d){case"url":c=a;break;case"id":c=b;break;case"width":c=i;break;case"height":c=z;break;case"pdfOpenParams":c=r;break;case"pluginTypeFound":c=x;break;case"pdfobjectversion":c=w;break;}return
c;};var n=function(d){if(!x){return false;}var
c=null;if(d){c=(d.nodeType&&d.nodeType===1)?d:document.getElementById(d);if(!c){return
false;}}else{c=document.body;q();i="100%";z="100%";}c.innerHTML='<object        
data="'+a+'"
type="application/pdf" width="'+i+'" height="'+z+'"></object>';return
c.getElementsByTagName("object")[0];};a=encodeURI(y.url)+"#"+p(r);x=s();this.get=function(c){return
o(c);};this.embed=function(c){return n(c);};return this;};

Type: application/javascript

but then I can't figure out how to do the following:

<!-- insert in the document head -->

<script type='text/javascript'>

  function embedPDF(){

    var myPDF = new PDFObject({

      url: 
'file:///C:/Users/saltiec/Documents/Family/Andy/tiddlywikidev/sysmap.pdf',
      pdfOpenParams: { pagemode: 'none', scrollbars: '0', toolbar:
'0', statusbar: '0', messages: '0', navpanes: '0' }

    }).embed();

  }

  window.onload = embedPDF; //Feel free to replace window.onload if needed.

</script>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.

Reply via email to