Re: Older version of LC vs Windows 10, app not responding

2017-06-20 Thread Geoff Canyon via use-livecode
The app is not code-signed -- that wasn't nearly as much of a thing when I
built it. My friend distributes the app to multiple people. Some with
Windows 10 are running the app with no problem, but this one new user is
having this issue. My friend sent another disc and hasn't heard back, so
fingers crossed the problem resolved. I'm hoping to avoid having to rebuild
and redeliver the app because it's been something like seven years, but
sooner or later it's going to have to be done.

thanks!

gc

On Tue, Jun 20, 2017 at 7:19 PM, tbodine via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Hi Geoff,
>
> You app worked for this same user in the past, but now does not... Did
> Windows 10 break it, or did the user migrate to another machine?
>
> Possible culprits could be the user's security software or IT policies that
> make your app untrusted. Is your app code-signed? Installed in an unusual
> location?
>
> HTH,
> Tom
>
>
>
> --
> View this message in context: http://runtime-revolution.
> 278305.n4.nabble.com/Older-version-of-LC-vs-Windows-10-app-not-responding-
> tp4716021p4716025.html
> Sent from the Revolution - User mailing list archive at Nabble.com.
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: put url tricks to copy files on windows

2017-06-20 Thread Mark Wieder via use-livecode

On 06/20/2017 07:19 PM, Mike Kerner via use-livecode wrote:

I'm not on a mac a lot :-(
So is "binfile:" more universal, or do I have to check the platform,
first?  What is the technique on linux?


As far as I can remember, the "//" has never been recommended or 
approved for file or binfile. I'm surprised it gets parsed properly for 
OSX. You don't need or want it.


--
 Mark Wieder
 ahsoftw...@gmail.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: put url tricks to copy files on windows

2017-06-20 Thread Mike Kerner via use-livecode
I'm not on a mac a lot :-(
So is "binfile:" more universal, or do I have to check the platform,
first?  What is the technique on linux?

On Tue, Jun 20, 2017 at 10:09 PM, Roger Eller via use-livecode <
use-livecode@lists.runrev.com> wrote:

> You're not on a Mac anymore.  ;-p
>
> I second the suggestion to lose the // if the platform is Windows.
>
> ~Roger
>
> On Jun 20, 2017 5:39 PM, "Mike Kerner via use-livecode" <
> use-livecode@lists.runrev.com> wrote:
>
> > In case it helps, here's the entire routine.  This works on a Mac.
> >
> > on copyFilesNFolders fromFolder toFolder
> >   if there is not a folder toFolder then
> > create folder toFolder
> > if the result is not empty then
> >   put the result into theResult
> >   errlog theResult
> >   quit
> > end if #the result is not empty
> >   end if #there is not a folder toFolder
> >
> >   put folders(fromFolder) into folderList
> >   #
> > repeat for each line folderName in folderList
> >   if char 1 of folderName is "." then next repeat
> >   copyFilesNFolders (fromFolder),
> > (toFolder)
> > end repeat #for each line folderName in folderList
> >   #
> >
> >   # > files in the folder>
> > put the defaultFolder into theDefaultFolder
> > set the defaultFolder to fromFolder
> > put the files into theFiles
> > repeat for each line theFile in theFiles
> >   if char 1 of theFile is "." then next repeat #skip all the
> invisible
> > files like .DS_STORE
> >   put fromFolder into fromFile
> >   put toFolder into toFile
> >   if there is not a file toFile then
> > put url ("binfile://" ) into url ("binfile://" )
> > if the result is not empty then
> >   put the result into theResult
> >   errlog theResult
> >   breakpoint
> >   quit
> > end if #the result is not empty
> >   end if #there is not a file toFile
> > end repeat #for each line theFile in theFiles
> > set the defaultFolder to theDefaultFolder
> >   # the
> > files in the folder>
> > end copyFilesNFolders
> >
> > On Tue, Jun 20, 2017 at 5:34 PM, Mike Kerner 
> > wrote:
> >
> > > I'm trying to use the put url technique to copy files on windows, but
> I'm
> > > getting "can't open file"
> > > If I do something like
> > > answer line 1 of url ("binfile://")
> > > I get what I expect, but when I try to
> > > put url ("binfile://") into url ("binfile://")
> > > I get "can't open file" in the result
> > >
> > > --
> > > On the first day, God created the heavens and the Earth
> > > On the second day, God created the oceans.
> > > On the third day, God put the animals on hold for a few hours,
> > >and did a little diving.
> > > And God said, "This is good."
> > >
> >
> >
> >
> > --
> > On the first day, God created the heavens and the Earth
> > On the second day, God created the oceans.
> > On the third day, God put the animals on hold for a few hours,
> >and did a little diving.
> > And God said, "This is good."
> > ___
> > use-livecode mailing list
> > use-livecode@lists.runrev.com
> > Please visit this url to subscribe, unsubscribe and manage your
> > subscription preferences:
> > http://lists.runrev.com/mailman/listinfo/use-livecode
> >
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: put url tricks to copy files on windows

