Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 110
» Latest member: JonnyWi
» Forum threads: 125
» Forum posts: 1,479
Full Statistics
|
Online Users |
There are currently 114 online users. » 0 Member(s) | 113 Guest(s) Google
|
Latest Threads |
LDArray extension
Forum: Extensions
Last Post: AbsoluteBeginner
8 hours ago
» Replies: 17
» Views: 185
|
AI learns Small Basic
Forum: Discussion
Last Post: jrmrhrb00
Yesterday, 12:14 AM
» Replies: 6
» Views: 145
|
Challenge 9 - Quick sort
Forum: Challenges
Last Post: AbsoluteBeginner
11-18-2024, 03:52 PM
» Replies: 47
» Views: 969
|
How to exit a subroutine ...
Forum: Standard Small Basic
Last Post: litdev
11-11-2024, 12:59 PM
» Replies: 2
» Views: 91
|
Training program for SB-N...
Forum: Discussion
Last Post: AbsoluteBeginner
11-08-2024, 07:02 AM
» Replies: 13
» Views: 340
|
SmallBasic Open Edition
Forum: C# Moving from Small Basic
Last Post: KristianVirtanen
11-05-2024, 06:37 PM
» Replies: 21
» Views: 665
|
UCI Chess Engine
Forum: Challenges
Last Post: Scout
10-30-2024, 10:41 PM
» Replies: 17
» Views: 1,748
|
Welcome
Forum: Standard Small Basic
Last Post: AbsoluteBeginner
10-30-2024, 10:01 PM
» Replies: 11
» Views: 1,673
|
Skull Custom Language Cre...
Forum: Discussion
Last Post: z-s
10-28-2024, 04:49 PM
» Replies: 87
» Views: 10,736
|
SB-Prime Plugins
Forum: Extensions
Last Post: litdev
10-25-2024, 07:52 AM
» Replies: 1
» Views: 79
|
|
|
test |
Posted by: victimvictus - 02-05-2024, 02:51 PM - Forum: Discussion
- No Replies
|
|
test mesajııztest mesajııztest mesajııztest mesajııztest mesajııztest mesajııztest mesajııztest mesajııztest mesajııztest mesajııztest mesajııztest mesajııztest mesajıız
|
|
|
Point (0,0) in LD3DView image mapping |
Posted by: stevantosic - 02-04-2024, 05:09 PM - Forum: Extensions
- Replies (18)
|
|
Hi
I don't know if this should be new thread.
In the LD3DView examples point (0,0) is in the left down corner for purpose of image mapping. For example, images water.jpg, stones.jpg and wall.jpg are hard to see the right orientation of images. I think that (0,0) should be in the left upper corner of an image.
st
|
|
|
Old Small Basic Forum is gone! |
Posted by: jrmrhrb00 - 01-30-2024, 12:20 AM - Forum: Discussion
- Replies (4)
|
|
It looks like Microsoft has pulled the plug on having access to the old forum. The link now just takes you to Q&A. This is really a shame as there was still a lot of good information there. If anyone can figure out a way to get into it let me know, but it looks like it is gone.
JR
|
|
|
Can't get LDTimers to work |
Posted by: jrmrhrb00 - 12-25-2023, 08:44 PM - Forum: Extensions
- Replies (4)
|
|
LitDev,
Here's the code:
'Timer.interval= 10
'Timer.tick=OnTimerTick
'Name=LDTimer.Addtick(OnTimerTick)
'LDTimer.Interval(Name,10)
Name=LDTimer.Add()
LDTimer.Interval(Name,10)
LDTimer.Tick=OnTimerTick
Sub OnTimerTick
TextWindow.WriteLine("Here")
EndSub
The first 2 lines are the regular timer. That works, but it has been commented out. The next 2 lines have been commented out and they don't work. The next 3 have not been commented out, but they don't work either. I couldn't find this in the old forum. So, how do you make these work. To me they are setup like the first 2 lines which do work.
JR
|
|
|
Sb-Prime Variables at bottom not being set |
Posted by: jrmrhrb00 - 12-17-2023, 03:14 PM - Forum: Extensions
- Replies (3)
|
|
LitDev,
I noticed that while checking out stepping in a program that all of the variable values don't get set at the bottom of the screen in the debug window. If I step through the below program in prime var3 and var5 don't get set. If I hover over them they do show the values. Also, if I have the variable and call stack displayed it works correctly.
JR
Var1="This"
var2="that"
var3="and"
var4="so"
var5="on"
while "True"
Program.Delay(30)
EndWhile
|
|
|
|