默认情况下,Internet Explorer 4.0 和更高版本?Windows\Downloaded Program Files ?Winnt\Downloaded Program Files 文g夏V如果是?Internet Explorer 3.x 升的,?Occache ?Downloaded Program Files 文g夹可能都存在。在此情况下Q所有新?ActiveX 控g都安装在 Downloaded Program Files 文g夹中Q但以前安装?ActiveX 控g仍在 Occache 文g夹中工作。当您在 Windows 资源理器、Windows NT 资源理器或“我的电脑”中打开 Occache ?Downloaded Program Files 文gҎQ将昄所?ActiveX 控gQ而与?ActiveX 控g的文件所在的文gҎ兟뀂在此情况下Q注册表中出C下字W串|
"0"="C:\\WINDOWS\\OCCACHE"
"1"="C:\\WINDOWS\\Downloaded Program Files"
]]>A very cool PDF to Word converter.http://www.aygfsteel.com/lqxue/archive/2010/03/31/317073.htmllqxlqxWed, 31 Mar 2010 08:29:00 GMThttp://www.aygfsteel.com/lqxue/archive/2010/03/31/317073.htmlhttp://www.aygfsteel.com/lqxue/comments/317073.htmlhttp://www.aygfsteel.com/lqxue/archive/2010/03/31/317073.html#Feedback0http://www.aygfsteel.com/lqxue/comments/commentRss/317073.htmlhttp://www.aygfsteel.com/lqxue/services/trackbacks/317073.html
]]>IE foolscreen/全屏 览面http://www.aygfsteel.com/lqxue/archive/2010/03/15/315481.htmllqxlqxMon, 15 Mar 2010 06:22:00 GMThttp://www.aygfsteel.com/lqxue/archive/2010/03/15/315481.htmlhttp://www.aygfsteel.com/lqxue/comments/315481.htmlhttp://www.aygfsteel.com/lqxue/archive/2010/03/15/315481.html#Feedback0http://www.aygfsteel.com/lqxue/comments/commentRss/315481.htmlhttp://www.aygfsteel.com/lqxue/services/trackbacks/315481.html
1. window.open('http://www.sina.com.cn','','fullscreen')
Note: If view the page remotely, this way will ineffective, and you can use the second one instead.
2. var wsh=new ActiveXObject("wscript.shell");
wsh.run("iexplore -k http://www.google.com");
]]>IE7: Automation server can't create object javascripthttp://www.aygfsteel.com/lqxue/archive/2010/03/15/315480.htmllqxlqxMon, 15 Mar 2010 06:14:00 GMThttp://www.aygfsteel.com/lqxue/archive/2010/03/15/315480.htmlhttp://www.aygfsteel.com/lqxue/comments/315480.htmlhttp://www.aygfsteel.com/lqxue/archive/2010/03/15/315480.html#Feedback0http://www.aygfsteel.com/lqxue/comments/commentRss/315480.htmlhttp://www.aygfsteel.com/lqxue/services/trackbacks/315480.html
1. In Internet Explorer > Tools > Internet Options > Security > Custom Level
2. Enabling or prompting "Initializing and Script Activex controls not marked as safe"
]]>Accecing a field on a tab navigatorhttp://www.aygfsteel.com/lqxue/archive/2010/03/14/315370.htmllqxlqxSun, 14 Mar 2010 03:34:00 GMThttp://www.aygfsteel.com/lqxue/archive/2010/03/14/315370.htmlhttp://www.aygfsteel.com/lqxue/comments/315370.htmlhttp://www.aygfsteel.com/lqxue/archive/2010/03/14/315370.html#Feedback0http://www.aygfsteel.com/lqxue/comments/commentRss/315370.htmlhttp://www.aygfsteel.com/lqxue/services/trackbacks/315370.html
Accecing a field on a tab navigator
hi,
i have a tab navigator. in one of my functions i'm trying to reference a
field which is located on the second tab.
If i click "ok" from the first tab, which calls the function, which
references the field on a second tab, it gives me a runtime error. But
if i click on the second tab, and go back to the first, and then click
on "OK" it works.
What is going on? am i supposed to somehow declare taht field before
referencing it? to make it active..?
any help greatly appreciated.
Thanks!
this is the error i'm getting:
TypeError: Error #1009: Cannot access a property or method of a null
object reference.
The children of a TabNavigator aren't
created until they're needed. In your case, only the contents of the
first tab are actually created, because they're part of what's needed
when the TabNavigator is first displayed. The contents of the second tab
won't be instantiated until they need to be displayed, which is when
the second tab is clicked on. That's why that error is being thrown
until you click on the second tab. This process of only instantiating
components as they are needed is called deferred instantiation.
To force the contents of the other tabs to be instantiated, try changing
the creationPolicy property of the TabNavigator to be "all". This will
cause all of the different tabs to be instantiated, regardless of having
been clicked on.
In the Flex docs, check out Container.creationPolicy for more details.