Forum
iiley December 3rd, 2007
We start discuss with a BBS intead of mailling list now, join our forum here : http://bbs.aswing.org
We do not suggest you to subscribe to our Mailing List : https://lists.sourceforge.net/lists/listinfo/aswing-users to discuss now.
But there’s old useful discussions, you can Click here for Archives.
Click here to search in archives.
There’s a google group about AsWing discuss too : http://groups.google.com/group/asui
- Comments(13)
Hi,
i’m usinig AsWing in my AS3 application. I was going to make а table where i could draw
pictutes in the
cells, tried different ways, but couldn’t make. Is there an easy way to do it?
I rewrote icon class extended from Sprite to load picture into the icon. but the problems
apear when i scroll down the table - pictures remain the same.
i didn’t save sources. i just wondering if there is an easy way to have images in the cells.
now i’m trying just to make a big panel inside a scroll box.
var mainPanel2:JPanel;
var bottomPane:Box = new Box(BoxLayout.Y_AXIS,10);
bottomPane.append(new JLoadPane(new URLRequest(”…”)));
bottomPane.append(new JLoadPane(new URLRequest(”…”)));
bottomPane.append(new JLoadPane(new URLRequest(”…”)));
bottomPane.append(new JLoadPane(new URLRequest(”…”)));
var ScrollPane:JScrollPane = new JScrollPane(bottomPane);
mainPanel2.append(ScrollPane);
so i load images in different panels and append panels to “bottomPane” panel.
then i put “bottomPane” into ScrollPane and ScrollPane to
mainPanel2.
It works ok, i have images loaded and have one image in a row, but
there is one problem: ecxcept images scrolled in the scroll box i see that images
loaded on the background as well. it looks like i have two layers - one scrollable
and one not.
is everything ok with the code above?
i hope to get some of your help here.
thanks!
Andrey.
Hi Andrey,
Your Box way is ok.
If any other issues, you can Subscribe to our Mailing List : https://lists.sourceforge.net/lists/listinfo/aswing-users , we can discuss details there. :)
hi iiley, i wanna change the text font of a row of a JList ( or JTable ), but do not change the others. e.g. make the text of some rows of the JList/JTable to be bold, and do not change the others. how to make it ?
thanks a lot!
itsraining
Hi, you can take a look at ListCell and JList.setCellFactory related source.
ListCell contains a component to render the list item, so you can make things there to achive your effect, same to JTable.
BTW: why not post questions to our bbs http://bbs.aswing.org :)
i’ll try it, thanks!
ok, i’ve got it!
I attempted several times to download the 1.4 all-in-one zip file;
the file seems to be corrupted; the browser reports download complete. Received file is less than 6MB and is not a valid archive…
Hi david,
I tested, the file on the server is ok, but sometimes the firefox can’t download complete file, so if you use some download tool to download it, it will be ok.
hi iiley.
i work in a company that build video player. i want to work with some of the components in AsWing but it too heavy.
meaning, for just using the JButton it add to the release version 91kb, or 150kb to the debug version this is too heavy as i said.
i want to fit the AsWing framework to my need, do i have any limitation for doing so?
my project need to be light as possible. and i need your advice here.
10x,
Nisim Joseph
Hi Nisim, if you just build a single video player, it’s not good to choose AsWing if you care about the file size, you can consider Bit-101 component set (http://www.bit-101.com/blog/?p=1126) or Yahoo UI (http://developer.yahoo.com/yui/).
Regards~
hi iiley,
10x on the advice. i am building highly advance video player that is need more then just video and can be extended.
so i probably build my own framework for this issue.
i will take some architectures so i could accomplish this mission.
10x,
Nisim Joseph
i checked the link you suggested me and the YUI is not Flash components, it’s JS. and the other one is not fit to my needs.
10x,
Nisim
Sorry i gave the wrong link, check this http://developer.yahoo.com/flash/astra-flash/
trying to register on forum but cannot. Error message on signup page:
The password does not contain the required characters.
The value of “antibot_one” is too small, a minimum value of 100 is required.
Anyone know how to make a progressbar solid instead of a series of blue squares?