- 浏览: 436413 次
- 性别:
- 来自: 北京
最新评论
-
fred7510:
死的啊。。不过还是谢了
flex 截图 -
hechuanshan:
flex状态及动画 -
Da嗒_Sunny:
求使用说明
flex图片裁剪 -
wapj23:
...
flex中定制右键菜单 -
lion_leon:
谢谢!帮了我的大忙了!
利用flashvars给flash传值
文章列表
http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html
- 2008-06-24 13:48
- 浏览 1223
- 评论(0)
网址: http://www.nshen.net/blog/article.asp?id=467
*找到常见<mx: ...>前缀标签对应的类
安装目录\Adobe\Flex Builder 2\Flex SDK 2\frameworks\mxml-manifest.xml.
*代码ctrl+s以后,想返回以前保存的版本
在你代码上点右键--->Replace with ---> LocalHistory
会显示该文件最近50个保存版本
*清楚显示组件是不是放在正确的container里
在设计模式点这个刷新右边的按钮,图:
*显示图片
loading ...
- 2008-06-24 13:46
- 浏览 1237
- 评论(0)
*---------------------------
功能:停止事件冒泡
---------------------------*/
function stopBubble(e) {
//如果提供了事件对象,则这是一个非IE浏览器
if ( e && e.stopPropagation )
//因此它支持W3C的stopPropagation()方法
e.stopPropagation();
else
//否则,我们需要使用IE的方式来取消事件冒泡
window.event.cancelBubble = true;
}
//阻止浏览器的默认行为
function stopDe ...
- 2008-06-24 13:41
- 浏览 4750
- 评论(0)
有的说解决方法就是下最新的hibernate-annotations.jar的包~,这确实能够解决问题,但却不是最根本的解决方法,这个问题其实很奇怪,关键就在于Junit中测试没问题,就是发布到项目中的时候,会出现这样的问题~也就是MyEclipse在发 ...
Select * From rm_article As A Where
(Select Count(0) From rm_article Where cid=A.cid And aid >= A.aid group by cid) <11
Order By A.cid,A.aid desc
- 2008-06-22 13:04
- 浏览 1335
- 评论(0)
1、给工程加Spring capability;
a、选择Add checked Libraries to …… ,下一步
b、如果已有applicationContext.xml,选择Existing,否则选择New,下一步
c、在folder中选择bean包
2、给工程加Hibernate capability;
a、选择Add checked Libraries,下一步
b、选择Spring configuration file,下一步
c、选择Existing Spring configuration file,在SessionFactory ...
- 2008-06-21 12:17
- 浏览 2691
- 评论(0)
function setPos(pos){
document.location.hash=pos
}
如:
<a onclick="setPos(1);" style="cursor:hand">page1</a><br>
<a onclick="setPos(2);" style="cursor:hand">page2</a><br>
<a onclick="setPos(3);" style="curso ...
- 2008-06-20 17:08
- 浏览 834
- 评论(0)
String.prototype.ltrim = function()
{
return this.replace(/(^\s*)/g, "");
}
String.prototype.rtrim = function()
{
return this.replace(/(\s*$)/g, "");
}
使用方法:
var str = " abc ";
alert(str);
alert(str.LTrim().Rtrim());
- 2008-06-20 14:22
- 浏览 1193
- 评论(0)
1、tree节点open时获取itemIndex
tree.getItemIndex(event.item)
- 2008-06-19 18:03
- 浏览 1299
- 评论(0)
var datapc:DefaultDataDescriptor=new DefaultDataDescriptor();
//移除一个指定的item Xml 结点
datapc.removeChildAt(Item.parent(),Item,this.Item.childIndex());
//在指定的位置插入结点
datapc.addChildAt(Item,new XML(""),Item.children().length()-1);
//不用DefaultDataDescriptor插入节点
//要指定到要插入的XML的节点名
Item.appe ...
- 2008-06-19 16:59
- 浏览 1431
- 评论(0)
装apache
解压php
拷贝 php5ts.dll php.ini 到 C:\windows\ 目录
拷贝 libeay32.dll libmcrypt.dll libmhash.dll libmysql.dll libswish-e.dll ssleay32.dll yaz.dll 到 C:\windows\system\
修改 D:\php\php.ini
查找 extension_dir
修改 extension_dir = "D:\php\ext"
查找 extension=php_mysql.dll
把前面的 ; 去掉
修改 apache
添加
L ...
- 2008-06-13 17:59
- 浏览 1228
- 评论(0)
<mx:HTTPService id="myData" resultFormat="xml" url="http://localhost:8888/ownerarea/buildingList"/>
<mx:Tree width="174" height="100%" id="tree" labelFunction="treeLabel" dataProvider="{myData.lastResult}" creati ...
- 2008-06-13 14:21
- 浏览 1394
- 评论(0)
将所有的文件加上
document.domain = "kingapex.com";
可跨子域访问
如: www.kingapex.com upload.kingapex.com 下的JS可互相访问
- 2008-06-11 14:50
- 浏览 1184
- 评论(0)
//servlet中
NexusForServ nexus = new NexusForServ();
response.setHeader("Pragma", "No-cache");
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 0);
response.setContentType("text/xml");
ServletOutpu ...
- 2008-06-11 14:44
- 浏览 1102
- 评论(0)
//applicationContext_dao.xml中配置
<bean id="jdbcTemplate"
class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource"/>
</bean>
//要用到的类依赖jdbcTemplate
<bean id="NexusDao" class="com.w ...
- 2008-06-11 14:40
- 浏览 1983
- 评论(0)