My favorites | Sign in
Project Logo
             
Details: Show all Hide all

Last 30 days

  • Nov 29, 2009
    Todo (Todo list.) Wiki page edited by millermedeiros   -   Revision r10 Edited wiki page through web user interface.
    Revision r10 Edited wiki page through web user interface.
  • Nov 23, 2009
    issue 4 (Right-clicking on the stage creates scrollbars on Firefox 3....) commented on by millermedeiros   -   problem seems to be fixed adding: #my_flash{ outline:none } it's really strange since outlines shouldn't take space. (it seems a bug on FF3.6 beta)
    problem seems to be fixed adding: #my_flash{ outline:none } it's really strange since outlines shouldn't take space. (it seems a bug on FF3.6 beta)
  • Nov 23, 2009
    issue 4 (Right-clicking on the stage creates scrollbars on Firefox 3....) reported by millermedeiros   -   What steps will reproduce the problem? 1. right-click the flash movie for some reason the scrollbars appears.
    What steps will reproduce the problem? 1. right-click the flash movie for some reason the scrollbars appears.
  • Nov 18, 2009
    Todo (Todo list.) Wiki page edited by millermedeiros   -   Revision r9 Edited wiki page through web user interface.
    Revision r9 Edited wiki page through web user interface.

Earlier this year

  • Nov 10, 2009
    Todo (Todo list.) Wiki page edited by millermedeiros   -   Revision r8 Edited wiki page through web user interface.
    Revision r8 Edited wiki page through web user interface.
  • Nov 10, 2009
    Todo (Todo list.) Wiki page added by millermedeiros   -   Revision r7 Created wiki page through web user interface.
    Revision r7 Created wiki page through web user interface.
  • Nov 09, 2009
    issue 3 (Not working on Vista with IE6 & IE7) commented on by millermedeiros   -   change the order that you add the javascript files and see if it works.. the order should be: 1- swfobject.js 2- swfaddress.js 3- swffit.js if it still doesn't work try editing the example files. good luck!
    change the order that you add the javascript files and see if it works.. the order should be: 1- swfobject.js 2- swfaddress.js 3- swffit.js if it still doesn't work try editing the example files. good luck!
  • Nov 09, 2009
    issue 3 (Not working on Vista with IE6 & IE7) commented on by hoveydavid   -   hi thanks again the only swffit code i have inside my flash is: SWFFit.fit('content', stage.stageWidth, __minHeight ); where __minHeight is a variable for each separate section/page in the Flash, as they are different heights. my html page is: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>My Swf</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <script type="text/javascript" src="js/swfobject/swfobject.js"></script> <script type="text/javascript" src="js/swffit/swffit.js"></script> <script type="text/javascript" src="js/swfaddress/swfaddress.js?strict=false"></script> <script type="text/javascript"> swfobject.embedSWF("myflash.swf", "content", "540", "400", "9.0.0", "expressInstall.swf"); swffit.fit("content"); </script> <style type="text/css"> /* hide from ie on mac \*/ html { height: 100%; overflow:hidden; } #content { height: 100%; padding:10px; z-index: 2; color: #333; font-family: Helvetica, Arial, sans-serif; } /* end hide */ body { height: 100%; margin: 0; padding: 0; background-color: #FFF; } </style> </head> <body> <div id="content"> <h1>My Flash</h1> <p>Alternative Text </p> <p>You will need to download the <a href="http://www.adobe.com/go/getflashplayer">latest version of Flash Player</a> to view the site properly. Visit the <a href="http://www.adobe.com/go/getflashplayer">Adode site</a> to download the plugin.</p> </div> </body> </html>
    hi thanks again the only swffit code i have inside my flash is: SWFFit.fit('content', stage.stageWidth, __minHeight ); where __minHeight is a variable for each separate section/page in the Flash, as they are different heights. my html page is: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>My Swf</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <script type="text/javascript" src="js/swfobject/swfobject.js"></script> <script type="text/javascript" src="js/swffit/swffit.js"></script> <script type="text/javascript" src="js/swfaddress/swfaddress.js?strict=false"></script> <script type="text/javascript"> swfobject.embedSWF("myflash.swf", "content", "540", "400", "9.0.0", "expressInstall.swf"); swffit.fit("content"); </script> <style type="text/css"> /* hide from ie on mac \*/ html { height: 100%; overflow:hidden; } #content { height: 100%; padding:10px; z-index: 2; color: #333; font-family: Helvetica, Arial, sans-serif; } /* end hide */ body { height: 100%; margin: 0; padding: 0; background-color: #FFF; } </style> </head> <body> <div id="content"> <h1>My Flash</h1> <p>Alternative Text </p> <p>You will need to download the <a href="http://www.adobe.com/go/getflashplayer">latest version of Flash Player</a> to view the site properly. Visit the <a href="http://www.adobe.com/go/getflashplayer">Adode site</a> to download the plugin.</p> </div> </body> </html>
  • Nov 09, 2009
    issue 3 (Not working on Vista with IE6 & IE7) Status changed by millermedeiros   -   if the example files work the problem should be inside your code.. are you sure that you're not calling startFit() or fit() after calling stopFit() ?? are you sure that you need swffit for your project?? are you sure that you need to call stopFit ?? good luck.
    Status: Invalid
    if the example files work the problem should be inside your code.. are you sure that you're not calling startFit() or fit() after calling stopFit() ?? are you sure that you need swffit for your project?? are you sure that you need to call stopFit ?? good luck.
    Status: Invalid
  • Nov 09, 2009
    issue 3 (Not working on Vista with IE6 & IE7) commented on by hoveydavid   -   thanks for the reply the example does work on IE6 and IE7. The difference between the htmls is that my swfobject is set to 100% width and height. which it needs to be...could this be the problem? strangely it works on IE5 :S
    thanks for the reply the example does work on IE6 and IE7. The difference between the htmls is that my swfobject is set to 100% width and height. which it needs to be...could this be the problem? strangely it works on IE5 :S
  • Nov 09, 2009
    issue 3 (Not working on Vista with IE6 & IE7) commented on by millermedeiros   -   does the example files work? ( http://swffit.millermedeiros.com/example.html ) swffit should work on IE6/IE7.. the problem should be on your HTML page.. the code that you've sent shouldn't change anything.. I don't know why they changed the minimum size if the browser is IE6.. I'm sure that swffit works on IE6...
    does the example files work? ( http://swffit.millermedeiros.com/example.html ) swffit should work on IE6/IE7.. the problem should be on your HTML page.. the code that you've sent shouldn't change anything.. I don't know why they changed the minimum size if the browser is IE6.. I'm sure that swffit works on IE6...
  • Nov 09, 2009
    issue 3 (Not working on Vista with IE6 & IE7) reported by hoveydavid   -   Scrolling works on all browsers except on Vista (although not tested on other version of Windows) with IE6 & IE7. Is there a workaround? Ive seen this: if (!ie6) { swfobject.embedSWF(“http://media1.clubpenguin.com/play/v2/load5.swf”, “my_flash”, “760″, “480″, “9.0.0″, ”, ”, {allowScriptAccess:”always”}); swffit(“my_flash”,760,480); } if (ie6) { // IE6, older browsers swfobject.embedSWF(“http://media1.clubpenguin.com/play/v2/load5.swf”, “my_flash”, “760″, “480″, “9.0.0″, ”, ”, {allowScriptAccess:”always”}); swffit(“my_flash”,1,1); } (from http://powerflarecp.com/2009/01/21/fiesta-party-sneak-peek/) but my site uses the internal actionscript configure() method, rather than setting it in the html: swfobject.embedSWF("myswf.swf", "content", "100%", "100%", "9.0.0", "expressInstall.swf"); swffit.fit("content"); Thanks
    Scrolling works on all browsers except on Vista (although not tested on other version of Windows) with IE6 & IE7. Is there a workaround? Ive seen this: if (!ie6) { swfobject.embedSWF(“http://media1.clubpenguin.com/play/v2/load5.swf”, “my_flash”, “760″, “480″, “9.0.0″, ”, ”, {allowScriptAccess:”always”}); swffit(“my_flash”,760,480); } if (ie6) { // IE6, older browsers swfobject.embedSWF(“http://media1.clubpenguin.com/play/v2/load5.swf”, “my_flash”, “760″, “480″, “9.0.0″, ”, ”, {allowScriptAccess:”always”}); swffit(“my_flash”,1,1); } (from http://powerflarecp.com/2009/01/21/fiesta-party-sneak-peek/) but my site uses the internal actionscript configure() method, rather than setting it in the html: swfobject.embedSWF("myswf.swf", "content", "100%", "100%", "9.0.0", "expressInstall.swf"); swffit.fit("content"); Thanks
  • Nov 04, 2009
    change_log (swffit release notes) Wiki page edited by millermedeiros   -   Revision r6 Edited wiki page through web user interface.
    Revision r6 Edited wiki page through web user interface.
  • Nov 04, 2009
    change_log (swffit release notes) Wiki page edited by millermedeiros   -   Revision r5 Edited wiki page through web user interface.
    Revision r5 Edited wiki page through web user interface.
  • Nov 04, 2009
    swffit_2_3_2.zip (swffit 2.3.2 + swffit AS class 1.2 + example files + source ...) file uploaded by millermedeiros   -  
    Labels: Featured
    Labels: Featured
  • Nov 04, 2009
    swffit_2_3_2.zip (swffit 2.3.2 + swffit AS class 1.2 + example files + source ...) file uploaded by millermedeiros   -  
    Labels: Featured
    Labels: Featured
  • Nov 04, 2009
    swffit_2_3_2.zip (swffit 2.3.2 + swffit AS class 1.2) file uploaded by millermedeiros   -  
    Labels: Featured
    Labels: Featured
  • Oct 22, 2009
    issue 2 (swfaddress 2.4 + swffit) Status changed by millermedeiros   -  
    Status: Invalid
    Status: Invalid
  • Oct 22, 2009
    issue 2 (swfaddress 2.4 + swffit) commented on by paravara1   -   I'm very sorry, I found the problem just right now... I used the "swfobject.js" from the SWFAddress 2.4 example, but it was an old one (1.5.1) It's working after replaced with the newer 2.2 version. Sorry for the fake alert, again! And thanks for this great stuff again! :)
    I'm very sorry, I found the problem just right now... I used the "swfobject.js" from the SWFAddress 2.4 example, but it was an old one (1.5.1) It's working after replaced with the newer 2.2 version. Sorry for the fake alert, again! And thanks for this great stuff again! :)
  • Oct 21, 2009
    issue 2 (swfaddress 2.4 + swffit) commented on by millermedeiros   -   I've tested on a PC on FF3.53, Opera 10, Google Chrome 3, Safari 4, IE8 (IE8 and IE7 modes) and IE6 and it worked as expected on all browsers.. Which browser / OS are you using? can you provide a link to a file where it happens? does it happens with the swfaddress example file? removing swffit make it work? you didn't provided enough information to identify the problem..
    I've tested on a PC on FF3.53, Opera 10, Google Chrome 3, Safari 4, IE8 (IE8 and IE7 modes) and IE6 and it worked as expected on all browsers.. Which browser / OS are you using? can you provide a link to a file where it happens? does it happens with the swfaddress example file? removing swffit make it work? you didn't provided enough information to identify the problem..
  • Oct 17, 2009
    issue 2 (swfaddress 2.4 + swffit) commented on by paravara1   -   thank you very much :) also thanks for your great script!
    thank you very much :) also thanks for your great script!
  • Oct 16, 2009
    issue 2 (swfaddress 2.4 + swffit) Owner changed by millermedeiros   -   gonna test it and if there's a problem I'll fix it as soon as possible. (I've never tested with SWFAddress 2.4)
    Owner: millermedeiros
    gonna test it and if there's a problem I'll fix it as soon as possible. (I've never tested with SWFAddress 2.4)
    Owner: millermedeiros
  • Oct 16, 2009
    issue 2 (swfaddress 2.4 + swffit) reported by paravara1   -   It's not working together with SWFAddress 2.4.
    It's not working together with SWFAddress 2.4.
  • Aug 05, 2009
    issue 1 (conflict swfaddress + FF3.5) changed by millermedeiros   -  
    Status: Done
    Labels: Milestone-Release1.0
    Status: Done
    Labels: Milestone-Release1.0
  • Aug 05, 2009
    issue 1 (conflict swfaddress + FF3.5) Labels changed by millermedeiros   -   Fixed on version 2.3.1
    Labels: Milestone-Release1.0
    Fixed on version 2.3.1
    Labels: Milestone-Release1.0
  • Aug 05, 2009
    change_log (swffit release notes) Wiki page edited by millermedeiros   -   Revision r4 Edited wiki page through web user interface.
    Revision r4 Edited wiki page through web user interface.
  • Aug 05, 2009
    swffit_2_3_1.zip (swffit 2.3.1 + swffit AS class 1.2) file uploaded by millermedeiros   -  
    Labels: Featured
    Labels: Featured
  • Aug 01, 2009
    issue 1 (conflict swfaddress + FF3.5) Summary changed by millermedeiros   -   It's also not working on FF3.5.1 on pc if used together with swfaddress
    Summary: conflict swfaddress + FF3.5
    It's also not working on FF3.5.1 on pc if used together with swfaddress
    Summary: conflict swfaddress + FF3.5
  • Jul 17, 2009
    issue 1 (conflict swfaddress + FF3.5 on mac) reported by millermedeiros   -   It's not working together with swfaddress on FF3.5 on mac
    It's not working together with swfaddress on FF3.5 on mac
  • Jul 04, 2009
    change_log (swffit release notes) Wiki page edited by millermedeiros
  • Jul 04, 2009
    change_log (swffit release notes) Wiki page added by millermedeiros
  • Jun 15, 2009
    swffit_2_3.zip (swffit 2.3 + swffit AS class 1.2) file uploaded by millermedeiros   -  
    Labels: Featured
    Labels: Featured
  • Jun 15, 2009
    swffit_2_3.zip (swffit 2.3 + swffit AS class 1.2) file uploaded by millermedeiros   -  
    Labels: Featured
    Labels: Featured
  • May 12, 2009
    swffit_2_2.zip (swffit 2.2 + swffit AS class 1.1) file uploaded by millermedeiros   -  
    Labels: Featured
    Labels: Featured
  • Jan 19, 2009
    swffit_2_1.zip (swffit 2.1 + swffit AS class 1.1) file uploaded by millermedeiros   -  
    Labels: Featured
    Labels: Featured
  • Jan 19, 2009
    swffit_2_1.zip (swffit 2.1 + swffit AS class 1.1) file uploaded by millermedeiros   -  
    Labels: Featured
    Labels: Featured
  • Jan 19, 2009
    fitflash_2_5.zip (FitFlash 2.5 (swfobject 1.5)) file uploaded by millermedeiros   -  
    Labels: Deprecated
    Labels: Deprecated
  • Jan 17, 2009
    swffit_2_0.zip (swffit 2.0) file uploaded by millermedeiros   -  
    Labels: Featured
    Labels: Featured
  • Jan 17, 2009
    Project swffit created by millermedeiros   -   Smart flash resize script for 100% width and 100% height websites (full bleed)
    Smart flash resize script for 100% width and 100% height websites (full bleed)
 
Hosted by Google Code