У меня есть следующий код тега Application
в моем виджете:
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:local="*"
width="100%" height="100%" minWidth="200" minHeight="200" layout="absolute"
creationComplete="init()"
defaultButton="{Send_btn}">
Поле ввода определяется как
<mx:TextInput id="Input_txi" left="10" right="90" bottom="10"/>
Далее у меня есть следующее в конце init()
method:
Input_txi.setFocus();
Input_txi.selectRange(0,0);
Тем не менее, я не могу ввести текст сразу после загрузки страницы.Я вижу визуально, что у Input_txi
есть фокус, но отпечатки клавиш ничего не делают.Мне нужно нажать Input_txi
, прежде чем я смогу ввести в него любой текст.
Как сделать так, чтобы я мог начать с самого начала?
РЕДАКТИРОВАТЬ 1
Не работает, ни как в примере, ни с jQuery:
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript" src="jquery-1.7.1.js"></script>
<script type="text/javascript">
// For version detection, set to min. required Flash Player version, or 0 (or 0.0.0), for no version detection.
var swfVersionStr = "${version_major}.${version_minor}.${version_revision}";
// To use express install, set to playerProductInstall.swf, otherwise the empty string.
var xiSwfUrlStr = "${expressInstallSwf}";
var flashvars = {};
var params = {};
params.quality = "high";
params.bgcolor = "${bgcolor}";
params.allowscriptaccess = "sameDomain";
params.allowfullscreen = "true";
var attributes = {};
attributes.id = "${application}";
attributes.name = "${application}";
attributes.align = "middle";
swfobject.embedSWF(
"${swf}.swf", "flashContent",
"${width}", "${height}",
swfVersionStr, xiSwfUrlStr,
flashvars, params, attributes, function(){
/*
var swf = $("#" + attributes.id);
swf.attr("tabindex", 0);
swf.focus();
*/
var f = swfobject.getObjectById(attributes.id);
f.tabIndex = 0;
f.focus();
});
// JavaScript enabled so display the flashContent div in case it is not replaced with a swf object.
swfobject.createCSS("#flashContent", "display:block;text-align:left;");
</script>