Search found 102 matches
- Sat Nov 25, 2017 9:43 am
- Forum: AmigaOS Feature Requests
- Topic: ASL print request
- Replies: 2
- Views: 2806
Re: ASL print request
Youe mean like: printer.device/PRD_EDITPREFS printer.device/PRD_EDITPREFS NAME PRD_EDITPREFS - open the driver preferences window (V44) FUNCTION New drivers can have own preferences. This commands ask the driver to open a window to allow the user to change the prefs. Typically this is done with an D...
- Fri Sep 01, 2017 11:13 am
- Forum: General AmigaOS
- Topic: Where do I find Documentation/kernel/bootloader.txt?
- Replies: 25
- Views: 21478
Re: Where do I find Documentation/kernel/bootloader.txt?
I found one in .../2008-05-14.amigaone.full/Documentation/kernel It's about OS4 on classic Amiga: $ head -n 14 bootloader.txt $VER: bootloader.txt 52.11 (14.10.2007) Installing OS4 on a classic Amiga ================================= Requirements ------------ Must-Haves: - A CyberStorm PPC/Blizzard ...
- Fri Aug 11, 2017 7:02 pm
- Forum: General Developer Support
- Topic: AvailFonts()
- Replies: 7
- Views: 6286
Re: AvailFonts()
It's the former. In your loop you access the AvailFonts structures by using an index on af but you also increment the pointer every iteration so you end up skipping every second font entry and eventually crashing because you've gone past all the AvailFonts structures. Thank you for looking at this,...
- Sat Jul 01, 2017 11:52 am
- Forum: General Developer Support
- Topic: LAYOUT_BackFill
- Replies: 5
- Views: 5967
Re: LAYOUT_BackFill
What about LAYOUT_LayoutBackFill which should be propagated to all childrens, which is right there in the description you posted?
- Sat Apr 29, 2017 7:32 am
- Forum: General AmigaOS
- Topic: Scaling Icons
- Replies: 13
- Views: 6831
Re: Scaling Icons
Maybe the png icon module doesn't support scaling, I'm not sure I don't have it installed at present. As I understand the iconmodule system, if your plugin doesn't support scaling icon.library will do it itself. form iconmodule.doc: [...] For icon formats where the request cannot be fulfilled with ...
- Sat Feb 18, 2017 8:18 am
- Forum: General Developer Support
- Topic: chooserlist label on the right?
- Replies: 2
- Views: 1797
Re: chooserlist label on the right?
Have you tried: LAYOUT_LabelColumn (uint32) The side where the on which side of the gadget the label will be placed in the group. Valid values are PLACETEXT_LEFT and PLACETEXT_RIGHT. See CHILD_Label. Defaults to PLACETEXT_LEFT. Applicability is (OM_NEW, OM_SET, OM_NOTIFY) LAYOUT_AddChild, OBJ(OID_P1...
- Sun Jan 01, 2017 9:00 am
- Forum: Platform: AmigaOne X5000
- Topic: Internet Preferences & Losing Network Card issues
- Replies: 13
- Views: 10982
Re: Internet Preferences & Losing Network Card issues
Maybe you'll get error output on startup if you change the network startup in the startup-sequence from: If EXISTS S:Network-Startup Run >NIL: <NIL: *>NIL: Execute S:Network-Startup EndIf to: If EXISTS S:Network-Startup ; Run >NIL: <NIL: *>NIL: Execute S:Network-Startup Execute S:Network-Startup End...
- Sat Dec 31, 2016 9:56 am
- Forum: Platform: AmigaOne X5000
- Topic: Internet Preferences & Losing Network Card issues
- Replies: 13
- Views: 10982
Re: Internet Preferences & Losing Network Card issues
Why are you using IP-Addresses as hostnames (that's confusing maybe not only me)? In the very first pircture (interface config) you selected DHCP and define your hostname as "10.0.1.1" but 10.0.1.1 is clearly the IP address of your router. This might confuse the DHCP server and/or roadshow...
- Sat Apr 23, 2016 3:05 pm
- Forum: SDK Support
- Topic: Accessing languages.catalog and countries.catalog
- Replies: 8
- Views: 9889
Re: Accessing languages.catalog and countries.catalog
It's pretty easy. For countries.catalog the IDs are derived from the ISO 3166 country code (alpha-3 names): ... MSG_AUS ($41555300//) Australia ; MSG_AUT ($41555400//) Austria ; ... And for languages.catalog it's the ISO-639-2/T 3-letter lowercase language code: ... MSG_eng ($656e6700//) English ; ....
- Sat Dec 05, 2015 11:29 am
- Forum: General AmigaOS
- Topic: SSD hard disks and AmigaOS
- Replies: 21
- Views: 16859
Re: SSD hard disks and AmigaOS
An SSD has its own way of writing data. Normaly an SSD doesn't only write one Block to the disk. It does some merging (to 256 or 512KiB I think). A partition should not cross this "merged" block to get better performance. If you set the alignment to 1MiB you can be sure of that. It could b...