Search found 214 matches
- Fri Nov 22, 2019 12:02 am
- Forum: General AmigaOS
- Topic: Home/End keys support in MultiView (text file)
- Replies: 8
- Views: 2869
Re: Home/End keys support in MultiView (text file)
I agree with Niels. In a text editor Home/End is for the current line. Ctrl+Home/End goes to top/bottom of the document.
- Tue Apr 23, 2019 8:43 pm
- Forum: General Developer Support
- Topic: radiobutton.gadget doesn't load/open
- Replies: 9
- Views: 3132
Re: radiobutton.gadget doesn't load/open
gradientslider has the same problem.
- Tue Sep 18, 2018 6:56 pm
- Forum: Platform: AmigaOne X5000
- Topic: PCIe riser
- Replies: 6
- Views: 2899
- Sun Aug 19, 2018 8:55 pm
- Forum: General Developer Support
- Topic: texteditor.gadget notifyevent
- Replies: 2
- Views: 2151
texteditor.gadget notifyevent
GA_TEXTEDITOR_AreaMarked (BOOL) This tag will be set to TRUE when text is marked and back to FALSE when nothing is marked. You can create a notifyevent with this tag and let your cut/copy buttons become ghosted when nothing is marked. Applicability is (OM_GET, OM_NOTIFY) How do you set and use thes...
- Sat Jun 30, 2018 8:15 pm
- Forum: Platform: AmigaOne X5000
- Topic: Updater
- Replies: 6
- Views: 3931
Re: Updater
I did a fresh install for my new system. I, too, started to get the APPDIR requesters, from Updater, as well. What it turned to be for me is that my program, WorkbenchExplorer, was calling "APPDIR:LhA" to extract an archive. I hadn't run C:LhA yet so it couldn't find it in the APPDIR: &quo...
- Mon Jun 25, 2018 3:52 am
- Forum: General Developer Support
- Topic: Opening bsdsocket.library
- Replies: 0
- Views: 1466
Opening bsdsocket.library
I have been doing some testing with checking if my computer is online or not. I have narrowed down my issue to the opening of the bsdsocket.library. When I have the network card installed, but the cable unplugged, boot, run my program, it gets "stuck" at the bsdsocket.library opening. I am...
- Thu Jun 14, 2018 3:54 pm
- Forum: Platform: AmigaOne X5000
- Topic: How to burn working boot cd from Hyperion image?
- Replies: 19
- Views: 8795
Re: How to burn working boot cd from Hyperion image?
When I started to get some video flicker at boot anim, it turned out to be the power supply going bad. I went through a nightmare dealing with that.
- Sun May 13, 2018 12:01 am
- Forum: General AmigaOS
- Topic: AmiUpdate?
- Replies: 6
- Views: 5317
- Wed May 02, 2018 11:04 pm
- Forum: General Developer Support
- Topic: mailto:
- Replies: 4
- Views: 2628
Re: mailto:
Code: Select all
if ((URLLock=IDOS->Open("URL:mailto:support@mritter0.com",MODE_OLDFILE)))
IDOS->Close(URLLock);
- Wed May 02, 2018 12:59 am
- Forum: General Developer Support
- Topic: mailto:
- Replies: 4
- Views: 2628
mailto:
To open a web link: if ((URLLock=IDOS->Open("URL:http://www.mritter0.com/forum",MODE_OLDFILE))) IDOS->Close(URLLock); To open an email program via link: if ((URLLock=IDOS->Open("mailto:support@mritter0.com",MODE_OLDFILE))) IDOS->Close(URLLock); Is that how to open your email prog...