1
I Use This!
Activity Not Available

News

Posted over 17 years ago by iiley
Some days ago, Stef and Oliver told about the flash player 10 new class Vector conflict with AsWing’s org.aswing.util.Vector, seems we need to rename AsWing one to another name. Some like ASVector(since we have ASFont, ASColor etc.) or just ArrayList. But today i finally got a chance to try Flex4 SDK, i compiled a SWF with [...]
Posted over 17 years ago by Alva Sun
based on SkinBuilderLAF 1 ChromeLAF You can get the source from the svn http://svn.aswing.org/aswing/trunk/ChromeLAF/  Some screenshot here: 2 BlueLAF You can get the source from the svn http://svn.aswing.org/aswing/trunk/BlueLAF/  Some screenshot here:
Posted over 17 years ago by iiley
zppsky has contributed PPZhaoLAF yesterday, it is a very beautiful Skin based on SkinBuilderLAF. Some screenshot here: You can download it from here now(Included source and swc files): Thanks zppsky very much for sharing his product.
Posted almost 18 years ago by iiley
Well, from AsWing 1.4, we fixed a important bug(a preferred size cache bug that a non-valid component invalidate will not get cache fresh), but sadly we brought another bug : JList/JTree/JTable’s CellPane will always make JList/JTree/JTable not ... [More] valid, so JList/JTree/JTable will do validating/layouting every frame, we can hard to see this problem, because it generally [...] [Less]
Posted almost 18 years ago by iiley
We are happy to announce AsWing GuiBuilder 1.4.2 release, with the haXe code generator contributed by Johan Coppens, now GuiBuilder may be more useful for haXe coders. (see also Using AsWing/as3 with Haxe) Thanks Johan Coppens for the generator ... [More] implementation to make us a chance to release this version. You can download it here now: http://code.google.com/p/aswing/downloads/list The newest [...] [Less]
Posted almost 18 years ago by iiley
Some times, our art designer prefer a unregular window, especially for a game UI or some cool application. Well, here is a tip: package{ import flash.display.DisplayObject; import flash.display.Sprite; import flash.events.Event; import ... [More] flash.events.MouseEvent; import flash.filters.DropShadowFilter; import flash.geom.Rectangle; import org.aswing.*; import org.aswing.border.EmptyBorder; public class UnregularWindow extends Sprite{ [Embed(source="windowbg.png")] private var imgClass:Class; private var window:JWindow; public function UnregularWindow(){ super(); AsWingManager.initAsStandard(this); window = new JWindow(); var img:DisplayObject = new imgClass() as DisplayObject; img.filters = [new DropShadowFilter()]; //make some blank space [...] [Less]
Posted almost 18 years ago by iiley
Assume we have a dialog looks like below: It is created by code(snippted): AsWingManager.initAsStandard(this); var okButton:JButton = new JButton("Conform"); var cancelButton:JButton = new JButton("Cancel"); var tipButton:JButton = new ... [More] JButton("Tip"); var pane:JPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT, 4, 4)); pane.appendAll(tipButton, okButton, cancelButton); var window:JFrame = new JFrame(null, "Gap"); window.getContentPane().append(pane, BorderLayout.SOUTH); window.setComBoundsXYWH(10, 10, 200, 200); window.show(); The three button is layouted by a FlowLayout, they have same 4 pixel gap [...] [Less]
Posted almost 18 years ago by iiley
There is a video chat application uses AsWing for a long time, it is a awesome project, you can setup rooms to make a video meeting, chat with friends, multi-multi chat or one-one chat, video or text, even, you can play some games there. They’v designed and made a skin for their UI based on SkinBuilderLAF, [...]
Posted almost 18 years ago by iiley
Well, AsWing AS3 version is now 1.4, it’s very stable now that since there are commercial products running months based on it. The only big additions of this version are MultipleAssetIcon and GridList. The GridList component maybe useful for some ... [More] guys, see it’s example. MultipleAssetIcon is contributed by Srdjan, also GridList is his introduction, Thanks [...] [Less]
Posted about 18 years ago by iiley
Today a friend at AsWing QQ group got trouble to implement a QQ2008 style List, that is, when click on a item, clicked item become bigger.(Means selected item should be bigger than others). Here i tried to impelented one, it’s not complex, but really hard for AsWing beginners, for this, you should know two points: 1. Your [...]