2017-06-20 Thread Roger Eller via use-livecode
You're not on a Mac anymore.  ;-p

I second the suggestion to lose the // if the platform is Windows.

~Roger

On Jun 20, 2017 5:39 PM, "Mike Kerner via use-livecode" <
use-livecode@lists.runrev.com> wrote:

> In case it helps, here's the entire routine.  This works on a Mac.
>
> on copyFilesNFolders fromFolder toFolder
>   if there is not a folder toFolder then
> create folder toFolder
> if the result is not empty then
>   put the result into theResult
>   errlog theResult
>   quit
> end if #the result is not empty
>   end if #there is not a folder toFolder
>
>   put folders(fromFolder) into folderList
>   #
> repeat for each line folderName in folderList
>   if char 1 of folderName is "." then next repeat
>   copyFilesNFolders (fromFolder),
> (toFolder)
> end repeat #for each line folderName in folderList
>   #
>
>   # files in the folder>
> put the defaultFolder into theDefaultFolder
> set the defaultFolder to fromFolder
> put the files into theFiles
> repeat for each line theFile in theFiles
>   if char 1 of theFile is "." then next repeat #skip all the invisible
> files like .DS_STORE
>   put fromFolder into fromFile
>   put toFolder into toFile
>   if there is not a file toFile then
> put url ("binfile://" ) into url ("binfile://" )
> if the result is not empty then
>   put the result into theResult
>   errlog theResult
>   breakpoint
>   quit
> end if #the result is not empty
>   end if #there is not a file toFile
> end repeat #for each line theFile in theFiles
> set the defaultFolder to theDefaultFolder
>   # files in the folder>
> end copyFilesNFolders
>
> On Tue, Jun 20, 2017 at 5:34 PM, Mike Kerner 
> wrote:
>
> > I'm trying to use the put url technique to copy files on windows, but I'm
> > getting "can't open file"
> > If I do something like
> > answer line 1 of url ("binfile://")
> > I get what I expect, but when I try to
> > put url ("binfile://") into url ("binfile://")
> > I get "can't open file" in the result
> >
> > --
> > On the first day, God created the heavens and the Earth
> > On the second day, God created the oceans.
> > On the third day, God put the animals on hold for a few hours,
> >and did a little diving.
> > And God said, "This is good."
> >
>
>
>
> --
> On the first day, God created the heavens and the Earth
> On the second day, God created the oceans.
> On the third day, God put the animals on hold for a few hours,
>and did a little diving.
> And God said, "This is good."
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: how to download an image

2017-06-20 Thread Matt Maier via use-livecode
Just following up for posterity.

The livecode team figured out that setting the httpheaders to empty solved
the problem, or at least part of it.
I was setting them to connect to the API that sends the link for the image.
Now setting them to empty before trying to download the image partly works.

It works for "put url"; the image file shows up and isn't corrupted.
It hasn't worked for libURLdownloadToFile; the image file doesn't show up.

On Sun, Jun 4, 2017 at 1:19 PM, Mark Wieder via use-livecode <
use-livecode@lists.runrev.com> wrote:

