Search found 14 matches

by tjframe
Fri Jan 05, 2018 2:17 pm
Forum: Talking LiveCode
Topic: Simple BitCoin Price-Checking Functions
Replies: 1
Views: 4471

Re: Simple BitCoin Price-Checking Functions

Thanks for these! Just what I needed to help track my crypto trading for tax purposes. I really hate the fact that exchanges use like 8+ decimal places to compare as a ratio to BTC, which itself fluctuates in wild swings. I know why they do it, but it's not human friendly. Such a pain the butt to do...
by tjframe
Wed Feb 15, 2017 7:04 am
Forum: Feature Proposals
Topic: Livecode still way too slow....
Replies: 42
Views: 25918

Re: Livecode still way too slow....

>>>> but didn't include benchmark output. Was it cropped? Yea not sure what you are seeing on your end, but the image I posted has the benchmark output of your program running side by side under Livecode 9.0 and 6.5. If you can't see the full image, the results were as follows: v9 - "Icons" button t...
by tjframe
Tue Feb 14, 2017 10:26 am
Forum: Feature Proposals
Topic: Livecode still way too slow....
Replies: 42
Views: 25918

Re: Livecode still way too slow....

Richard, Alas, my own results on Windows remain disappointing. Here is your stack you made from my script running on the same machine side-by side. http://i.imgur.com/KVmTu7v.jpg Oh well.. nothing new I guess for the Windows side. Never heard of B4X before. I'm downloading it now and taking a look. ...
by tjframe
Sun Jan 01, 2017 11:41 pm
Forum: Feature Proposals
Topic: Livecode still way too slow....
Replies: 42
Views: 25918

Re: Livecode still way too slow....

I don't think you should be criticising the speed of the engines themselves; what are probably running more slowly are the stacks that you have authored with all the new capabilities which LiveCode has acquired since version 6.0. Setting the points of a grc are not "new capabilities" I'm talking ab...
by tjframe
Sun Jan 01, 2017 10:41 am
Forum: Feature Proposals
Topic: Livecode still way too slow....
Replies: 42
Views: 25918

Livecode still way too slow....

Hi all, I recently returned to using Livecode (for Windows) for some personal projects, after taking a few years off. To my dismay, the huge speed slowdown (particularity for graphics manipulations) vs older versions is still present. The big cut-off point is 6.5 to 6.5.1 and above. I'm guessing the...
by tjframe
Sun Oct 04, 2009 1:14 am
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 9914

You're trying to *set* the imagepixmapid? That's supposed to be a read-only property... anyway, I think something else is going on with your stack. I regularly export snapshots of cards and even of the entire screen area in a fraction of a second. Yep.. busted! (sheepish grin) It does work, just no...
by tjframe
Sat Oct 03, 2009 9:22 pm
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 9914

OP already tried this and said this is very slow. Best, Mark Only if you call 10 seconds to save a file "slow" :) Not sure what the problem is since have an 8 core machine with 16 gigs of RAM. The card sized group in my test was just a normal sized card with 20 or so controls on it offscreen. Sigh....
by tjframe
Fri Oct 02, 2009 10:55 pm
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 9914

Hi TJ, this appears to work: on mouseUp pMouseBtnNo local tVar export snapshot from rect (the rect of this cd) of this cd to tVar as png put tVar into img 1 end mouseUp Cheers, Malte Hey Malte.. long time no chat! Sorry but that just gives you the CURRENT card size, not the full offscreen buffer. I...
by tjframe
Fri Oct 02, 2009 10:07 pm
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 9914

Ok technically that does work except that I just tried it out with stack of a bunch of controls all grouped into 1 group and had these problems: The background area around the controls renders black (which is not a big deal since I guess you could use a large white grc as a backdrop) But the real pr...
by tjframe
Fri Oct 02, 2009 9:19 pm
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 9914

Mark, No that simply gives you an image of that field.. I need the entire card image. Try this: - create a stack that is 1500 by 1500 -put an image on it in the lower right corner -now resize the stack to 400 by 400 No version of export snapshot that I can come up witth gives you a file that contain...
by tjframe
Fri Oct 02, 2009 8:00 pm
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 9914

That doesn't work - the command does exports a rect larger than the window size but it clips everything to black not currently showing. I need to access the entire card even the clipped portions. For example this used to work: set the imagepixmapID of image miniView to the pixmapID of this stack ..t...
by tjframe
Fri Oct 02, 2009 6:19 pm
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 9914

PixmapID still not workng?

The docs say that its not supported in 2.7.. but I'm running 3.5 and it's still returning a 0. This has broken an old stack I wanted to update as well as put a damper on my plans for some new stuff.

Any other ways to grab the entire bitmap of a stack even when obscured or offscreen?

thanks

- TJ
by tjframe
Fri Sep 25, 2009 4:30 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: DatGrid column not accepting changes
Replies: 2
Views: 3307

Actually I figured it out last night :) I had a space " " after the last char of the name of the column and that is what was causing it to not update the text after closing the cell. Go figure! So I removed the space and all is well again. The weird thing is that I tried to duplicate this "behavior"...
by tjframe
Thu Sep 24, 2009 8:44 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: DatGrid column not accepting changes
Replies: 2
Views: 3307

DatGrid column not accepting changes

Hi all, I'm new to datagrids and have encountered a situation that I hope is easily explained by some incorrectly set property setting or something. Basically I have a grid with like 6 columns and I can click and edit the text of each row and column except that one of the columns reverts back to the...