ActionScript: Check if a xml attribute/element exists 检查XML属性/元素是否存在

Categories: Flex; Tagged with: ; @ January 14th, 2012 0:21

Here is the XML:

<XeSex sexIDElement='MID'> <SexID> M </SexID> <Name> Male </Name> <Active> y </Active> <Code> M </Code> </XeSex>

Attitude:  sexIDElement = ‘MID’;
Element: Name = Male

trace(xmlTest.hasOwnProperty('@sexIDElement')); // check if the attribute exists trace(xmlTest.hasOwnProperty('Name')); // check if the element exists

BTW, About: XML Elements vs. Attributes

Replace all by Split/RegEx in ActionScript

Categories: Flex; Tagged with: ; @ December 6th, 2011 20:53

Problem

We need replace all method.

Solution

use RegEx or split&jion;

Detailed explanation

We can use the following two methods:

	private function testFlexStringReplaceAll():void {
		var strSource:String = "Li_guo_Liang.com";
		trace(strSource + " - " + replaceAllBySplit(strSource, "_", ""));
		trace(strSource + " - " + replaceAllByRegex(strSource, "_", ""));
	}

	/**
	 * Repalce all by split and join;
	 */
	public static function replaceAllBySplit(strSource:String, strReplaceFrom:String, strRepalceTo:String):String {
		return strSource == null ? null : strSource.split(strReplaceFrom).join(strRepalceTo);
	}
	
	/**
	 * Replace all by RegEx;
	 */
	public static function replaceAllByRegex(strSource:String, strReplaceFrom:String, strRepalceTo:String):String {
		return strSource == null ? null : strSource.replace(new RegExp(strReplaceFrom, 'g'), strRepalceTo);
	}

TraceLog:

Li_guo_Liang.com – LiguoLiang.com
Li_guo_Liang.com – LiguoLiang.com

Flex: verticalScrollPolicy auto/on/off

Categories: Flex; Tagged with: ; @ December 5th, 2011 23:54

最近碰到一个问题: 当Flex右侧垂直滚动条出现时, 下方水平滚动条必定随之出现, 详细的描述就是:

该UIComponent高度一定, 宽度设置为percent(也就是说宽度可以变化), 当Add一个内部组件到该UI上后, UI需要更多高度, 但高度一定, 只好出现右侧滚动条(默认的ScrollPolicy为auto), 假使被增加组件的宽度与外部组件宽度一致, 此时由于滚动条的出现, 外部UI不能直接完整显示该组件, 于是出现水平滚动条,.

Flex API中有关内容: Sizing components http://livedocs.adobe.com/flex/3/html/help.html?content=size_position_3.html

参考: Using Scroll bars一章:

Notice that the addition of the scroll bar doesn’t increase the height of the container from its initial value. Flex considers scroll bars in its sizing calculations only if you explicitly set the scroll policy to

ScrollPolicy.ON. So, if you use an auto scroll policy (the default), the scroll bar overlaps the buttons. To prevent this behavior, you can set the

heightproperty for the HBox container or allow the HBox container to resize by setting a percentage-based width. Remember that changing the height of the HBox container causes other components in your application to move and resize according to their own sizing rules.

解决方案比较清晰, 要么设置ScrollPoliocy为No, 要么调整宽高设置. 为了清晰演示, 写了个小Application:

Flex3TestWeb_ScrollPolicy

Flex: 检查/撤销Datagrid编辑数据 Validate/revert editable Datagrid input value

Categories: Flex; Tagged with: ; @ December 5th, 2011 21:42

Requirement: We want to validate user input in editable datagrid, and revert the original value(undo) if necessary.

Solution: Handle the ‘itemEditEnd’ Event dispatched by the datagrid.

Codes:

	/**
	 * validate user input, revert the original value if necessary.
	 */
	protected function datagirdTest_itemEditEndHandler(event:DataGridEvent):void {
		if(event.dataField != "Name") { // chech the field;
			return;
		}
		var input:String = (datagirdTest.itemEditorInstance as TextInput).text; // get the user input data.
		if(input == null || input == "") {
			event.preventDefault(); // prevent default behavior
			// var filed:String = (datagirdTest.columns[event.columnIndex] as DataGridColumn).editorDataField;
			// trace(datagirdTest.itemEditorInstance[filed]);
			(datagirdTest.itemEditorInstance as TextInput).text = (event.itemRenderer.data as XML).Name;// Undo: revert the original data by the selected item.
			Alert.show(errorMesg);
			return;
		}
	}

Screen caputre:

image

User input is empty, we got the Event, prevent the default behavior, and revert the value form the modeling.

Ref:

1. itemEditEnd called multiple times http://forums.adobe.com/message/2459209
2. Using cell editing events  – http://livedocs.adobe.com/flex/3/html/help.html?content=celleditor_7.html

推荐:Chrome下ActionScript API 搜索插件

Categories: Flex; Tagged with: ; @ October 26th, 2011 21:34

A Chrome plugin for: ActionScript 3.0 Reference.
Input “as3 + ‘space'” and keywords: (more…)

Older Posts



// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.