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: 5054

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 ...
by tjframe
Wed Feb 15, 2017 7:04 am
Forum: Feature Proposals
Topic: Livecode still way too slow....
Replies: 42
Views: 64002

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 ...
by tjframe
Tue Feb 14, 2017 10:26 am
Forum: Feature Proposals
Topic: Livecode still way too slow....
Replies: 42
Views: 64002

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 ...
by tjframe
Sun Jan 01, 2017 11:41 pm
Forum: Feature Proposals
Topic: Livecode still way too slow....
Replies: 42
Views: 64002

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 ...
by tjframe
Sun Jan 01, 2017 10:41 am
Forum: Feature Proposals
Topic: Livecode still way too slow....
Replies: 42
Views: 64002

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 ...
by tjframe
Sun Oct 04, 2009 1:14 am
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 12445

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 ...
by tjframe
Sat Oct 03, 2009 9:22 pm
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 12445

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 ...
by tjframe
Fri Oct 02, 2009 10:55 pm
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 12445

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 ...
by tjframe
Fri Oct 02, 2009 10:07 pm
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 12445

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 ...
by tjframe
Fri Oct 02, 2009 9:19 pm
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 12445

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 ...
by tjframe
Fri Oct 02, 2009 8:00 pm
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 12445

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 ...
by tjframe
Fri Oct 02, 2009 6:19 pm
Forum: Talking LiveCode
Topic: PixmapID still not workng?
Replies: 15
Views: 12445

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: 4018

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 ...
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: 4018

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 ...