Calling a second card from a button in the first card
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
-
- Posts: 25
- Joined: Tue Jan 03, 2012 9:10 pm
Calling a second card from a button in the first card
Hi All
I have several applications which call the camera .
I would like to call the camera on a separate card then dismiss it when done.
Any idea where in the docs I would find a clue ?
Bob
I have several applications which call the camera .
I would like to call the camera on a separate card then dismiss it when done.
Any idea where in the docs I would find a clue ?
Bob
Re: Calling a second card from a button in the first card
Hi Bob,
sorry, but I have no idea what you are trying to do!?
Best
Klaus
sorry, but I have no idea what you are trying to do!?

Best
Klaus
-
- Posts: 25
- Joined: Tue Jan 03, 2012 9:10 pm
Re: Calling a second card from a button in the first card
Hi Klaus
I want to call a second card from the first and then be able to close it.
Thanks for all your help !
Bob
I want to call a second card from the first and then be able to close it.
Thanks for all your help !
Bob
Re: Calling a second card from a button in the first card
Hi Bob,
sorry, still have problems with "call a second card... and close it"?
What do mean you with "call"?
Best
Klaus
sorry, still have problems with "call a second card... and close it"?
What do mean you with "call"?
Best
Klaus
-
- Posts: 25
- Joined: Tue Jan 03, 2012 9:10 pm
Re: Calling a second card from a button in the first card
What I want the user to be able to do is hit a button called camera
this will open a second card with the camera controls.
When they are done they hit the close key
this will open a second card with the camera controls.
When they are done they hit the close key
Re: Calling a second card from a button in the first card
Hi Bob,
hmmm, maybe:
?
Best
Klaus
hmmm, maybe:
Code: Select all
## Button "camera":
on mouseup
go cd "the one with the camera controls"
end mouseup
Best
Klaus
Re: Calling a second card from a button in the first card
Bob...
I think that I am as confused as Klaus about what you want to do. To call the camera use the iphonePickPhoto command... for example
You don't have a need to go to another card as the photoPicker is overlaid on top of the card from where it is called.
be well
Dixie
I think that I am as confused as Klaus about what you want to do. To call the camera use the iphonePickPhoto command... for example
Code: Select all
on mouseUp
iphonePickPhoto "rear camera"
end mouseUp
be well
Dixie