Re: Contesting for Idiot du Jour

2020-09-06 Thread Roger Guay via use-livecode
I’m sorry, I don’t understand your terminology. Could you please elaborate? Thanks, Roger > On Sep 6, 2020, at 10:54 AM, Pi Digital via use-livecode > wrote: > > Pixel math: > > Counting incomplete pixels within a circle outline (%Pass)(%Fail): > 10x10 = 88 (88%)(12%) > 20x20 = 344 (86%)(14%

GABRIELE STROE could you please contact me

2020-09-06 Thread Drs Mark Schonewille via use-livecode
Dear Gabriele Stroe, We (Economy-x-Talk) have tried to contact you in every possible way. We have even tried to call you, but your phone number appears dysfunctional. Please contact me as a as possible by sending an e-mail addres to m.schonewi...@economy-x-talk.com, or contact me on Twitter (

Re: How Do You Get Filename / Image

2020-09-06 Thread Pi Digital via use-livecode
I’ll try that again:: # I’m going to assume this was a hiccup too and now fixed: set the filename of img “slideimage” to (item 1 to -3 of the filename of img “slideimage” & “/_ForWebSite/” & tRelativeURL) > On 6 Sep 2020, at 23:01, Pi Digital via use-livecode > wrote: > > # I’m going to ass

Re: How Do You Get Filename / Image

2020-09-06 Thread Pi Digital via use-livecode
on mouseUp local tRelativeURL -- repeat with x = 1 to (the number of cards of stack “SlideShowSetUp”) --go card x set the itemdelimiter to “/” put (the item -2 to -1 of the filename of img “slideimage” ) into tRelativeURL # this works is: there is a path # 1-ellora/dsc1234

Re: How Do You Get Filename / Image

2020-09-06 Thread Phil Davis via use-livecode
Maybe check the result after your 'put URL... into URL ...' statement. That might give you a hint about the problem. Phil Davis On 9/6/20 2:31 PM, Sannyasin Brahmanathaswami via use-livecode wrote: Looks like that does not work on mouseUp local tImageName, tDestinationPath,tHolder s

Re: How Do You Get Filename / Image

2020-09-06 Thread Sannyasin Brahmanathaswami via use-livecode
Looks like that does not work on mouseUp local tImageName, tDestinationPath,tHolder set the itemdelimiter to "/" put (item -2 to -1 of the filename of img "slideImage") into tImageName put "_ForWebSite/" into tDestinationPath put tDestinationPath & tImageName into tHolder

Re: How Do You Get Filename / Image

2020-09-06 Thread Brian Milby via use-livecode
Looks like you need to specify a full path for the source and destination. on mouseUp local tImageName, tDestinationPath set the itemdelimiter to "/" put (item -1 of the filename of img 1 ) into tImageName put item 1 to -2 of the filename of this stack & "/" into tDestinationPath pu

Re: Contesting for Idiot du Jour

2020-09-06 Thread Pi Digital via use-livecode
Pixel math: Counting incomplete pixels within a circle outline (%Pass)(%Fail): 10x10 = 88 (88%)(12%) 20x20 = 344 (86%)(14%) 100x100 = 8012 (80%)(20%) Counting complete pixels: 10x10 = 48 (48%)(52%) 20x20 = 276 (69%)(31%) 100x100 = 7444 (74.4%)(26%) Your conclusion here: _

How Do You Get Filename / Image

2020-09-06 Thread Sannyasin Brahmanathaswami via use-livecode
Maybe it is aphasia... How do we get file from one location to another location on mouseUp local tRelativeURL -- repeat with x = 1 to (the number of cards of stack “SlideShowSetUp”) --go card x set the itemdelimiter to “/” put (the item -2 to -1 of the