do we have an AfterTakePreviewPicture (or like so) event in this extension?
There is a Saved photo event, but it doesn't return anything.
Thanks.
Is that mean it saved to getASD +..., why I can't search out with the name of tempxz?
This block will return a list of all the files in your ASD files directory. You can then search that list for your file.

Adjust the directory name accordingly if you want to return the files in another directory in your ASD.
If you are meaning to save your image to the files directory of the ASD, then this is the path:

has it been updated?
What update do you believe you need?
Hi dear Taifun,
I'm new to this forum and to programming, but I'm getting hooked.
My first app I'm working on requires opening the full camera.
I think your "ProCamera.aix" extension might be right for me.
How can I do that?
Starting from the forum, the system suggests I only download the MIT' app, but I already have it.
Can you help me?
Thank you very much.
Paolo
The author or this extension is @Kumaraswamy
As always you can download a free extension on the first post of the corresponding extension thread, which is here
Taifun
You might also consider this ?
I'm looking for an extension that opens the extended version of the system webcam/video with all its features and settings.
Currently, I can only open the basic version of the system webcam (not video and settings).
Do you have anything I can use in my app?
Thank you very much.
ciao
p
See the post above yours
Now i have tried with this but get som Runtime Errors. Can you help?
I had put the .aia file in so you can see.
WeddingBooth.aia (47.8 KB)
You do not set the Procam1.Output to anything, so there is nowhere for the image to be saved!
Perhaps:
This gives no runtime errors when tested with companion, and saves the image to the ASD.
You could always use Clock1.SystemTime + .jpg for a file name
Would also be good to see or hear the countdown - you can overlay a label on the live image with procam.
How can i save the image in download? And how do i use Clock1.SystemTime + jpg for filename?
1
Save to ASD then copy to Download using filescope Legacy
(example here: How do you create a new file using file picker and write to it? - #25 by TIMAI2)
2

Where should i put the global filename?
I dont understand how to save to ASD and then copy, it must be saved in download, without the user to do anything. So automatic.
Here are the basic blocks for taking a picture with Procam, saving the image to ASD, then copying it to Download. (it is just easier for me to do it this way than trying to remember all the permission requirements - if any - for saving directly to Download.
I would hope i could get you to make it in that i already had make. Because i serious dont understand it.
I hope you please will help this one time.
I uploadet the .aia if you would help.
WeddingBooth(1).aia (72.3 KB)
I will break it down for you:

Here we declare variables for the filename and the absolute path used for saving the file in the first instance. We also intialise Procam to a vertical arrangement, and setup the camera for the one facing the user
This procedure generates the absolute path for saving the file. The output is something like this:
/storage/emulated/0/Android/data/<packageName>/files/17602934567.jpg
The Button1.Click event first checks that the camera is active, then sets the filepath variable using the procedure above. We then get just the filename by splitting the currentFilePath e.g. 17602934567.jpg
The output (save location) is set for ProCamera. Procamera then takes a preview picture.
We check that the taken picture exists in the ASD, then we copy the file from the ASD to the Download directory. Finally we check that the file exists in the Download folder.
Apply this logic to the blocks code in your app, and test.





