![]() |
|
|
|
#1
|
|||
|
|||
|
Hello fellows,
I'm trying to preload a set of panoramas from a Flash application. Is there any function in the plug in that I can use? Other option... Thank you for any help. |
|
#2
|
||||
|
||||
|
Zephyr has his Image Cache Plug-In at Flashpanos.com
There is some question or confusion about whether or how well it actually works. Perhaps Zephyr, if he sees this thread, can clear that up.
__________________
Scott Tour de Force 360VR Scott Witte Photography ---------------------- Auto Quality Plugin: Guarantee the best FPP experience possible for every viewer on every computer. Motion Zoom Transition Plugin: Move from Node to Node |
|
#3
|
|||
|
|||
|
AS long as you use images (cubefaces) you can just use a standard javascript preloading script in your html file.
Works perfect in all browsers. Safari will however not load more than around 15-18 mb in all. Hans |
|
#4
|
|||
|
|||
|
What's the javascript/html syntax for loading the images so it's compatible with the pano or pano0 swf files?
This is what I've used before: <SCRIPT LANGUAGE="JavaScript"> <!-- hide from none JavaScript Browsers Image1= new Image(700,500) Image1.src = "images/image_0.jpg" Image2 = new Image(700,500) Image2.src = "images/image_1.jpg" // End Hiding --> </SCRIPT> Does this still apply here? How should the images be named or referrenced? This method doesn't seem to be having any effect so far. Last edited by djsegler; 04-25-2008 at 04:10 AM. Reason: Added code example... |
|
#5
|
|||
|
|||
|
Hmm...
Maybe try putting that in an actual function call, and calling it from the onload of your HTML doc? I don't think this is an FPP issue...
__________________
Patrick http://cheathamlane.net -- Tutorials: Embed Pano 101, Pano auto-presentation |
|
#6
|
||||
|
||||
|
@djsegler
Maybe you could, like cheathamlane suggested, try using something like this: Code:
<script language="JavaScript">
<!-- hide from non-JavaScript-browsers
function PreloadImages()
{
var myImage1 = new Image();
myImage1.src = 'images/image1.jpg';
var myImage2 = new Image();
myImage2.src = 'images/image2.jpg';
}
// End Hiding -->
</script>
<body onload="PreloadImages()">
Regards, Ph. Last edited by phberlin; 04-25-2008 at 12:06 PM. |
![]() |
| Thread Tools | |
| Display Modes | |
|
|