Author |
Topic: Super Shapes Exploration Kit (Read 365 times) |
|
AndyA
New Member
member is offline
Posts: 1
|
|
Super Shapes Exploration Kit
« Thread started on: Mar 23rd, 2017, 10:53pm » |
|
Hi all
This is my first post on this board. Hope you can find this to be useful.
This is an app that can be used to make buttons, and a whole lot of other things. It doesn't create buttons but the artwork that can be made into a button.
It can be downloaded here. https://sabercathost.com/8X91/LB_SuperShapes.7z
|
|
Logged
|
|
|
|
Richard Russell
Administrator
member is offline
Posts: 1348
|
|
Re: Super Shapes Exploration Kit
« Reply #1 on: Mar 24th, 2017, 07:53am » |
|
on Mar 23rd, 2017, 10:53pm, AndyA wrote: Looks impressive, but I don't have a program to unpack 7z files on this (Windows 10) PC - a Store app 'Unpacker' runs but it says the archive has an error.
Now Zip files are supported natively in Windows I can't really see the attraction of using an alternative packer, even if it does save a little more space.
Richard.
|
|
Logged
|
|
|
|
joker
Global Moderator
member is offline
Gender:
Posts: 157
|
|
Re: Super Shapes Exploration Kit
« Reply #2 on: Mar 24th, 2017, 10:09am » |
|
Welcome to the forum, AndyA!
I just normally don't download files hosted somewhere unknown to me. I'll never see the work you did to create these graphics.
Please, use the much more common ZIP compression.
|
|
Logged
|
|
|
|
Rod
Full Member
member is offline
Gender:
Posts: 110
|
|
Re: Super Shapes Exploration Kit
« Reply #3 on: Mar 25th, 2017, 11:05am » |
|
This is a link to a normal .zip version of the file.
http://gamebin.webs.com/Liberty/LB%20SuperShapes.zip
Andy is a long time contributor to out BASIC communities. Not sure why .7zip is so problematic Win10 does not like the format and it means downloading an app, the first I tried didn't work and I don't really want my pc full of apps. .zip is but a right click away, sendto, compressed zip folder. Easy in Win10.
|
|
Logged
|
|
|
|
Richard Russell
Administrator
member is offline
Posts: 1348
|
|
Re: Super Shapes Exploration Kit
« Reply #4 on: Mar 26th, 2017, 4:25pm » |
|
on Mar 25th, 2017, 11:05am, Rod wrote: Great, thanks.
There seems to be a problem with the program in that there's no trapclose command anywhere! If you click on the Close button it appears to close (in that the window disappears) but in fact it's still running.
For LBB users there's a worthwhile speed-up that can be achieved. Make the following changes to the ssr subroutine:
Change this Code: If phi = 0 Then
#h$ "Set ";nx;" ";ny
Else
#h$ "Goto ";nx;" ";ny
End If to this Code: If phi = 0 Then
g$ = g$ + "Set ";nx;" ";ny;";"
Else
g$ = g$ + "Goto ";nx;" ";ny;";"
End If and add this between the Next and the End Sub:
Code: This builds the plot commands in a temporary string and sends them 'all in one go' which is faster in LBB. The modification doesn't affect compatibility with LB4.
Richard.
|
|
Logged
|
|
|
|
|