Search found 293 matches
- Thu Jan 10, 2013 5:37 pm
- Forum: General Developer Support
- Topic: Window.class and IDCMP
- Replies: 7
- Views: 3172
Re: Window.class and IDCMP
My experience shows that flags from WA_IDCMP when specified on NewObject() are added to the default flags set by window.class internally. Some flags must be set by WA_IDCMP, for example IDCMP_RAWKEY, otherwise no WMHI_RAWKEY event will occur. You cannot unset flags by removing them from WA_IDCMP. I ...
- Sun Dec 30, 2012 5:42 pm
- Forum: Platform: Pegasos II
- Topic: How to use PCI SATA controller?
- Replies: 8
- Views: 28705
Re: How to use PCI SATA controller?
Does the BootDevice Kickstart module not work on a Peg? Or did you forget to RTFM? From SYS:Documentation/Kickstart/bootmenu.doc: Predefining the default boot device in the KickLayout file ---------------------------------------------------------- This feature requires slb 1.16+ and Loader V51.10+ o...
- Thu Dec 27, 2012 6:33 pm
- Forum: General Developer Support
- Topic: SPACE_AreaBox broken?
- Replies: 5
- Views: 4256
Re: SPACE_AreaBox broken?
That's not true. The compiler will convert the values to 32bit. It's rather so that you have to use %ld even for 16bit values and you will get junk if you use %d.tonyw wrote: If you use an expression like DebugPrintF ("%ld\n", IBox->xxx), you will read junk.
- Thu Dec 27, 2012 10:51 am
- Forum: General Developer Support
- Topic: SPACE_AreaBox broken?
- Replies: 5
- Views: 4256
Re: SPACE_AreaBox broken?
GetAttr(SPACE_AreaBox) fills in a pointer to an IBox, it does not fill in an IBox you supply.
This works right:
This works right:
Code: Select all
struct IBox *box;
GetAttr (SPACE_AreaBox,spaceobject,&box);
Printf ("x=%ld; y=%ld; w=%ld; h=%ld\n",box->Left,box->Top,box->Width,box->Height);
- Wed Dec 19, 2012 10:22 pm
- Forum: Platform: Classic
- Topic: Logitech Wheel Mouse
- Replies: 12
- Views: 19374
Re: Logitech Wheel Mouse
You need FreeWheel.
- Wed Dec 12, 2012 9:36 pm
- Forum: General AmigaOS
- Topic: Screenmode prefs
- Replies: 9
- Views: 3799
Re: Screenmode prefs
... KVM switches ...nbache wrote:Some combinations of cables, ports and adapters
Nevertheless the GUI should not allow to end up in a dead end.
- Mon Dec 10, 2012 8:34 pm
- Forum: Platform: Classic
- Topic: Logitech Wheel Mouse
- Replies: 12
- Views: 19374
Re: Logitech Wheel Mouse
Did you try any software which supports the scroll wheel (Aweb, DirOpus5 etc.) ?
If not, you need this also: http://aminet.net/package/util/mouse/FreeWheel
Note that the above software titles will scroll at double speed if you install FreeWheel.
If not, you need this also: http://aminet.net/package/util/mouse/FreeWheel
Note that the above software titles will scroll at double speed if you install FreeWheel.
- Mon Dec 10, 2012 2:30 pm
- Forum: Platform: Classic
- Topic: Logitech Wheel Mouse
- Replies: 12
- Views: 19374
Re: Logitech Wheel Mouse
Erm, the Lyra is a keyboard adapter, you cannot connect a mouse to it. You need a Micromys or similar for your mouse.
To use the wheel with a mouse adapter you need to install the software that comes with it.
To use the wheel with a mouse adapter you need to install the software that comes with it.
- Sat Dec 08, 2012 7:05 pm
- Forum: General Developer Support
- Topic: [SOLVED] Using Filler and BitMap gadgets
- Replies: 13
- Views: 10369
Re: Using Filler and BitMap gadgets
I am not sure what you expect and what you are doing. Normally if you attach an image to a gadget, the gadget is sized by the size of the image. No clipping is needed. Of course if you make the gadget smaller than the image (or the image bigger than the gadget), then the image renders outside of the...
- Sat Dec 08, 2012 11:08 am
- Forum: General Developer Support
- Topic: [SOLVED] Using Filler and BitMap gadgets
- Replies: 13
- Views: 10369
Re: Using Filler and BitMap gadgets
You could make your own gadget class which behaves all like you want. This would fix all your issues.
Here is an example: http://thomas-rapp.homepage.t-online.de ... /scale.lha
Here is an example: http://thomas-rapp.homepage.t-online.de ... /scale.lha