Search found 4 matches

by <David.C#S4701L>
Fri Nov 09, 2007 1:49 pm
Forum: Coding Questions
Topic: RGB Problem
Replies: 7
Views: 2213

RGB Problem

According to my friend (and http://www.javascripter.net/faq/hextorgb.htm )


R = Red($413eba)
G = Green($413eba)
B = Blue($413eba)

MessageRequester("", Str(R)+" "+Str(G)+" "+Str(B))


and


R = 10
G = 20
B = 30

MessageRequester("", Hex(RGB(R,G,B)))


Is actually returning the combination BGR ...
by <David.C#S4701L>
Thu Sep 27, 2007 11:03 am
Forum: Tricks 'n' Tips
Topic: Simple and Understanable OOP Structure
Replies: 14
Views: 5625

byo wrote:Very nice. I'll try it later when I'm home.
Thanks, Ollivier and David.C#S4701L.
No problem, just call me David. :)
by <David.C#S4701L>
Tue Sep 25, 2007 9:29 pm
Forum: Tricks 'n' Tips
Topic: Simple and Understanable OOP Structure
Replies: 14
Views: 5625

Ollivier wrote:Thanks! I copy it into the french forum. (Name of this old topic : «OOC : advantages or disadvantages»)
Thankyou.
@C#

Is the order of the execution of each proc («object») important?
No, it is not. By default the objects are executed from 0 to X. (X being the total of obects)
by <David.C#S4701L>
Thu Sep 20, 2007 1:50 pm
Forum: Tricks 'n' Tips
Topic: Simple and Understanable OOP Structure
Replies: 14
Views: 5625

Simple and Understanable OOP Structure

Hi everyone, I'm somewhat new to the forums (not PB though! :D ) and thought i would come, say hi and post a little. Well, anyway - i wrote a simple and easy to understand OOP structure, more for beginners but still, have a look over it and tell me what you think! Use it, don't use it, change it, i ...