tavria2 Цитата: Проверил, передается.
Я как бэ знаю, что передается, но результат не виден..
Вот код, попробуй:
OnContCreate:
Код: local sHTML = [[<html>
<head>
<script>
function setCaretPosition(ctrl)
{
if(ctrl.setSelectionRange)
{
ctrl.focus();
ctrl.setSelectionRange(pos,pos);
}
else if (ctrl.createTextRange) {
var range = ctrl.createTextRange();
range.collapse(true);
range.moveEnd('character', ctrl.value.length);
range.moveStart('character', 0);
range.select();
}
}
function process()
{
setCaretPosition(document.getElementById('get'));
}
</script>
<style type="text/css">
body {border-width: 0px}
#get {border: 0px; background: #EEEEFB}
</style>
</head>
<body bottommargin="0" topmargin = "0" bgcolor="#EEEEFB" scroll="no" onload="process()">
<textarea id='get' rows='25' cols='50' wrap="soft">Paste the autoplay code here</textarea>
</body>
</html>]]
local bCreated = ActiveX.CreateControl("Plugin6", "Shell.Explorer.2");
if (bCreated) then
IEObject = ActiveX.QueryInterface("Plugin6");
if ( IEObject ) then
ActiveX.JoinEvents("Plugin6", IEObject, ExplorerEvents);
IEObject:Navigate("about:blank",0,0,0,0);
IEObject.document:Write(sHTML)
IEObject.document:close()
end
end