[SWFObject] SWFObject Digest, Vol 2, Issue 10

Geoff Stearns geoff at deconcept.com
Tue May 2 13:44:46 PDT 2006


i just noticed that your movie is 2880px by 2800px  - is this  
intentional?

this would create a massive flash movie that goes off the screen, so  
when you see that gray thing, that means that it's working - the  
expressinstaller centers the dialog in the middle of the flash  
screen, so if you make your browser window *really* big, you might be  
able to see the bottom corner of it.

try making your flash movie a little smaller and see if you can see it.


On May 2, 2006, at 4:36 PM, Steve Norris wrote:

> Actually, I have the autoinstall set to install Flash
> Player 8 as follows:
>
> var EnhanceLoaderObject = new
> FlashObject("EnhanceFolder/EnhanceLoader.swf",
> "EnhanceLoader", "2880", "2880", "8", "#FFFFFF", true);
> EnhanceLoaderObject.addParam("wmode", "transparent");
>
> I have Flash player 7 installed on my machine.
>
> When I view my HTML in IE 6, my div or transparent .swf
> turns a translucent dark gray and Flash Player 8 does not
> install, nor do I get any prompts to install it.
>
> If I remove the true parameter above and remove the first
> frame of my .swf which contains the expressinstall.as and
> code, your embed works flawlessly.
>
> I'm hoping this is just a path issue but I have not been
> able to find that problem with the code.
>
> Steve
>
> On Tue, 02 May 2006 13:16:39 -0700
> swfobject-request at lists.deconcept.com wrote:
>
>> Send SWFObject mailing list submissions to
>> 	swfobject at lists.deconcept.com
>>
>> To subscribe or unsubscribe via the World Wide Web,
>> visit
>> 	http://lists.deconcept.com/listinfo.cgi/swfobject-deconcept.com
>> or, via email, send a message with subject or body
>> 'help' to
>> 	swfobject-request at lists.deconcept.com
>>
>> You can reach the person managing the list at
>> 	swfobject-owner at lists.deconcept.com
>>
>> When replying, please edit your Subject line so it is
>> more specific
>> than "Re: Contents of SWFObject digest..."
>>
>>
>> Today's Topics:
>>
>>   1. express install not working (Steve Norris)
>>   2. Re: express install not working (Geoff Stearns)
>>
>>
>> --------------------------------------------------------------------- 
>> -
>>
>> Message: 1
>> Date: Tue, 02 May 2006 15:15:47 -0400
>> From: "Steve Norris" <snorris at norrisoft.com>
>> Subject: [SWFObject] express install not working
>> To: swfobject at lists.deconcept.com
>> Message-ID: <web-84245648 at easycgi.com>
>> Content-Type: text/plain; charset="ISO-8859-1";
>> format="flowed"
>>
>> Hi Geoff,
>>
>> I combined your FlashObject code with an existing .js
>> file
>> of mine as follows and it works beautifully:
>>
>> HTML code:
>>
>> <div id="NorrisoftEnhanceLoader"
>> name="NorrisoftEnhanceLoader" style="position:absolute;
>> width:2880px;height:2880px; z-index:99; left: 0px; top:
>> 0px; visibility: visible;">
>> <script type="text/javascript"
>> src="EnhanceFolder/enhanceJS.js"></script>
>> <script
>> type="text/javascript">if(document.browserOK){try 
>> {EnhanceLoaderObject.addVariable("projectXMLFile",
>> "EnhanceFolder/i7_Applying_ForEnhanceInventory/inventory.xml")}catch
>> (e) {};
>> try{EnhanceLoaderObject.write("NorrisoftEnhanceLoader")}catch
>> (e)
>> {}}else{NorrisoftEnhanceLoader.style.visibility="hidden"};</ 
>> script></body>
>>
>> JS file:
>>
>> var EnhanceLoaderObject = new
>> FlashObject("EnhanceFolder/EnhanceLoader.swf",
>> "EnhanceLoader", "2880", "2880", "7", "#FFFFFF");
>> EnhanceLoaderObject.addParam("wmode", "transparent");
>>
>> Like I said, everything works beautifully - my .swf
>> displays nicely. However, when I try to use autoinstall
>> by
>> inserting a blank keyframe before my first frame of my
>> .swf and adding the following:
>>
>> #include "expressinstall.as"
>>
>> // initialize the ExpressInstall object
>> var ExpressInstall = new ExpressInstall();
>>
>> // if the user needs to upgrade, show the 'start
>> upgrade'
>> button
>> if (ExpressInstall.needsUpdate) {
>> 	ExpressInstall.init();
>> 	stop();
>> }
>>
>> and changing the Flash Object instantiation to:
>>
>> ("EnhanceFolder/EnhanceLoader.swf", "EnhanceLoader",
>> "2880", "2880", "7", "#FFFFFF", true);
>>
>> Auto install doesn't work.
>>
>> TIA,
>>
>> Steve
>>
>>
>>
>>
>> ------------------------------
>>
>> Message: 2
>> Date: Tue, 2 May 2006 15:23:25 -0400
>> From: Geoff Stearns <geoff at deconcept.com>
>> Subject: Re: [SWFObject] express install not working
>> To: swfobject at lists.deconcept.com
>> Message-ID:
>> <62882433-3F38-4377-AFD0-B09F79B4AFD6 at deconcept.com>
>> Content-Type: text/plain; charset=US-ASCII; delsp=yes;
>> format=flowed
>>
>> can you be more specific when you say 'it doesn't work'?
>>
>> which part doesn't work, and how are you testing it?
>>
>>
>> On May 2, 2006, at 3:15 PM, Steve Norris wrote:
>>
>>> Hi Geoff,
>>>
>>> I combined your FlashObject code with an existing .js
>>> file
>>> of mine as follows and it works beautifully:
>>>
>>> HTML code:
>>>
>>> <div id="NorrisoftEnhanceLoader"
>>> name="NorrisoftEnhanceLoader" style="position:absolute;
>>> width:2880px;height:2880px; z-index:99; left: 0px; top:
>>> 0px; visibility: visible;">
>>> <script type="text/javascript"
>>> src="EnhanceFolder/enhanceJS.js"></script>
>>> <script
>>> type="text/javascript">if(document.browserOK){try
>>> {EnhanceLoaderObject.addVariable("projectXMLFile",
>>> "EnhanceFolder/i7_Applying_ForEnhanceInventory/inventory.xml")}catch
>>> (e) {};
>>> try{EnhanceLoaderObject.write("NorrisoftEnhanceLoader")}catch
>>> (e)
>>> {}}else{NorrisoftEnhanceLoader.style.visibility="hidden"};</
>>> script></body>
>>>
>>> JS file:
>>>
>>> var EnhanceLoaderObject = new
>>> FlashObject("EnhanceFolder/EnhanceLoader.swf",
>>> "EnhanceLoader", "2880", "2880", "7", "#FFFFFF");
>>> EnhanceLoaderObject.addParam("wmode", "transparent");
>>>
>>> Like I said, everything works beautifully - my .swf
>>> displays nicely. However, when I try to use autoinstall
>>> by
>>> inserting a blank keyframe before my first frame of my
>>> .swf and adding the following:
>>>
>>> #include "expressinstall.as"
>>>
>>> // initialize the ExpressInstall object
>>> var ExpressInstall = new ExpressInstall();
>>>
>>> // if the user needs to upgrade, show the 'start
>>> upgrade'
>>> button
>>> if (ExpressInstall.needsUpdate) {
>>> 	ExpressInstall.init();
>>> 	stop();
>>> }
>>>
>>> and changing the Flash Object instantiation to:
>>>
>>> ("EnhanceFolder/EnhanceLoader.swf", "EnhanceLoader",
>>> "2880", "2880", "7", "#FFFFFF", true);
>>>
>>> Auto install doesn't work.
>>>
>>> TIA,
>>>
>>> Steve
>>>
>>>
>>> _______________________________________________
>>> SWFObject mailing list
>>> SWFObject at lists.deconcept.com
>>> http://lists.deconcept.com/listinfo.cgi/swfobject-deconcept.com
>>
>>
>>
>> ------------------------------
>>
>> _______________________________________________
>> SWFObject mailing list
>> SWFObject at lists.deconcept.com
>> http://lists.deconcept.com/listinfo.cgi/swfobject-deconcept.com
>>
>>
>> End of SWFObject Digest, Vol 2, Issue 10
>> ****************************************
>
> _______________________________________________
> SWFObject mailing list
> SWFObject at lists.deconcept.com
> http://lists.deconcept.com/listinfo.cgi/swfobject-deconcept.com




More information about the Swfobject mailing list