So for this app I will have a list of names that the user will create, and when they click on the name it will show them various information they have written about that name. What I am struggling with right now is how to edit that other information.
I’m not sure what blocks to use, I have tried using a change variable block but I don’t get the old variable to change fully or the app crashes.
I can’t create a link to the project right now as I keep getting an error message
first I throw all info into separate lists. each list is the same length meaning that spot 1 in each list is only information about the first thing and so on for each item
So I went ahead and I have done a bit of a run around that works!!
So when I select an item on my list view I am going ahead and saving it as a new App variable. I will then use that Variable to populate an “edit screen” which acts like my add screen and will allow the user to edit as needed. Below are the blocks I used
One thing I would be interested just as a parting note to this thread, is I am wondering how I would go about having the app itself remove the "edited"data. What I get now is My list viewer say with the name Rex. The user then goes in to edit that Rex is now a Neutered Male and when they return to the list viewer the user will see Rex and Rex. I figure it wouldn’t be too much to have the user delete the old file (may even help serve for records/if they made an error) but I was wondering if you guys had any insight as to how I might do that? I currently delete files as the code shows below, but if I duplicate the “From list remove # index” and put it on the first piece of code above, it doesn’t work out.