- 浏览: 436421 次
- 性别:
- 来自: 北京
最新评论
-
fred7510:
死的啊。。不过还是谢了
flex 截图 -
hechuanshan:
flex状态及动画 -
Da嗒_Sunny:
求使用说明
flex图片裁剪 -
wapj23:
...
flex中定制右键菜单 -
lion_leon:
谢谢!帮了我的大忙了!
利用flashvars给flash传值
文章列表
注册apahce为服务,如果服务中已有,省略1、2步
1、修改ServerRoot路径(ServerRoot "D:/Apache Group/Apache2")
2、CMD 执行 Apache.exe -k install
3、修改httpd.conf文件
a、查找PHP,修改相应项(LoadModule php5_module "D:/php/php5apache2.dll")
b、增加 PHPIniDir "D:/php"(修改php.ini时,修改此目录下的)
c、LoadModule rewrite_module modu ...
- 2008-07-09 10:20
- 浏览 1100
- 评论(0)
<mx:cavas xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" creationComplete="init();">
private var newBuildMenuItem: ContextMenuItem;
internal function init(): void{
treeMenu();
}
private function treeMenu(): void{
...
- 2008-07-07 16:28
- 浏览 4374
- 评论(0)
一、将flex的所有右键屏蔽,并响应右键
第一步:
在swf 所在html页加如下内容:
<script>
function onNsRightClick(e){
if(e.which == 3){
ownerarea.openRightClick();
e.stopPropagation();
}
return false;
}
function onIeRightClick(e){
if(event.button > 1){
ownerarea.openRightClick();
parent.frames.location.replace('j ...
- 2008-07-07 16:20
- 浏览 5493
- 评论(4)
//取消编辑事件
tree.addEventListener(ListEvent.ITEM_EDIT_BEGINNING, itemEditBeginHandler);
private function itemEditBeginHandler(event: ListEvent): void{
var targetTree: Tree = Tree(event.target);
var item:XML = new XML(targetTree.selectedItem);
if(item.@editabled == "false"){
/ ...
<mx:Tree folderOpenIcon="@Embed(source='open.jpg')"
folderClosedIcon="@Embed(source='closed.jpg')"
defaultLeafIcon="@Embed(source='def.jpg')">
- 2008-07-04 14:49
- 浏览 1169
- 评论(0)
现状:一个tree,两组,由于tree的节点从数据的两个表取出,id有可能会重复,但ext的tree同样是通过ID区分,导至焦点不能正确定位。
解决办法 :
第一步:重写treeloader类的createNode方法
createNode : function(attr){
if(this.baseAttrs){
Ext.applyIf(attr, this.baseAttrs);
}
if(this.applyLoader !== false){
attr.loader = thi ...
JkWorkersFile E:/Apache2/conf/workers.properties
JkLogFile E:/Apache2/logs/mod_jk.log
JkLogLevel info
<VirtualHost apexking.cn:81>
ServerAdmin yourmail@domain.com
DocumentRoot E:/Tomcat5.5/webapps/ROOT
DirectoryIndex index.html index.htm index.jsp
ServerName all-sites
JkMount /*.jsp ajp13 ...
- 2008-06-29 13:20
- 浏览 1565
- 评论(0)
新建用于绑定的数据ArrayCollection
- 博客分类:
- Flex
var items: ArrayCollection = new ArrayCollection([
{Label:"item1", data:1},
{Label:"item2", data:2}
]);
comboBox.labelField="Label"
- 2008-06-27 19:44
- 浏览 1257
- 评论(0)
ActionContext ctx = ActionContext.getContext();
HttpServletRequest request = (HttpServletRequest)ctx.get(ServletActionContext.HTTP_REQUEST);
HttpServletResponse response = (HttpServletResponse)ctx.get(ServletActionContext.HTTP_RESPONSE);
- 2008-06-27 17:51
- 浏览 1548
- 评论(0)
tree自动展开节点
- 博客分类:
- Flex
//拖拽时展开节点==========================
private function dragOverHandler(event:DragEvent):void
{
var currNodeOver : TreeItemRenderer= TreeItemRenderer(event.currentTarget.indexToItemRenderer(event.currentTarget.calculateDropIndex(event)));
if (currNodeOver !=null)
{
if(Tree(event.currentTarget).dataDesc ...
- 2008-06-27 14:44
- 浏览 2235
- 评论(0)
String sql = "select * from room where room.build_id=?";
List roomList = this.jdbcTemplate.query(sql, new Object[]{buildid}, new RoomMapper());
//定义RoomMapper类继承 RowMapper
public class RoomMapper implements RowMapper {
public Object mapRow(ResultSet rs, int index) throws SQLException { ...
- 2008-06-27 13:50
- 浏览 2980
- 评论(0)
update tb set updateTime=to_date('2008-09-10 12:11:11','yyyy-MM-dd HH24:mi:ss')
- 2008-06-27 11:01
- 浏览 4515
- 评论(0)
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy
SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*" />
</cross-domain-policy>
1.regsvr32 msxml3.dll
2.启用activeX支持;
3、如果ie有禁用的选项,在ie状态栏中将禁止的选项打开。
- 2008-06-25 19:04
- 浏览 990
- 评论(0)
xTypes是Ext 2.0中新的概念,被认为是Ext特定组件类型。可用的xtype摘要可在 Component class API开头的地方找到。与一般JavaScript对象用法相似,XTypes可用于查找或比较组件对象,如isXType和getXType的方法。 你亦可以列出任意组件的xtpye层次表,用方法getXTypes。
然而,如何把Xtypes用于优化组件的创建和渲染过程才是XTypes发挥威力的地方。 通过指定一个xtype的配置对象的写法,可隐式声明的方式创建组件,使得如果没有渲染的需要就只是一个对象而免去实例化的步骤,这时不仅渲染的动作是延时的,而且创建实际对象的这一步也 ...
- 2008-06-24 13:50
- 浏览 1323
- 评论(0)