> I dunno. Here's what I just did and it loaded the image with no problems.
> All 97,183 bytes worth. Do you have write permission to the folder you're
> downloading to?
>
> on mouseUp
>local tImgUrl
>local tImgName
>local tNewFile
>constant tNewFolder="/home/mwieder/Desktop"
>
>put "//s3.amazonaws.com/appforest_uf/f1496548544475x140387106221
> 169240/grilled_cheese_on_plate.jpg" into tImgUrl
>
>put "https:" & tImgUrl into tImgUrl
>set itemdelimiter to "/"
>put item -1 of tImgUrl into tImgName
>set itemdelimiter to comma
>put tNewFolder & "/" & tImgName into tNewFile
>libURLDownloadToFile tImgUrl,tNewFile, "finished"
> end mouseUp
>
> on finished
>answer "All Done"
> end finished
>
>
> --
>  Mark Wieder
>  ahsoftw...@gmail.com
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Older version of LC vs Windows 10, app not responding

2017-06-20 Thread tbodine via use-livecode
Hi Geoff,

You app worked for this same user in the past, but now does not... Did
Windows 10 break it, or did the user migrate to another machine?

Possible culprits could be the user's security software or IT policies that
make your app untrusted. Is your app code-signed? Installed in an unusual
location? 

HTH,
Tom



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Older-version-of-LC-vs-Windows-10-app-not-responding-tp4716021p4716025.html
Sent from the Revolution - User mailing list archive at Nabble.com.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: put url tricks to copy files on windows

2017-06-20 Thread Mike Kerner via use-livecode
In case it helps, here's the entire routine.  This works on a Mac.

on copyFilesNFolders fromFolder toFolder
  if there is not a folder toFolder then
create folder toFolder
if the result is not empty then
  put the result into theResult
  errlog theResult
  quit
end if #the result is not empty
  end if #there is not a folder toFolder

  put folders(fromFolder) into folderList
  #
repeat for each line folderName in folderList
  if char 1 of folderName is "." then next repeat
  copyFilesNFolders (fromFolder),
(toFolder)
end repeat #for each line folderName in folderList
  #

  #
put the defaultFolder into theDefaultFolder
set the defaultFolder to fromFolder
put the files into theFiles
repeat for each line theFile in theFiles
  if char 1 of theFile is "." then next repeat #skip all the invisible
files like .DS_STORE
  put fromFolder into fromFile
  put toFolder into toFile
  if there is not a file toFile then
put url ("binfile://" ) into url ("binfile://" )
if the result is not empty then
  put the result into theResult
  errlog theResult
  breakpoint
  quit
end if #the result is not empty
  end if #there is not a file toFile
end repeat #for each line theFile in theFiles
set the defaultFolder to theDefaultFolder
  #
end copyFilesNFolders

On Tue, Jun 20, 2017 at 5:34 PM, Mike Kerner 
wrote:

> I'm trying to use the put url technique to copy files on windows, but I'm
> getting "can't open file"
> If I do something like
> answer line 1 of url ("binfile://")
> I get what I expect, but when I try to
> put url ("binfile://") into url ("binfile://")
> I get "can't open file" in the result
>
> --
> On the first day, God created the heavens and the Earth
> On the second day, God created the oceans.
> On the third day, God put the animals on hold for a few hours,
>and did a little diving.
> And God said, "This is good."
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: put url tricks to copy files on windows

2017-06-20 Thread Matthias Rebbe via use-livecode
Mike,

please remove the // from your code and it should work.
And of course make sure that you have write permission to the folder you are 
writing to.

Regards,
Matthias


Matthias Rebbe
+49 5741 31
‌matthiasrebbe.eu ‌

> Am 20.06.2017 um 23:34 schrieb Mike Kerner via use-livecode 
> >:
> 
> I'm trying to use the put url technique to copy files on windows, but I'm
> getting "can't open file"
> If I do something like
> answer line 1 of url ("binfile://")
> I get what I expect, but when I try to
> put url ("binfile://") into url ("binfile://")
> I get "can't open file" in the result
> 
> -- 
> On the first day, God created the heavens and the Earth
> On the second day, God created the oceans.
> On the third day, God put the animals on hold for a few hours,
>   and did a little diving.
> And God said, "This is good."
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com 
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode 
> 



Matthias Rebbe
+49 5741 31
‌matthiasrebbe.eu ‌

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

