Hide Button When Capture Screen!! n Pop Up!!???

i’m new in unity and C#…!! i have button capture to my App, but i have a little problem.when i prees it, all component is capture (button). i want to hide button my App on the screen.

  1. how i can fix this??

my Script only using this function :
////

Application.CaptureScreenshot(“H:/capture”);

2)i cant think more further, to create pop up when i press capture button. how i can do that with option “save” n “delete”?
i have been create script to show pop up using OnGUI, but its not integrated with my capture button. i cant show the script because , i’m far from my home now! need help…

  1. i will save my capture to picture/photos folder (internal memory) in android phone. but my script cant find the path my phone, if success for my phone, for another phone is failed . how i can create automatic saving in that folder?

sorry for my many question. and sorry i cant show the script, 'im so far from home now and my computer :frowning: !! help me master!

When the capture screenshot button is pressed, set a variable to say that a screen capture has been requested. In the next OnGUI() use this variable to decide whether to display the GUI or not. Maybe do the capture in an OnPostRender().