Search found 3 matches

by septic
Mon Apr 02, 2018 9:21 am
Forum: Internet
Topic: Httpdstart
Replies: 5
Views: 9511

Re: Httpdstart

Hi, will Httpdstart work with SSL connections? how do we setup the certificates??
Thanks
Mario
by septic
Sun Mar 25, 2012 10:16 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Draw a line inside of an existing image
Replies: 2
Views: 3897

Re: Draw a line inside of an existing image

Great Jean-Marc!
I completely missed the drag command!

This work perfectly:

on mouseUp
set the penColor to "green"
set the penHeight to 5
set the penWidth to 5
choose line tool
drag from 0,0 to 50,50 -- in an existing image, of course
choose browse tool
end mouseUp

Thanks for the help ...
by septic
Sat Mar 24, 2012 8:44 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Draw a line inside of an existing image
Replies: 2
Views: 3897

Draw a line inside of an existing image

This should be easy, but I'm puzzled....

I have an image, and I want to draw a simple line (with my penColor , penHeight end penWidth ) inside the same image object. How do I do this with code ?

I dont want to fiddle with the imageData ... way too complicated.
Overlaying a graphic with a line on ...