put url tricks to copy files on windows

2017-06-20 Thread Mike Kerner via use-livecode
I'm trying to use the put url technique to copy files on windows, but I'm
getting "can't open file"
If I do something like
answer line 1 of url ("binfile://")
I get what I expect, but when I try to
put url ("binfile://") into url ("binfile://")
I get "can't open file" in the result

-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Older version of LC vs Windows 10, app not responding

2017-06-20 Thread Geoff Canyon via use-livecode
I built an app for a friend of mine many years ago, I think with version
6.x of LC. He in turn has a customer running the app on Windows 10. Other
Windows 10 users aren't having an issue, but this one is getting a display
that says the app is "Not Responding".

I know that's vague, but I figured I'd throw it out there to see if anyone
has an idea.

thanks,

Geoff
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Standalonebuilder destination folder is being ignored

2017-06-20 Thread J. Landman Gay via use-livecode
The destination in the Copy Files pane is intended for files that are 
referred to by reference, such as images. The list of files in that pane 
says it is for "non-stack" files.


Try adding your stack to the Stacks pane instead.

On 6/20/17 8:26 AM, Tiemo Hollmann TB via use-livecode wrote:

Hello,

  


LC 8.1.4: I added an additional stack file "foo2" to the "copy Files"
section in the standalone builder settings (of stack "foo1") and have set
the destination folder to "Resources"

The additional stack files source "foo2" is in the same folder, as the main
stack "foo1".

Expected result: the stack "foo2" would be copied to the standalones
subfolder /resources

Shown result: the stack "foo2" is copied into the same folder, as the
standalone "foo1" (same structure as the source) and the destination folder
is being ignored.

  


Am I expecting something wrong or is this a bug?

Tiemo

  

  


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode




--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Preference for Keeping Saved Empty Button Scripts Empty

2017-06-20 Thread Kevin Miller via use-livecode
Sooner would have been better. However just in case you missed it, the
architecture has been available to play with for many months and a native
field for Android is doable in 9-dp-7 posted last week. You have to change
a few words in Ali¹s native button LCB file - he explained which ones in
his talk. We¹ll follow with a blog post on that too shortly. There is a
widget course available https://livecode.com/topic/introduction-2/ now
which covers getting started with widgets. We will add in the info about
the FFI layer to that course shortly. We will also modify the object Ali
supplied to cover a whole variety of other native controls from the tools
palette given each is just a tweak to that LCB. Its all in there and open
source right now. Objective-C (and thus iOS) will be in DP 8.

Kind regards,

Kevin

Kevin Miller ~ ke...@livecode.com ~ http://www.livecode.com/
LiveCode: Everyone can create apps




On 20/06/2017, 16:13, "use-livecode on behalf of Andrew Bell via
use-livecode"  wrote:

>I'd have a little more faith in crowd funding app features if the
>Native Field Object that I contributed for a year ago was available.
>
>https://livecode.com/project/infinite-livecode-native-field-object/
>
>--Andrew Bell
>
>> Message: 6
>> Date: Mon, 19 Jun 2017 16:57:30 -0400
>> From: Mike Kerner 
>> To: How to use LiveCode 
>> Subject: Re: Preference for Keeping Saved Empty Button Scripts Empty
>> Message-ID:
>>  
>> Content-Type: text/plain; charset="UTF-8"
>>
>> and another case where we should have a little crowd fund setup.
>>
>> On Mon, Jun 19, 2017 at 4:00 PM, Bob Sneidar via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>>
>>> +1
>>>
>>> > On Jun 19, 2017, at 12:49 , J. Landman Gay via use-livecode <
>>> use-livecode@lists.runrev.com> wrote:
>>> >
>>> > Right, but every time you open the script and then close it again, it
>>> keeps asking if you want to save the default. It gets irritating.
>>> >
>>> > I sometimes just replace the default entry with a single space and
>>>save
>>> it that way. Then it doesn't ask me again.
>>> >
>>> > I wouldn't mind a preference to turn off the default scripts.
>>> > --
>>> > Jacqueline Landman Gay | jac...@hyperactivesw.com
>>> > HyperActive Software   | http://www.hyperactivesw.com
>>>
>>>
>>> ___
>>> use-livecode mailing list
>>> use-livecode@lists.runrev.com
>>> Please visit this url to subscribe, unsubscribe and manage your
>>> subscription preferences:
>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>>>
>>
>
>
>
>___
>use-livecode mailing list
>use-livecode@lists.runrev.com
>Please visit this url to subscribe, unsubscribe and manage your
>subscription preferences:
>http://lists.runrev.com/mailman/listinfo/use-livecode



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Preference for Keeping Saved Empty Button Scripts Empty

