Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the common function codes of Flex

2025-02-25 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

What are the common functional codes of Flex, many novices are not very clear about this, in order to help you solve this problem, the following editor will explain for you in detail, people with this need can come to learn, I hope you can gain something.

12 Flex common function codes

one. Copy the content to the Flex system clipboard

System.setClipboard (strContent)

two. Copy an ArrayCollection

/ / dummysolution (well,itworks) varbar:ArrayCollection=newArrayCollection (); foreach (vari:Objectinac) {bar.addItem (I);} / varbar:ListCollectionView=newListCollectionView (ListCollectionView (ac) .list)

three. Flex opens a new browser window

NavigateToURL (newURLRequest ('http://ntt.cc'),'_blank');)

four. Refresh browser

NavigateToURL (newURLRequest ("_ javascript:location.reload ();"), "_ self")

five. Close the browser

NavigateToURL (newURLRequest ("_ javascript:window.close ()"), "_ self")

six. Flex sets the background of the Alert window to be transparent

Alert {modalTransparency:0.0; modalTransparencyBlur:0;}

seven. Take a random color

Lbl.setStyle ('color',0xffffff*Math.random ())

eight. Clear the space on the left side of the substring

PublicfunctionLTrim (s:String): String {vari:Number=0; while (s.charCodeAt (I) = = 32 | | s.charCodeAt (I) = = 13 | | s.charCodeAt (I) = = 10 | | s.charCodeAt (I) = = 9) {returns.substring (iMagazine. Length);}

nine. Clear the space to the right of the Flex string

PublicfunctionRTrim (s:String): String {vari:Number=s.length-1; while (s.charCodeAt (I) = = 32 | | s.charCodeAt (I) = = 13 | | s.charCodeAt (I) = = 10 | | s.charCodeAt (I) = = 9) {returns.substring;}

ten. Clear the spaces around the Flex string

PublicfunctionTrim (s:String): String {returnLTrim (RTrim (s));}

eleven. Get data type

GetQualifiedClassName (data)

twelve. Generates a random Flex string.

PrivatefunctionGenerateCheckCode (): String {/ / init varran:Number; varnumber:Number; varcode:String; varcheckCode:String= ""; / / get4radom for (vari:int=0;i

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report