Search found 329 matches

by SimpleSi
Oct 26th, '17, 15:51
Forum: Experience Reports
Topic: After-school club using GP
Replies: 10
Views: 26911

Re: After-school club using GP

Just did the last session with this group Right-click in presentation mode didn't work as the background class prevents the stage background being clicked (The display was in 4:3 mode as it was connected to an old projector so whole screen taken up with the background) So I'll remember to add in a "...
by SimpleSi
Oct 26th, '17, 13:03
Forum: Projects
Topic: GIF Reader
Replies: 13
Views: 16259

GIF Reader

Some of my Coding Clubbers are using Scratch to design backgrounds and then exporting them as gifs

I've written this extension so we can load them into current GP costume

Please try it out on any gifs you have lying around to see if it works for you
by SimpleSi
Oct 25th, '17, 13:03
Forum: Requests
Topic: [video]Suggestions for GUI development
Replies: 3
Views: 4063

[video]Suggestions for GUI development

Instead of writing - I've rambled on for 10 mins in this video trying to explain my suggestions for the main GUI layout :)

http://youtu.be/s8jWCY9kMEs?hd=1
by SimpleSi
Oct 24th, '17, 11:12
Forum: Bugs
Topic: [serious]List action affecting other list
Replies: 2
Views: 3544

Re: List action affecting other list

This is the simplest code I can come up with that shows the bug

Summary
codeTable list is being changed when a different variable (newCode list) is being changed

Note - there are many workarounds for the issue but I don't think the bug should arise in the 1st place
by SimpleSi
Oct 24th, '17, 06:14
Forum: Bugs
Topic: 1000byte limit on fileread
Replies: 2
Views: 3514

Re: 1000byte limit on fileread

:)
readfile 'filename.txt' true

has fixed the issue :)
by SimpleSi
Oct 24th, '17, 06:01
Forum: Requests
Topic: [dev mode]Monitoring of script variables
Replies: 4
Views: 4950

Re: [dev mode]Monitoring of script variables

One other place you can see tha value of script variables is in the debugger. You can add a "halt" block to a script to make the debugger appear, then use the "step" button to go through the code one command at a time. The script variable names are shown in the bottom left pane. Selecting one shows...
by SimpleSi
Oct 23rd, '17, 16:26
Forum: Bugs
Topic: 1000byte limit on fileread
Replies: 2
Views: 3514

1000byte limit on fileread

I'm writing a GIF file parser and it works on small images but I can't read files bigger than 1000 bytes using toBinaryData(readfile 'xxxx.gif') I know some file primitives have been added to GP but I've been unable to work out how to use them Help! :) [EDIT] There's not a 1000 byte limt - it was pu...
by SimpleSi
Oct 22nd, '17, 16:19
Forum: Bugs
Topic: [serious]List action affecting other list
Replies: 2
Views: 3544

[serious]List action affecting other list

I'm writing a program to read GIFs and using lists extensively to store the image data and the output image pixels and coming across some pecularities Basically been building the program up - all working (or at least , all mistakes due to me) Then I noticed one of my lists going a bit off-piste and ...
by SimpleSi
Oct 22nd, '17, 14:15
Forum: Requests
Topic: Make "to list [data]" block work for numbers and strings
Replies: 0
Views: 4395

Make "to list [data]" block work for numbers and strings

e.g
to list [(something that returns 1)] == (list 1)

to list [(something that returns 'AB')] == (list AB)
by SimpleSi
Oct 21st, '17, 12:04
Forum: Requests
Topic: [dev mode]Monitoring of script variables
Replies: 4
Views: 4950

[dev mode]Monitoring of script variables

Its much better/easier to use script variables than shared or instance variables as they can be created "on the fly" However, monitoring their values requires work (print to console - use say block, use own created shared dictionary, insert halts and step thru etc etc) I think we could do with somet...