Copy link to clipboard
Copied
Does anyone have any idea why the scalable HTML content feature stops working when you publish a host of swf files as an aggregator project? or have a workaround for it?
In the published html file, change the height and width to 100%:
var so = new SWFObject("aggregator.swf", "Captivate", "100%", "100%", "10", "#CCCCCC");
You'll also need the captivate.css to look like this(mine was not included in the poublished folder, so I had to create it)
html,body,#CaptivateContent {
height:100%;
}
body {
margin:0;
padding:0;
overflow:auto;
}
#CaptivateContent {
text-align:center;
}
Copy link to clipboard
Copied
In the published html file, change the height and width to 100%:
var so = new SWFObject("aggregator.swf", "Captivate", "100%", "100%", "10", "#CCCCCC");
You'll also need the captivate.css to look like this(mine was not included in the poublished folder, so I had to create it)
html,body,#CaptivateContent {
height:100%;
}
body {
margin:0;
padding:0;
overflow:auto;
}
#CaptivateContent {
text-align:center;
}
Copy link to clipboard
Copied
That did it!.....I wasted an entire day trying to figure this out.....thanks a bunch!
Copy link to clipboard
Copied
Glad to help. Make use of the forums, it's usually a lot quicker!
Copy link to clipboard
Copied
I'm a newbie at this. Forgive my ignorance but how do I change the published html file?