2017-06-20 Thread Mike Kerner via use-livecode
Which is exactly why this is a better idea.  Kickstarter releases the funds
when the funding goal is achieved, not when the product is finished.  This
idea is the reverse.
1. We set up the account
2. We fund the account
3. We administer the account
4. We decide which projects we want to fund at what amount
5. We, in effect, put out a bid sheet for the work.
6. We test and pay out once someone has developed a solution that we accept.

I see two different ways of setting this up, and we could do both.
Way 1 - the "Buy in to get access" way:
Idea proposed
Everyone who "buys in" gets the end product - similar to the LC Global Open
API product
Folks send in their funds
The funds are held in escrow
If the product is built and accepted, the funds are released.  If not, the
funds are returned.

Way 2 - the "shareholder" way:
I envision this being for more widespread release projects, e.g.
the dictionary redo
Folks buy shares.  Let's say each share costs $10.
Shareholders prioritize projects and put a price on each, via votes.  Each
share gets a vote, as you would expect.
Someone goes after one of the projects.
The project is completed and accepted by the shareholders on behalf of the
community.
The funds are released.

We can do this with bitcoin, or dollars, or whatever.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Preference for Keeping Saved Empty Button Scripts Empty

2017-06-20 Thread Richmond Mathewson via use-livecode
. . . if all of the crowd funding features from the Kickstart campaign 
in 2013 . . .


There may not be much point banging on about these things.

R.

On 6/20/17 6:13 pm, Andrew Bell via use-livecode wrote:
I'd have a little more faith in crowd funding app features if the 
Native Field Object that I contributed for a year ago was available.


https://livecode.com/project/infinite-livecode-native-field-object/

--Andrew Bell


Message: 6
Date: Mon, 19 Jun 2017 16:57:30 -0400
From: Mike Kerner 
To: How to use LiveCode 
Subject: Re: Preference for Keeping Saved Empty Button Scripts Empty
Message-ID:

Content-Type: text/plain; charset="UTF-8"

and another case where we should have a little crowd fund setup.

On Mon, Jun 19, 2017 at 4:00 PM, Bob Sneidar via use-livecode <
use-livecode@lists.runrev.com> wrote:


+1

> On Jun 19, 2017, at 12:49 , J. Landman Gay via use-livecode <
use-livecode@lists.runrev.com> wrote:
>
> Right, but every time you open the script and then close it again, it
keeps asking if you want to save the default. It gets irritating.
>
> I sometimes just replace the default entry with a single space and 
save

it that way. Then it doesn't ask me again.
>
> I wouldn't mind a preference to turn off the default scripts.
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode







___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Preference for Keeping Saved Empty Button Scripts Empty

2017-06-20 Thread Andrew Bell via use-livecode
I'd have a little more faith in crowd funding app features if the  
Native Field Object that I contributed for a year ago was available.


https://livecode.com/project/infinite-livecode-native-field-object/

--Andrew Bell


Message: 6
Date: Mon, 19 Jun 2017 16:57:30 -0400
From: Mike Kerner 
To: How to use LiveCode 
Subject: Re: Preference for Keeping Saved Empty Button Scripts Empty
Message-ID:

Content-Type: text/plain; charset="UTF-8"

and another case where we should have a little crowd fund setup.

On Mon, Jun 19, 2017 at 4:00 PM, Bob Sneidar via use-livecode <
use-livecode@lists.runrev.com> wrote:


+1

> On Jun 19, 2017, at 12:49 , J. Landman Gay via use-livecode <
use-livecode@lists.runrev.com> wrote:
>
> Right, but every time you open the script and then close it again, it
keeps asking if you want to save the default. It gets irritating.
>
> I sometimes just replace the default entry with a single space and save
it that way. Then it doesn't ask me again.
>
> I wouldn't mind a preference to turn off the default scripts.
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode







