Skip to content

Commit

Permalink
Modificação no tamanho e retirada da função uninit() do javascript.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrefornari committed Mar 22, 2012
1 parent 863d23f commit fa166a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
Binary file modified deployment/AI-0085_SCO.zip
Binary file not shown.
5 changes: 0 additions & 5 deletions deployment/index.html
Expand Up @@ -16,11 +16,6 @@
// Define a versão SCORM (2004). Também pode ser feito via ActionScript, através da classe ExternalInterface.
scorm.version = "2004";

// Caso ainda esteja conectado ao LMS, desconecta.
$(window).unload(function(){
if (scorm.connection.isActive) scorm.quit();
});

$(document).ready(function(){
swfobject.embedSWF("swf/AI_Loader.swf", "ai-container", flashvars.width, flashvars.height, "10.0.0", "expressInstall.swf", flashvars, params, attributes);
});
Expand Down
8 changes: 4 additions & 4 deletions deployment/js/ai-config.js
@@ -1,15 +1,15 @@
// Variáveis do AI_Loader
var flashvars = {};
flashvars.ai = "swf/AI-0085.swf";
flashvars.width = "700";
flashvars.height = "400";
flashvars.width = "600";
flashvars.height = "343";

// Parâmetros do player (Flash)
var params = {};
params.menu = "false";
params.scale = "noscale";
params.scale = "showall";

// Atributos da tag HTML que contém o SWF
var attributes = {};
attributes.id = "ai";
attributes.align = "middle";
attributes.align = "left";

0 comments on commit fa166a1

Please sign in to comment.