You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(72) |
Jun
(97) |
Jul
(194) |
Aug
(209) |
Sep
(57) |
Oct
(119) |
Nov
(58) |
Dec
(186) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(227) |
Feb
(209) |
Mar
(90) |
Apr
(46) |
May
(20) |
Jun
(114) |
Jul
(25) |
Aug
(41) |
Sep
(42) |
Oct
(14) |
Nov
(1) |
Dec
|
2007 |
Jan
(4) |
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: Ray C. <rc...@gm...> - 2006-06-23 22:57:20
|
Hi, they now work. Check it out in ASTestSheet. Try clicking "nested sheet" in "Some Other Window" multiple times. You would observe that closing them independently of the order of their creation is possible. -- Ray Chuan |
From: Ray C. <rc...@gm...> - 2006-06-22 03:40:01
|
Hi, I've modified -display and -displayIfNeeded to invoke -isHiddenOrHasHiddenAncestor instead of simply using m_hidden to check if drawing should be carried out. This is to make the framework more consistent. For example, if you have a view as a subview of a window's root view, it shouldn't display if the root view is hidden. -- Ray Chuan |
From: Tiago V. <tia...@gm...> - 2006-06-19 07:53:52
|
Good deserverd vacations, if you drop by Portugal, Ill be pleased to show you the views. -- Cheers Tiago Janz |
From: Ray C. <rc...@gm...> - 2006-06-17 14:28:16
|
Hi, On 6/13/06, thomas mery <tho...@gm...> wrote: > hi ray > > thanks for replying > > > > > > > > > if I get it right the inheritance gets broken if I either exclude the > > > org.actionstep classes with the exclude parameter or if I compile > against > > > the intrisics classes > > > > Correct. For example, ASTestView (extends NSView) doesn't work > > correctly because inheritance is missing. > > > > > I tried to move ASTestView and for instance ASTestBox out of the > actionstep > > > package and I get the the same results (nothing ;) > > > > Did you try the code in a previous post? > > > i know this will fix everything :) > > and i tried it and it did > > I think I didn't get that chaining was done at compile time and that if I > load classes that are contained in a swf at run time then the 'chaining' has > to be set by hand > > so I would guess that compiling the classes that inherit from precompiled > classes in the same swf would also fix the pb > > but if I get it right it means the only way to have a class that is not > included in the precompiled library to inherit from ine that is is to use > the fix u provided ( i.e. manuallly declaring inheritance like we used to do > in as1) > > am I on the right path ? Yes. Empirical data does fit your claims. > > > http://sourceforge.net/mailarchive/message.php?msg_id=17039840 > > > > > and when you are mentioning the ActionStepLib.exclude file this is in > the > > > case where i'm not compiling against the intrisics but just using the > > > -exclude paramater in mtasc ? > > > > Correct. > > > > > help would be really appreciated here since i feel i'm missing key > concepts > > > that i would gladly acquire > > > > Actually these problems (missing inheritance) would make sense if you > > know about prototype chains. Try googling to find out more. > > > > i have :) > > if u could just answer my question about the chaining being set at compile > time I think I'll be ok (for a little while ;) > > thomas > > > > > tia > > > > > > thomas > > > > > > > > > > > > > > > > > > > > > > > > why is ASTestBox being excluded if > > > > > > > > > On 6/5/06, Ray Chuan < rc...@gm... > wrote: > > > > Hi, > > > > unfortunately, as you've already guessed, ASTestBox won't be included > > > > because it's class name is "org.actionstep...", which you've specified > > > > for exclusion. > > > > > > > > You need hamtasc to do this. Get it here: > > > > > > > > http://osflash.org/hamtasc#downloads_uploads > > > > > > > > The problem is that the inheritance for org.actionstep.test.ASTestView > > > > is broken. To see and fix this: > > > > > > > > <code> > > > > var base:Object = > > > org.actionstep.test.ASTestView.prototype; > > > > var uber:Object = org.actionstep.NSView; > > > > > > > > // see if broken > > > > trace("Is inheritance broken? "+(base.__proto__==Object.prototype)); > > > > // fix this > > > > base.__proto__= uber.prototype ; > > > > base.__constructor__ = uber; > > > > </code> > > > > > > > > Add this code before you call ASTestView.test(); > > > > > > > > Finally, do your normal compile, but this time, use the exclude file > > > > I've uploaded, /scripts/ActionStepLib.exclude. > > > > > > > > You're done. > > > > > > > > On 6/5/06, thomas mery < tho...@gm...> wrote: > > > > > hi again > > > > > > > > > > ok so i'm compiling agasint the intrisics classes and it make a huge > > > > > diffeence indeed > > > > > > > > > > and I can get the samples to work > > > > > > > > > > but > > > > > > > > > > I can't get the tests to work ... norcan I successfully have y > > > subclasses to > > > > > do what they are supposed to (they do if I compile against the > 'proper' > > > > > library) > > > > > > > > > > help would be greatly appreciated since I'm almost done with setting > up > > > > > things :) > > > > > > > > > > here is the code in TestClass.as > > > > > > > > > > comments in bold > > > > > > > > > > --------- > > > > > > > > > > /* See LICENSE for copyright and terms of use */ > > > > > > > > > > import org.actionstep.test.ASTestBox; > > > > > import org.as2lib.env.log.logger.SosLogger ; > > > > > > > > > > > > > > > /** > > > > > * This is the main entry point for all test classes. > > > > > */ > > > > > class TestClass { > > > > > > > > > > private static var logger:SosLogger; > > > > > > > > > > public static function main() { > > > > > > > > > > Stage.align="LT"; > > > > > Stage.scaleMode="noScale"; > > > > > > > > > > TestClass.logger = new SosLogger("Sample Logger"); > > > > > > > > > > var main:TestClass = new TestClass(); > > > > > > > > > > main.start(); > > > > > > > > > > //main.init(); > > > > > > > > > > } > > > > > > > > > > > > > > > public function start() { > > > > > trace("LOADING LIBRARY"); > > > > > > > > > > > > > Loader.loadLibraryWithCallbackSelectorData > ("ActionStepLib.swf", > > > > > this, "init"); > > > > > } > > > > > > > > > > > > > > > public function init() { > > > > > > > > > > trace("INIT"); > > > > > > > > > > ASTestBox.test(); //here I would assume calling this would > work > > > ... > > > > > but it doesnt when working with the loaded library > > > > > > > > > > // var app:NSApplication = NSApplication.sharedApplication > (); > > > > > // > > > > > // > > > > > // var rect = new NSRect(50,50,200,200); > > > > > // > > > > > // var win:NSWindow = (new > > > > > NSWindow()).initWithContentRectStyleMask(rect, > > > > > // NSWindow.NSTitledWindowMask | > > > > > // NSWindow.NSClosableWindowMask | > > > > > // NSWindow.NSResizableWindowMask | > > > > > // NSWindow.NSMiniaturizableWindowMask > > > > > // ); > > > > > // > > > > > // > > > > > win.setBackgroundColor(NSColor.colorWithHexValueAlpha(0xff0000, > 0.1)); > > > > > // > > > > > // //var tView:NSTextView = (new > NSTextView()).initWithFrame(new > > > > > NSRect(10,10,50,50)); > > > > > // > > > > > // var v:NSView = (new NSView()).initWithFrame(rect); > > > > > // win.setContentView(v); > > > > > // > > > > > // var tView:TMTextView = new TMTextView();//here the class > is > > > only > > > > > subclassing NSTextView and works well if swf compiled agaisnt > 'proper' > > > > > library > > > > > // tView.initWithFrame(new NSRect(10,10,50,50)); > > > > > // > > > > > // v.addSubview(tView); > > > > > // //v.addSubview((new > > > MyView()).initWithFrame(new > > > > > NSRect(20,20,100,100))); > > > > > // > > > > > // tView.setString("Hello this is a test"); > > > > > // > > > > > // var f:NSFont = new NSFont(); > > > > > // > > > > > // f.setFontName("courier"); > > > > > // > > > > > // tView.setFont(f); > > > > > // tView.setBackgroundColor(null); > > > > > // tView.setBoundsSize (new NSSize(50,50)); > > > > > // > > > //tView.setBorderType(NSBorderType.NSLineBorder ); > > > > > // > > > > > // app.run(); > > > > > > > > > > //Application.init(); > > > > > > > > > > } > > > > > } > > > > > > > > > > > > > > > ----------- > > > > > > > > > > > > > > > hope this is obvious :) > > > > > > > > > > TIA > > > > > > > > > > > > > > > thomas > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > actionstep-core mailing list > > > > > act...@li... > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > Ray Chuan > > > > > > > > > > > > _______________________________________________ > > > > actionstep-core mailing list > > > > act...@li... > > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > -- > > > > ---------------------------------------------------------- > > > http://www.myspace.com/thomasmery > > > http://www.thomas-mery.net > > > http://www.shif-t.net > > > http://www.doradorovitch.com > > > > ---------------------------------------------------------- > > > > > > > > > _______________________________________________ > > > actionstep-core mailing list > > > act...@li... > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > -- > > Ray Chuan > > > > > > _______________________________________________ > > actionstep-core mailing list > > act...@li... > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > -- > ---------------------------------------------------------- > http://www.myspace.com/thomasmery > http://www.thomas-mery.net > http://www.shif-t.net > http://www.doradorovitch.com > ---------------------------------------------------------- > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > -- Ray Chuan |
From: Jocelyn <joc...@al...> - 2006-06-16 17:11:54
|
Scott Hyndman a =E9crit : > Hey guys, > > I'm off to Europe for 10 days. I will be back on the 26th. > > Scott > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > =20 Welcome in Europe ! |
From: Scott H. <sc...@af...> - 2006-06-16 10:46:13
|
Hey guys, I'm off to Europe for 10 days. I will be back on the 26th. Scott |
From: thomas m. <tho...@gm...> - 2006-06-14 22:48:10
|
thnks scott I should be more careful :( ! thomas On 6/14/06, Scott Hyndman <sc...@af...> wrote: > > On 6/14/06, thomas mery <tho...@gm...> wrote: > > Hi all, > > > > I was hoping for a little help > > > > I am using NsImageView and am loading an image through > > initWithContentsFromUrl > > > > I was thinking if I have these lines : > > > > var nc:NSNotificationCenter = new NSNotificationCenter(); > > this should be: > var nc:NSNotificationCenter = NSNotificationCenter.defaultCenter(); > > > nc.addObserverSelectorNameObject(Application,"imageDidLoad", > NSImage.NSImageDidLoadNotification,img); > > > > > > my Application class having a static method called imageDidLoad with a > trace > > statement in it > > > > that I would see a trace appear in my trace output console > > > > but ... no :( > > > > anyone can tell me what I'm missing here ? > > > > I have looked at ASTestImages and can't see why my code's different ... > (I > > would post the whole code but maybe if nothing's obvious in what I'm > > describing) > > > > tia > > > > thomas > > > > > > > > > > _______________________________________________ > > actionstep-core mailing list > > act...@li... > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > -- ---------------------------------------------------------- http://www.myspace.com/thomasmery http://www.thomas-mery.net http://www.shif-t.net http://www.doradorovitch.com ---------------------------------------------------------- |
From: cornel <tc...@gm...> - 2006-06-14 20:51:19
|
if i'm not mistaken, that's a clipped tab item; the buttons are outside the tab items. thanks for your time, i really appreciate it. |
From: Scott H. <sc...@af...> - 2006-06-14 20:44:16
|
I only did it that way (with the enclosing tab item) because that's how the picture looked. It is now removed. The buttons just stand by themselves. Scott PS. Rich, if you want the background back, uncomment lines 703 through 707. On 14/06/06, cornel <tc...@gm...> wrote: > I mean like in the image that i sent earlier; the buttons position is > ok, but they shouldnt be in a tab item. But that's probably because > i'm used to windows style tabs. > Lets try as you suggested; later things can be modified (i saw you're > very quick about it) when more people will say their opinion. > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > It's an interesting idea from an aesthetic perspective, but usually > > people want their scroll buttons to stay in one place so they can > > press them quickly. Would it be okay if they were docked at the right > > edge of the tab view? > > > > Scott > > > > On 14/06/06, cornel <tc...@gm...> wrote: > > > i liked better the 1st version, with the non-extendable scroll tab. > > > indeed, the enabled and the disabled buttons look quite the same. > > > also, what about having the buttons float next to tab, without having > > > them in a tab item? > > > > > > > > > _______________________________________________ > > > actionstep-core mailing list > > > act...@li... > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > _______________________________________________ > > actionstep-core mailing list > > act...@li... > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > |
From: cornel <tc...@gm...> - 2006-06-14 20:33:11
|
I mean like in the image that i sent earlier; the buttons position is ok, but they shouldnt be in a tab item. But that's probably because i'm used to windows style tabs. Lets try as you suggested; later things can be modified (i saw you're very quick about it) when more people will say their opinion. On 14/06/06, Scott Hyndman <sc...@af...> wrote: > It's an interesting idea from an aesthetic perspective, but usually > people want their scroll buttons to stay in one place so they can > press them quickly. Would it be okay if they were docked at the right > edge of the tab view? > > Scott > > On 14/06/06, cornel <tc...@gm...> wrote: > > i liked better the 1st version, with the non-extendable scroll tab. > > indeed, the enabled and the disabled buttons look quite the same. > > also, what about having the buttons float next to tab, without having > > them in a tab item? > > > > > > _______________________________________________ > > actionstep-core mailing list > > act...@li... > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > |
From: Richard K. <ri...@in...> - 2006-06-14 20:30:19
|
I vote for keeping them in one place. -rich On Jun 14, 2006, at 4:23 PM, Scott Hyndman wrote: > It's an interesting idea from an aesthetic perspective, but usually > people want their scroll buttons to stay in one place so they can > press them quickly. Would it be okay if they were docked at the right > edge of the tab view? > > Scott > > On 14/06/06, cornel <tc...@gm...> wrote: >> i liked better the 1st version, with the non-extendable scroll tab. >> indeed, the enabled and the disabled buttons look quite the same. >> also, what about having the buttons float next to tab, without having >> them in a tab item? >> >> >> _______________________________________________ >> actionstep-core mailing list >> act...@li... >> https://lists.sourceforge.net/lists/listinfo/actionstep-core >> > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core |
From: Scott H. <sc...@af...> - 2006-06-14 20:23:55
|
It's an interesting idea from an aesthetic perspective, but usually people want their scroll buttons to stay in one place so they can press them quickly. Would it be okay if they were docked at the right edge of the tab view? Scott On 14/06/06, cornel <tc...@gm...> wrote: > i liked better the 1st version, with the non-extendable scroll tab. > indeed, the enabled and the disabled buttons look quite the same. > also, what about having the buttons float next to tab, without having > them in a tab item? > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > |
From: cornel <tc...@gm...> - 2006-06-14 20:13:31
|
i liked better the 1st version, with the non-extendable scroll tab. indeed, the enabled and the disabled buttons look quite the same. also, what about having the buttons float next to tab, without having them in a tab item? |
From: Scott H. <sc...@af...> - 2006-06-14 20:03:58
|
Just some ideas that might be interesting. It could be cool if somehow the scroll buttons could indicate in what direction the select tab item lies...or maybe even a jump to selected feature. Or maybe the selected tab could be kind of pulled out front and excluded from the background tabs until it loses selection. Things off-screen are never good. Just trying to think around them. Scott On 14/06/06, Richard Kilmer <ri...@in...> wrote: > > That looks really great! > > -rich > > > On Jun 14, 2006, at 3:42 PM, Scott Hyndman wrote: > > > ASTestTabView > > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > |
From: Richard K. <ri...@in...> - 2006-06-14 19:53:59
|
That looks really great! -rich On Jun 14, 2006, at 3:42 PM, Scott Hyndman wrote: > ASTestTabView |
From: Scott H. <sc...@af...> - 2006-06-14 19:53:15
|
No problem. Only thing that bugs me is our disabled buttons don't contrast enough with the enabled ones. I'm going to have to do something about that. Scott On 14/06/06, cornel <tc...@gm...> wrote: > much better, IMO > thanks. > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > What about now? > > > > Scott > > > > On 14/06/06, cornel <tc...@gm...> wrote: > > > how about something like this: > > > > > > > > > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > > > How would you like it to look? > > > > > > > > Scott > > > > > > > > On 14/06/06, cornel <tc...@gm...> wrote: > > > > > thanks a lot, it works. > > > > > hopefuly it will be improved visually later, though. > > > > > > > > > > cornel > > > > > > > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > > > > > Okay, I added scrolling to the tab views. > > > > > > > > > > > > You can turn the scrolling on by using NSTabView.setScrollable(true). > > > > > > > > > > > > There aren't bars though. I used two little buttons for left and right > > > > > > scrolling. If you want to see it in action, check out ASTestTabView. > > > > > > > > > > > > And I wrote it really quickly. I can't promise there won't be bugs. > > > > > > Removing tab items could land you in trouble. :) > > > > > > > > > > > > Hope it's what you wanted, > > > > > > Scott > > > > > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > > > thanks for your quick answer. > > > > > > > both would do for me, though the scrolling bars feels more natural to me. > > > > > > > do you have any idea when this will be done? > > > > > > > > > > > > > > cornel > > > > > > > > > > > > > > > > > > > > > > > > > > > > On 13/06/06, Scott Hyndman <sc...@af...> wrote: > > > > > > > > Yup, or we could add an overflow menu, which is a button that only > > > > > > > > appears when there are too many tab items to display. By clicking on > > > > > > > > this button, a flyout menu appears listing all available options. > > > > > > > > > > > > > > > > What do you think? > > > > > > > > > > > > > > > > Scott > > > > > > > > > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > > > > > hi > > > > > > > > > > > > > > > > > > While playing with tabviews, i noticed that if i add lots of tab items > > > > > > > > > to them, some of the items will get clipped. Is there a way to have a > > > > > > > > > tab with scroll bars, so that all the items would be accesible? > > > > > > > > > > > > > > > > > > thanks > > > > > > > > > cornel. > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > actionstep-core mailing list > > > > > > > > > act...@li... > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > actionstep-core mailing list > > > > > > > > act...@li... > > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > actionstep-core mailing list > > > > > > > act...@li... > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > actionstep-core mailing list > > > > > > act...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > actionstep-core mailing list > > > > > act...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > _______________________________________________ > > > > actionstep-core mailing list > > > > act...@li... > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > actionstep-core mailing list > > > act...@li... > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > _______________________________________________ > > actionstep-core mailing list > > act...@li... > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > |
From: Scott H. <sc...@af...> - 2006-06-14 19:42:48
|
yup. update from SVN. get ASTestTabView too On 14/06/06, cornel <tc...@gm...> wrote: > can we have a look? > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > I wrote another version where the "scroll" tab extends all the way to > > the last visible tab item. It looks good too. If you want it that way > > I'll check it in. > > > > Scott > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > > What about now? > > > > > > Scott > > > > > > On 14/06/06, cornel <tc...@gm...> wrote: > > > > how about something like this: > > > > > > > > > > > > > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > > > > How would you like it to look? > > > > > > > > > > Scott > > > > > > > > > > On 14/06/06, cornel <tc...@gm...> wrote: > > > > > > thanks a lot, it works. > > > > > > hopefuly it will be improved visually later, though. > > > > > > > > > > > > cornel > > > > > > > > > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > > > > > > Okay, I added scrolling to the tab views. > > > > > > > > > > > > > > You can turn the scrolling on by using NSTabView.setScrollable(true). > > > > > > > > > > > > > > There aren't bars though. I used two little buttons for left and right > > > > > > > scrolling. If you want to see it in action, check out ASTestTabView. > > > > > > > > > > > > > > And I wrote it really quickly. I can't promise there won't be bugs. > > > > > > > Removing tab items could land you in trouble. :) > > > > > > > > > > > > > > Hope it's what you wanted, > > > > > > > Scott > > > > > > > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > > > > thanks for your quick answer. > > > > > > > > both would do for me, though the scrolling bars feels more natural to me. > > > > > > > > do you have any idea when this will be done? > > > > > > > > > > > > > > > > cornel > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On 13/06/06, Scott Hyndman <sc...@af...> wrote: > > > > > > > > > Yup, or we could add an overflow menu, which is a button that only > > > > > > > > > appears when there are too many tab items to display. By clicking on > > > > > > > > > this button, a flyout menu appears listing all available options. > > > > > > > > > > > > > > > > > > What do you think? > > > > > > > > > > > > > > > > > > Scott > > > > > > > > > > > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > > > > > > hi > > > > > > > > > > > > > > > > > > > > While playing with tabviews, i noticed that if i add lots of tab items > > > > > > > > > > to them, some of the items will get clipped. Is there a way to have a > > > > > > > > > > tab with scroll bars, so that all the items would be accesible? > > > > > > > > > > > > > > > > > > > > thanks > > > > > > > > > > cornel. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > actionstep-core mailing list > > > > > > > > > > act...@li... > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > actionstep-core mailing list > > > > > > > > > act...@li... > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > actionstep-core mailing list > > > > > > > > act...@li... > > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > actionstep-core mailing list > > > > > > > act...@li... > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > actionstep-core mailing list > > > > > > act...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > actionstep-core mailing list > > > > > act...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > actionstep-core mailing list > > > > act...@li... > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > actionstep-core mailing list > > act...@li... > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > |
From: cornel <tc...@gm...> - 2006-06-14 19:41:14
|
can we have a look? On 14/06/06, Scott Hyndman <sc...@af...> wrote: > I wrote another version where the "scroll" tab extends all the way to > the last visible tab item. It looks good too. If you want it that way > I'll check it in. > > Scott > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > What about now? > > > > Scott > > > > On 14/06/06, cornel <tc...@gm...> wrote: > > > how about something like this: > > > > > > > > > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > > > How would you like it to look? > > > > > > > > Scott > > > > > > > > On 14/06/06, cornel <tc...@gm...> wrote: > > > > > thanks a lot, it works. > > > > > hopefuly it will be improved visually later, though. > > > > > > > > > > cornel > > > > > > > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > > > > > Okay, I added scrolling to the tab views. > > > > > > > > > > > > You can turn the scrolling on by using NSTabView.setScrollable(true). > > > > > > > > > > > > There aren't bars though. I used two little buttons for left and right > > > > > > scrolling. If you want to see it in action, check out ASTestTabView. > > > > > > > > > > > > And I wrote it really quickly. I can't promise there won't be bugs. > > > > > > Removing tab items could land you in trouble. :) > > > > > > > > > > > > Hope it's what you wanted, > > > > > > Scott > > > > > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > > > thanks for your quick answer. > > > > > > > both would do for me, though the scrolling bars feels more natural to me. > > > > > > > do you have any idea when this will be done? > > > > > > > > > > > > > > cornel > > > > > > > > > > > > > > > > > > > > > > > > > > > > On 13/06/06, Scott Hyndman <sc...@af...> wrote: > > > > > > > > Yup, or we could add an overflow menu, which is a button that only > > > > > > > > appears when there are too many tab items to display. By clicking on > > > > > > > > this button, a flyout menu appears listing all available options. > > > > > > > > > > > > > > > > What do you think? > > > > > > > > > > > > > > > > Scott > > > > > > > > > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > > > > > hi > > > > > > > > > > > > > > > > > > While playing with tabviews, i noticed that if i add lots of tab items > > > > > > > > > to them, some of the items will get clipped. Is there a way to have a > > > > > > > > > tab with scroll bars, so that all the items would be accesible? > > > > > > > > > > > > > > > > > > thanks > > > > > > > > > cornel. > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > actionstep-core mailing list > > > > > > > > > act...@li... > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > actionstep-core mailing list > > > > > > > > act...@li... > > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > actionstep-core mailing list > > > > > > > act...@li... > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > actionstep-core mailing list > > > > > > act...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > actionstep-core mailing list > > > > > act...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > _______________________________________________ > > > > actionstep-core mailing list > > > > act...@li... > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > actionstep-core mailing list > > > act...@li... > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > |
From: cornel <tc...@gm...> - 2006-06-14 19:40:05
|
much better, IMO thanks. On 14/06/06, Scott Hyndman <sc...@af...> wrote: > What about now? > > Scott > > On 14/06/06, cornel <tc...@gm...> wrote: > > how about something like this: > > > > > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > > How would you like it to look? > > > > > > Scott > > > > > > On 14/06/06, cornel <tc...@gm...> wrote: > > > > thanks a lot, it works. > > > > hopefuly it will be improved visually later, though. > > > > > > > > cornel > > > > > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > > > > Okay, I added scrolling to the tab views. > > > > > > > > > > You can turn the scrolling on by using NSTabView.setScrollable(true). > > > > > > > > > > There aren't bars though. I used two little buttons for left and right > > > > > scrolling. If you want to see it in action, check out ASTestTabView. > > > > > > > > > > And I wrote it really quickly. I can't promise there won't be bugs. > > > > > Removing tab items could land you in trouble. :) > > > > > > > > > > Hope it's what you wanted, > > > > > Scott > > > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > > thanks for your quick answer. > > > > > > both would do for me, though the scrolling bars feels more natural to me. > > > > > > do you have any idea when this will be done? > > > > > > > > > > > > cornel > > > > > > > > > > > > > > > > > > > > > > > > On 13/06/06, Scott Hyndman <sc...@af...> wrote: > > > > > > > Yup, or we could add an overflow menu, which is a button that only > > > > > > > appears when there are too many tab items to display. By clicking on > > > > > > > this button, a flyout menu appears listing all available options. > > > > > > > > > > > > > > What do you think? > > > > > > > > > > > > > > Scott > > > > > > > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > > > > hi > > > > > > > > > > > > > > > > While playing with tabviews, i noticed that if i add lots of tab items > > > > > > > > to them, some of the items will get clipped. Is there a way to have a > > > > > > > > tab with scroll bars, so that all the items would be accesible? > > > > > > > > > > > > > > > > thanks > > > > > > > > cornel. > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > actionstep-core mailing list > > > > > > > > act...@li... > > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > actionstep-core mailing list > > > > > > > act...@li... > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > actionstep-core mailing list > > > > > > act...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > actionstep-core mailing list > > > > > act...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > _______________________________________________ > > > > actionstep-core mailing list > > > > act...@li... > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > _______________________________________________ > > > actionstep-core mailing list > > > act...@li... > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > _______________________________________________ > > actionstep-core mailing list > > act...@li... > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > |
From: Scott H. <sc...@af...> - 2006-06-14 19:38:12
|
I wrote another version where the "scroll" tab extends all the way to the last visible tab item. It looks good too. If you want it that way I'll check it in. Scott On 14/06/06, Scott Hyndman <sc...@af...> wrote: > What about now? > > Scott > > On 14/06/06, cornel <tc...@gm...> wrote: > > how about something like this: > > > > > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > > How would you like it to look? > > > > > > Scott > > > > > > On 14/06/06, cornel <tc...@gm...> wrote: > > > > thanks a lot, it works. > > > > hopefuly it will be improved visually later, though. > > > > > > > > cornel > > > > > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > > > > Okay, I added scrolling to the tab views. > > > > > > > > > > You can turn the scrolling on by using NSTabView.setScrollable(true). > > > > > > > > > > There aren't bars though. I used two little buttons for left and right > > > > > scrolling. If you want to see it in action, check out ASTestTabView. > > > > > > > > > > And I wrote it really quickly. I can't promise there won't be bugs. > > > > > Removing tab items could land you in trouble. :) > > > > > > > > > > Hope it's what you wanted, > > > > > Scott > > > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > > thanks for your quick answer. > > > > > > both would do for me, though the scrolling bars feels more natural to me. > > > > > > do you have any idea when this will be done? > > > > > > > > > > > > cornel > > > > > > > > > > > > > > > > > > > > > > > > On 13/06/06, Scott Hyndman <sc...@af...> wrote: > > > > > > > Yup, or we could add an overflow menu, which is a button that only > > > > > > > appears when there are too many tab items to display. By clicking on > > > > > > > this button, a flyout menu appears listing all available options. > > > > > > > > > > > > > > What do you think? > > > > > > > > > > > > > > Scott > > > > > > > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > > > > hi > > > > > > > > > > > > > > > > While playing with tabviews, i noticed that if i add lots of tab items > > > > > > > > to them, some of the items will get clipped. Is there a way to have a > > > > > > > > tab with scroll bars, so that all the items would be accesible? > > > > > > > > > > > > > > > > thanks > > > > > > > > cornel. > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > actionstep-core mailing list > > > > > > > > act...@li... > > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > actionstep-core mailing list > > > > > > > act...@li... > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > actionstep-core mailing list > > > > > > act...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > actionstep-core mailing list > > > > > act...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > _______________________________________________ > > > > actionstep-core mailing list > > > > act...@li... > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > _______________________________________________ > > > actionstep-core mailing list > > > act...@li... > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > _______________________________________________ > > actionstep-core mailing list > > act...@li... > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > |
From: Scott H. <sc...@af...> - 2006-06-14 19:33:41
|
What about now? Scott On 14/06/06, cornel <tc...@gm...> wrote: > how about something like this: > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > How would you like it to look? > > > > Scott > > > > On 14/06/06, cornel <tc...@gm...> wrote: > > > thanks a lot, it works. > > > hopefuly it will be improved visually later, though. > > > > > > cornel > > > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > > > Okay, I added scrolling to the tab views. > > > > > > > > You can turn the scrolling on by using NSTabView.setScrollable(true). > > > > > > > > There aren't bars though. I used two little buttons for left and right > > > > scrolling. If you want to see it in action, check out ASTestTabView. > > > > > > > > And I wrote it really quickly. I can't promise there won't be bugs. > > > > Removing tab items could land you in trouble. :) > > > > > > > > Hope it's what you wanted, > > > > Scott > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > thanks for your quick answer. > > > > > both would do for me, though the scrolling bars feels more natural to me. > > > > > do you have any idea when this will be done? > > > > > > > > > > cornel > > > > > > > > > > > > > > > > > > > > On 13/06/06, Scott Hyndman <sc...@af...> wrote: > > > > > > Yup, or we could add an overflow menu, which is a button that only > > > > > > appears when there are too many tab items to display. By clicking on > > > > > > this button, a flyout menu appears listing all available options. > > > > > > > > > > > > What do you think? > > > > > > > > > > > > Scott > > > > > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > > > hi > > > > > > > > > > > > > > While playing with tabviews, i noticed that if i add lots of tab items > > > > > > > to them, some of the items will get clipped. Is there a way to have a > > > > > > > tab with scroll bars, so that all the items would be accesible? > > > > > > > > > > > > > > thanks > > > > > > > cornel. > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > actionstep-core mailing list > > > > > > > act...@li... > > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > actionstep-core mailing list > > > > > > act...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > actionstep-core mailing list > > > > > act...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > _______________________________________________ > > > > actionstep-core mailing list > > > > act...@li... > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > _______________________________________________ > > > actionstep-core mailing list > > > act...@li... > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > _______________________________________________ > > actionstep-core mailing list > > act...@li... > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > |
From: cornel <tc...@gm...> - 2006-06-14 19:14:31
|
how about something like this: On 14/06/06, Scott Hyndman <sc...@af...> wrote: > How would you like it to look? > > Scott > > On 14/06/06, cornel <tc...@gm...> wrote: > > thanks a lot, it works. > > hopefuly it will be improved visually later, though. > > > > cornel > > > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > > Okay, I added scrolling to the tab views. > > > > > > You can turn the scrolling on by using NSTabView.setScrollable(true). > > > > > > There aren't bars though. I used two little buttons for left and right > > > scrolling. If you want to see it in action, check out ASTestTabView. > > > > > > And I wrote it really quickly. I can't promise there won't be bugs. > > > Removing tab items could land you in trouble. :) > > > > > > Hope it's what you wanted, > > > Scott > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > thanks for your quick answer. > > > > both would do for me, though the scrolling bars feels more natural to me. > > > > do you have any idea when this will be done? > > > > > > > > cornel > > > > > > > > > > > > > > > > On 13/06/06, Scott Hyndman <sc...@af...> wrote: > > > > > Yup, or we could add an overflow menu, which is a button that only > > > > > appears when there are too many tab items to display. By clicking on > > > > > this button, a flyout menu appears listing all available options. > > > > > > > > > > What do you think? > > > > > > > > > > Scott > > > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > > hi > > > > > > > > > > > > While playing with tabviews, i noticed that if i add lots of tab items > > > > > > to them, some of the items will get clipped. Is there a way to have a > > > > > > tab with scroll bars, so that all the items would be accesible? > > > > > > > > > > > > thanks > > > > > > cornel. > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > actionstep-core mailing list > > > > > > act...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > actionstep-core mailing list > > > > > act...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > _______________________________________________ > > > > actionstep-core mailing list > > > > act...@li... > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > _______________________________________________ > > > actionstep-core mailing list > > > act...@li... > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > _______________________________________________ > > actionstep-core mailing list > > act...@li... > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > |
From: Scott H. <sc...@af...> - 2006-06-14 19:09:22
|
How would you like it to look? Scott On 14/06/06, cornel <tc...@gm...> wrote: > thanks a lot, it works. > hopefuly it will be improved visually later, though. > > cornel > > On 14/06/06, Scott Hyndman <sc...@af...> wrote: > > Okay, I added scrolling to the tab views. > > > > You can turn the scrolling on by using NSTabView.setScrollable(true). > > > > There aren't bars though. I used two little buttons for left and right > > scrolling. If you want to see it in action, check out ASTestTabView. > > > > And I wrote it really quickly. I can't promise there won't be bugs. > > Removing tab items could land you in trouble. :) > > > > Hope it's what you wanted, > > Scott > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > thanks for your quick answer. > > > both would do for me, though the scrolling bars feels more natural to me. > > > do you have any idea when this will be done? > > > > > > cornel > > > > > > > > > > > > On 13/06/06, Scott Hyndman <sc...@af...> wrote: > > > > Yup, or we could add an overflow menu, which is a button that only > > > > appears when there are too many tab items to display. By clicking on > > > > this button, a flyout menu appears listing all available options. > > > > > > > > What do you think? > > > > > > > > Scott > > > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > > hi > > > > > > > > > > While playing with tabviews, i noticed that if i add lots of tab items > > > > > to them, some of the items will get clipped. Is there a way to have a > > > > > tab with scroll bars, so that all the items would be accesible? > > > > > > > > > > thanks > > > > > cornel. > > > > > > > > > > > > > > > _______________________________________________ > > > > > actionstep-core mailing list > > > > > act...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > > > > > _______________________________________________ > > > > actionstep-core mailing list > > > > act...@li... > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > _______________________________________________ > > > actionstep-core mailing list > > > act...@li... > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > _______________________________________________ > > actionstep-core mailing list > > act...@li... > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > |
From: cornel <tc...@gm...> - 2006-06-14 19:08:41
|
thanks a lot, it works. hopefuly it will be improved visually later, though. cornel On 14/06/06, Scott Hyndman <sc...@af...> wrote: > Okay, I added scrolling to the tab views. > > You can turn the scrolling on by using NSTabView.setScrollable(true). > > There aren't bars though. I used two little buttons for left and right > scrolling. If you want to see it in action, check out ASTestTabView. > > And I wrote it really quickly. I can't promise there won't be bugs. > Removing tab items could land you in trouble. :) > > Hope it's what you wanted, > Scott > > On 6/13/06, cornel <tc...@gm...> wrote: > > thanks for your quick answer. > > both would do for me, though the scrolling bars feels more natural to me. > > do you have any idea when this will be done? > > > > cornel > > > > > > > > On 13/06/06, Scott Hyndman <sc...@af...> wrote: > > > Yup, or we could add an overflow menu, which is a button that only > > > appears when there are too many tab items to display. By clicking on > > > this button, a flyout menu appears listing all available options. > > > > > > What do you think? > > > > > > Scott > > > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > > hi > > > > > > > > While playing with tabviews, i noticed that if i add lots of tab items > > > > to them, some of the items will get clipped. Is there a way to have a > > > > tab with scroll bars, so that all the items would be accesible? > > > > > > > > thanks > > > > cornel. > > > > > > > > > > > > _______________________________________________ > > > > actionstep-core mailing list > > > > act...@li... > > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > > > > > _______________________________________________ > > > actionstep-core mailing list > > > act...@li... > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > _______________________________________________ > > actionstep-core mailing list > > act...@li... > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > |
From: Scott H. <sc...@af...> - 2006-06-14 18:27:57
|
Okay, I added scrolling to the tab views. You can turn the scrolling on by using NSTabView.setScrollable(true). There aren't bars though. I used two little buttons for left and right scrolling. If you want to see it in action, check out ASTestTabView. And I wrote it really quickly. I can't promise there won't be bugs. Removing tab items could land you in trouble. :) Hope it's what you wanted, Scott On 6/13/06, cornel <tc...@gm...> wrote: > thanks for your quick answer. > both would do for me, though the scrolling bars feels more natural to me. > do you have any idea when this will be done? > > cornel > > > > On 13/06/06, Scott Hyndman <sc...@af...> wrote: > > Yup, or we could add an overflow menu, which is a button that only > > appears when there are too many tab items to display. By clicking on > > this button, a flyout menu appears listing all available options. > > > > What do you think? > > > > Scott > > > > On 6/13/06, cornel <tc...@gm...> wrote: > > > hi > > > > > > While playing with tabviews, i noticed that if i add lots of tab items > > > to them, some of the items will get clipped. Is there a way to have a > > > tab with scroll bars, so that all the items would be accesible? > > > > > > thanks > > > cornel. > > > > > > > > > _______________________________________________ > > > actionstep-core mailing list > > > act...@li... > > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > > > > > _______________________________________________ > > actionstep-core mailing list > > act...@li... > > https://lists.sourceforge.net/lists/listinfo/actionstep-core > > > > > _______________________________________________ > actionstep-core mailing list > act...@li... > https://lists.sourceforge.net/lists/listinfo/actionstep-core > |