___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Desktop Fork Menu for Mobile Picker

2017-06-20 Thread Sannyasin Brahmanathaswami via use-livecode
OK , who knew we would be building for mobile first, and *then* go fishing for 
a desktop solution to the same requirement?

this is too easy:
-
sort tList
put "All" & cr before tList
mobilePick tList, "cancel"
if the result is 0 then
put empty into tModule
else
put line (the result) of tList into tTitle


Anyone have a "widget" separate control that we can use for desktop to "drop 
into" this scenario?

sort tList
put "All" & cr before tList

if the environment is "mobile" then
mobilePick tList, "cancel"
else
### what?
end if

if the result is 0 then
put empty into tModule
else
put line (the result) of tList into tTitle

BR

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Preference for Keeping Saved Empty Button Scripts Empty

2017-06-20 Thread Sannyasin Brahmanathaswami via use-livecode
A work in progress

http://quality.livecode.com/show_bug.cgi?id=19905



 

On 6/19/17, 2:35 PM, "use-livecode on behalf of Sannyasin Brahmanathaswami via 
use-livecode"  wrote:

ha… that's a simple hack… I might use 



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

AW: Standalonebuilder destination folder is being ignored

2017-06-20 Thread Tiemo Hollmann TB via use-livecode
Sorry, forgot to mention the dev platform Win 10


-Ursprüngliche Nachricht-
Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag
von Tiemo Hollmann TB via use-livecode
Gesendet: Dienstag, 20. Juni 2017 15:27
An: LiveCode User Liste senden 
Cc: Tiemo Hollmann TB 
Betreff: Standalonebuilder destination folder is being ignored

Hello,

 

LC 8.1.4: I added an additional stack file "foo2" to the "copy Files"
section in the standalone builder settings (of stack "foo1") and have set
the destination folder to "Resources"

The additional stack files source "foo2" is in the same folder, as the main
stack "foo1".

Expected result: the stack "foo2" would be copied to the standalones
subfolder /resources

Shown result: the stack "foo2" is copied into the same folder, as the
standalone "foo1" (same structure as the source) and the destination folder
is being ignored.

 

Am I expecting something wrong or is this a bug?

Tiemo

 

 

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Standalonebuilder destination folder is being ignored

2017-06-20 Thread Tiemo Hollmann TB via use-livecode
Hello,

 

LC 8.1.4: I added an additional stack file "foo2" to the "copy Files"
section in the standalone builder settings (of stack "foo1") and have set
the destination folder to "Resources"

The additional stack files source "foo2" is in the same folder, as the main
stack "foo1".

Expected result: the stack "foo2" would be copied to the standalones
subfolder /resources

Shown result: the stack "foo2" is copied into the same folder, as the
standalone "foo1" (same structure as the source) and the destination folder
is being ignored.

 

Am I expecting something wrong or is this a bug?

Tiemo

 

 

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LC Global - my experience

2017-06-20 Thread Roger Eller via use-livecode
On Mon, Jun 19, 2017 at 8:37 PM, james--- via use-livecode <
use-livecode@lists.runrev.com> wrote:

> I must admit it did turn out better than I was expecting.
> The prerecording of the demos/lessons/walk throughs is an excellent idea.
> Now if it is only taken to the next step.
> 1. Have a script.
> 2. Use the script
> 3. Use a proper microphone (headset one will do)
> 4. Edit the thing to remove superfluous activity (like scrolling back and
> forwards, swapping "screens" to find something etc.)
> 5. LC to buy Heather a proper webcam or whatever so that her view (well,
> our view of her) is at eye level.
> 6 and finally, use the script that you wrote for your lesson/demo/walk
> through ;-)
>
> James
>

I *really* like the format of the "All About Android" show on TWiT.  Of
course they have a budget for a studio, a dedicated human video pro
controlling camera switching, etc.  What I like most is that the remote
guests are shown on large screens beside the host, as if everyone is in the
same room.  Check it out.

https://twit.tv/shows/all-about-android

~Roger
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode