Livecode / Github
Pi Digital
sean at pidigital.co.uk
Thu Sep 1 18:16:44 EDT 2022
I don’t know who coded it but it really does not follow the standard LC conventions. I am going to assume it was someone external to LC so will cut them a huge bit of slack. It’s also very clear English is not their first language so they did pretty well considering.
Here are the steps
Create a new plug-in file using
scCreatePlugin “”,””
This will first ask for a name and then for a folder location to put it. I put it into the MyLivecode folder in a subfolder called SmartCrumbsPlugins
Edit the code as needed and save. Make sure to ONLY do this in LC, not Atom or another text editor.
Next, use
scInstallPlugin “”
This will ask which plug-in to load
Then
scEnabledPlugin “myPlugin”
where myPlugin is the name you have given it, which is not necessarily the same as the file name. This will make sure it is running the next time any SmartCrumbs import/export operation is performed.
To find which plugins are installed and enabled, use
put the keys of scListPlugins (“All”)
To find the path where the logs are saved, use
put scGetPathLog(“”)
or
put scGetPathLog()
Either will work
Sean Cole
Pi Digital Productions Ltd
eMail Ts & Cs
> On 1 Sep 2022, at 22:43, Mark Wieder via use-livecode <use-livecode at lists.runrev.com> wrote:
>
> On 9/1/22 11:25, Sean Cole via use-livecode wrote:
>
>> By the way, here is an update to the plugin code:
>
> Sean- good news that you got it working. How in the world did you manage that? I went through what I think are the right steps:
>
> scCreatePlugin "",""
> edit and save plugin code
> scInstallPlugin pPath
> scEnabledPlugin pPath
> scListPlugins() --- nothing (no array keys)
> scGetPathLog() --- recursion limit reached
>
> --
> Mark Wieder
> ahsoftware at gmail.com
>
> _______________________________________________
> use-livecode mailing list
> use-livecode at lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
More information about the use-livecode
mailing list