Interesting. Is it possible for me to see a demo of this panel or is it not done?
Interesting. Is it possible for me to see a demo of this panel or is it not done?
Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
Originally Posted by #srl
"A programmer is just a tool which converts caffeine into code"
congrats on the release![]()
The panel is currently still based at freddy1990.com, though it will move to scar-divi.com at some point. I can add an include and link it to your forum account if you would like to see it, but really all it is, is a page showing the link to the xml file and email if you entered one and an edit button to change it
Also, thanks everyone for the kind words, I certainly appreciate it.
Fucking awesome man, good job!
Open Dev SRL compiles successfully.
The includes manager works, I would recommend removing everything except for Open Dev SRL and just calling it SRL. RS2Fonts puts the folder in the include folder, so everyone will still need to manually move the fonts themselves or just checkout their fonts from the repo using subversion.
Very nice work
Now hopefully you can focus more exclusively on future versions of SCAR
To elaborate more on the / div thing for those of you who don't understand, it simply means you can no longer missue /, it causes a mistype unless you use it properly with extended values
Proper uses
SCAR Code:WriteLn(10 div 3); //3SCAR Code:WriteLn(Round(10 / 3)); //3SCAR Code:WriteLn(5.0 / 3.0); //1.666 // .0 not required but good practice
Improper
SCAR Code:WriteLn(IntToStr(10 / 3)); //Type mismatchSCAR Code:WriteLn(10.0 div 3.0)); //Type mismatch
Last edited by Wanted; 05-10-2011 at 08:41 PM.
Love it! This is indeed a very nice release!
Interested in C# and Electrical Engineering? This might interest you.
the new site is pretty pro. It looks fairly sexy as usual.
SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
Programming Projects: NotePad | Tetris | Chess
SCAR Divi 3.25.01 has been released (http://forums.scar-divi.com/thread-1...-33.html#pid33). The new version structure and update notifier allows me to rapidly develop and distribute bugfixes. Hence, this 3.25.01 release is just a minor release with a few bugfixes and tweaks, but not with anything new which would be added in a major release like 3.26 because new features should first go through proper testing stages.
anyone else getting a type mismatch error in line 68 of Mouse.scar? Could very well be me cause I haven't touched any of this in almost a year xD
Line 68:
SCAR Code:randomDist:= maxStep / 2.0 + random(round(maxStep) / 2);
Just usin a simple tester script
SCAR Code:program New;
{.include SRL/SRL.scar}
begin
SetupSRL;
MMouse(20, 20, 3, 3);
end.
Extinct.
Formally known as Drags111.
It possibly is because of the use of / in Mouse.scar. Try..
randomDist := maxStep / 2.0 + Random(Round(maxStep) div 2);
Not according to what IceFire said. :/
He said 10.0 div 3.0 would give a type mismatch.
A little side-note btw, it takes up to 1 hour for the include system to update after an include has been updated by the author of that include. currently SCAR does not notify when an include update is available, however, you can see if your includes are out-of-date in the includes manager and update them from there. Notifications for these updates are planned for the next minor release (3.25.02).
Good job also i did like the preview function, kind of a zoom function. only bad thing about it was that it lagged a little sometimes, maby add it again and make it display 24 pictures per second ?![]()
freddy could you also possibly fix the silent mouse functions ? thnx
Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
Originally Posted by #srl
"A programmer is just a tool which converts caffeine into code"
There are currently 1 users browsing this thread. (0 members and 1 guests)