Search found 475 matches

by SamuraiCrow
Wed Feb 12, 2020 10:55 am
Forum: Newbie questions
Topic: FontRequest and GetAttribute
Replies: 11
Views: 10027

Re: FontRequest and GetAttribute

I think you are looking for GetFontStyle(). GetAttribute() is only for fonts embedded using preprocessor macros because it is in the object library.
by SamuraiCrow
Mon Jan 20, 2020 12:11 am
Forum: Wishlist
Topic: Shuffle Table
Replies: 8
Views: 7665

Re: Shuffle Table

This one won't crash and it includes another version for generic tables tested with a Unicode key value. @DISPLAY 0, {HIDDEN = True} @VERSION 7,0 /* * Table shuffler * * Parameter: * a Table to shuffle * * Returns: * Shuffled table */ Function p_ShuffleTable(a) Local key, content, k, max, iter=Nil, ...
by SamuraiCrow
Sun Jan 19, 2020 8:11 am
Forum: Wishlist
Topic: Shuffle Table
Replies: 8
Views: 7665

Re: Shuffle Table

Curiously, copying the two parameters to dummy variables alleviates the Sort check. @DISPLAY 0, {HIDDEN = True} nums = {"One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine", "Ten"} F...
by SamuraiCrow
Fri Dec 06, 2019 9:52 am
Forum: Announcements
Topic: The Secret of Middle City now available in a boxed version
Replies: 7
Views: 10717

Re: The Secret of Middle City now available in a boxed version

Bugala wrote: Thu Dec 05, 2019 9:27 pm the Secret of MIddle City was made with Hollywood, by one of our Forum members (come up and introduce yourself!)
Now sadly deceiced, I'm afraid. This product is a tribute to the late Stefano Buonocore and the proceeds benefit his his family as they grieve his loss.
by SamuraiCrow
Fri Nov 15, 2019 10:36 pm
Forum: Off topic
Topic: Bytecode Alliance offers secure cross-platform code
Replies: 0
Views: 11201

Bytecode Alliance offers secure cross-platform code

https://hacks.mozilla.org/2019/11/announcing-the-bytecode-alliance/ The big wheels are teaming up to offer a WebAssembly-based bytecode for non-browser apps. It seems like it could be a competitor to the Hollywood Player and the associated applet format. Or it could be an alternative target as well.
by SamuraiCrow
Sun Nov 10, 2019 3:37 pm
Forum: Newbie questions
Topic: Drop some results
Replies: 6
Views: 5911

Re: Drop some results

LarsB wrote: Sun Nov 10, 2019 2:58 pm Why do you set a,b,d to NIL if they are not needed?
That's to deallocate them.
by SamuraiCrow
Thu Nov 07, 2019 1:42 am
Forum: Newbie questions
Topic: Aminet Release - How to
Replies: 22
Views: 17520

Re: Aminet Release - How to

@LarsB

The icon file format on AOS 4 is backward compatible to AOS 3.
by SamuraiCrow
Mon Nov 04, 2019 6:57 pm
Forum: Newbie questions
Topic: Applets and .ogg
Replies: 8
Views: 6230

Re: Applets and .ogg

Applets are portable but plugins are not. Linkage cannot take place. Just put the plugin in the appropriate directory in the applet player.
by SamuraiCrow
Mon Oct 14, 2019 6:36 pm
Forum: Amiga IDE questions
Topic: Prefered Amiga IDE
Replies: 12
Views: 16228

Re: Prefered Amiga IDE

SantiDarkG wrote: Mon Oct 14, 2019 2:45 pmError: File Path of the file *.hws doest not exist!
Did you try #?.hws instead of the star?
by SamuraiCrow
Thu Oct 03, 2019 6:44 pm
Forum: General programming
Topic: Any way to save current eventhandler option?
Replies: 9
Views: 6808

Re: Any way to save current eventhandler option?

@Bugala

Have you considered making a wrapper function your handler instead and having it keep track of the functions yourself?