uot; class="middle">Address</td><td style="width:800px">No/Name
<input type="text" name="ecHouse" id="ecHouse" size="10" maxlength="25" value="71" onChange="modified()" class="vAddress&
Peter,
I think the piece of info we are all missing (or guessing wrongly about) is:
the existing club membership system - is it a web-based system, or an app that
runs on your desktop.
We're all kind of assuming it's a web page, but I now suspect maybe it isn't.
If it is a web page - then the
Peter Reid wrote:
> We want a way to upload a group of new members by 'driving' the input
> fields, i.e. our app would click into each field, checkbox, radiobox
> and 'type' in the details.
If the goal is to submit new member info you can do that with a single
POST command.
Examine the source
Thanks Alex, Dan & Tom for responding to this, but I suspect that I didn't
explain things well enough, let me elaborate…
1. Periodically we have small batches of new members joining a club. We have
their details in a CSV file which we'd normally think of doing some kind of
batch upload.
2. How
If it's a simple html form then you could POST the form data to the server
directly from within livecode. There is a short guide for doing so here
https://livecode.byu.edu/internet/aboutForms.php and here
https://livecode.byu.edu/internet/postMethodSteps.php
put urlEncode(fld "fullname") into tN
Hi Peter,
just checking if I have understood this right.
I think you have a website / webpage which allows the user to view /
update a single entry (i.e. "manual on-line form with 20+ fields").
If that is the case, I'd consider writing an app to take in the file of
rows of details, and inser
I don't know about moving the mouse around but u can have a fake png of
a cursor move around...and then send mouseUps to buttons. and also u
can put text into a field 1 character at a time to simulate typing.
This is entirely doable in LC.
On Wed, Dec 8, 2021 at 9:06 AM Peter Reid via use
I'm trying to provide an upload facility for an existing on-line club
membership app. This app has a bulk loading facility for initial set up and is
designed for whole database configuration. In addition the app provides a
manual on-line form with 20+ fields making up a member's record.
Ideally