answer this question

If your camera is open in the background, (see the app in which is open view (double tap of the "home" button). The camera is still on but viewfinder is not. Please leave a reply thank you

If the camera is not the application you use, it does nothing. It is suspended. He is not doing anything. There is no need to force close (or any other application), unless there is a problem with the application.

Perhaps if you explained the reason behind this question, you will get the best answers.

Tags: iPhone

Similar Questions

  • El Capital is compatible with the MacBook Pro version 10.10.5? Can anyone help answer this question before I update? Thanks in advance.

    El Capital is compatible with the MacBook Pro version 10.10.5? Can anyone help answer this question before I update? Thanks in advance.

    Why did you start a new post? Post again only after only 8 minutes accomplished nothing.

    There is no general problem going to EL Capitan on your Mac.

    Some applications may require updating.

    Some devices like printer may require the updated drivers. For some readers of devices not being updated are available.

    This is the Office Mac Pro forum. I asked that your post be moved to the El Capitanforum or another appropriate forum.

    Please move to the EL Capitan forum or another appropriate forum. Thank you

  • 3 of the 6 slides quiz show "you have not answered this question completely" in the first entry of slide

    I'm working on a project in Captivate 5. I have distributed 6 slides of question about the whole project. Q1 - 3 are working very well, at the entrance to the Q4 - 6 slide, the learner receives the message "you have not answered this question completely" even if it's the first time, they enter the page. They get stuck, just have a 'return' to them button returns to the previous page, in the output of the previous page, they receive the same message again. No retry option. The only way forward is to use the button next to the playback bar.

    The parameters of my 6 questions are the same (classified, 3 attempts, continue on the success and the last attempt).

    I figured it was because I had duplicated the question slides in order not to have to do all the formatting again (would be curious to know: I can do it without problem?) - but it seems that this was not the reason. I created 2 of 3 does not q from scratch and still have the same question.

    Then, I thought it's because by clicking on an icon on the previous page, they can move to page Q without listening to the entire slide - that solved the problem in preview, but after publication it came again.

    I'm totally lost here - would appreciate help from experts!

    Thank you


    Anja

    This "you have not answered this question" message normally appears only once the user has tried the test at least once and review Quiz button has been clicked on the Quiz results page.

    However, it may also appear if Captivate think user jumped out of the reach of quiz, then jumped into the new.  At that time, Captivate blocks all questions and show this message for any question unanswered.

    So there must be something on your project, you have not told us until now.  Where's the Quiz results for this project page?  AFTER all the questions quiz is 6 located?  Is your project using maybe ramification that could Captivate think that you skipped range outdoor quiz?

  • Motorola. Please answer this question of Lollipop

    Please do not close or block this thread until someone from Motorola it responds.

    Please give an answer to this question p.

    Pure Edition Moto X 2014 owners should expect carriers to send lollipop before Motorola will be?

    Thank you

    A SUPER FRUSTRATED owner, getting no not her lollipop!


  • When I connect my IPhone Windows close Explorer (Mac not answered this question, if I am here). __

    I have a 3 G IPhone, the current version 3.1.
    Some time before, do not know if has been after an upgrade of the software of the IPhone or a download of an update from Microsoft, the Windows Vista start to have this problem.
    Whenever I plug in the IPhone, it closes Windows Explorer (and any program using Windows Explorer).
    If I try to open Windows Explorer, it get me a unidentified problem and it closes.
    I posted this question on the support of the IPhone almost 3 weeks ago. Not got a response. I have to admit that IPhone support sucks well enough.
    Anyway, going to solve the problem, any idea autour?
    I am running VISTA Business SP2 on a Dell Latitude E6400, Duo Core 2.54 GHZ, 4 GB RAM, 250 GB HDD, 512 MB Nvidia graphics card.
    Thanks in advance

    PS: the firewall is not the issue.

    Fabrizio Diantina Hello,

    Thanks for posting on the Microsoft answers Forum.

    In your error message, the failed module shows as: nvCplUI.exe.
    It comes to NVIDIA Control Panel Application. You can go and disable this application and try again to connect to your iPhone.

    With the help of a clean boot helps you also find what program or software causing a conflict with the Windows Explorer and iPhone.
    Click the number of the KB article below for assistance in establishing a clean boot.

    KB 929135 - how to solve a problem by performing a clean boot in Windows Vista or in Windows 7.

    I hope this helps.

    Sincerely,

    Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • How to convert ObjectProxy object [no one can answer this question?  :(]

    Hello

    Calling a web service with the resultFormat value e4x. When I get the result, it is in XML format. What I need is to convert it to a custom type, object of value (which is actually a class generated from WSDL). I couldn't find a way to do this. So I used a SimpleXMLDecoder to decode for a generic object. Now my problem is that all objects nested inside this generic object are of type 'ObjectProxy '. So I can't convert them my nested valuables.

    So now I finally need is one of the 2 following things:

    1. a way to convert the ObjectProxy to my custom type value object.

    Or

    2. a way to directly analyze the XML result to my type of Custom value object.

    Please let me know if I need to provide some details.

    Help, please... This one is really kill me now...

    Thanks in advance!

    I know the poster original for that matter will probably not get it, but it is not the intention of this post... I just spent the last 6 hours trying to find the answer to the question: How do I convert an ObjectProxy to my object?

    Well here is the answer for any other googlers who find this post (as it is on the first page of results for "objectproxy object cast")

    Let's say you have a service call which returns a generic object type.  "In the SOAP, you might see the xml tag resulting as.  In flex, it almost always will convert this to an ObjectProxy class.  You will find that out the object isn't exactly simple and cast to the desired type is also is no more.

    Here's how you do it, and it's actually VERY simple once you know what you need to do:

    First of all, you must convert the ObjectProxy in an object type.  To do this, you must use the namespace "object_proxy" itself.  Here's the code to do

    Import mx.utils.ObjectProxy;

    Import mx.utils.object_proxy;

    var myObjectProxy:ObjectProxy = new ObjectProxy (myStronglyTypedObject);

    var obj:Object = myObjectProxy.object_proxy::object;

    This code there will be 'myObjectProxy' and pull on the original object in a general object variable (NOTE: the reference to object is read only according to the docs.)  It is only half the battle though, as at the time, you still need to throw your object to return.  I've read in several sources that you can use a method "as MyType" to convert the object from there, but I couldn't get this to work.  Traditional molding (i.e. MyType (obj)) leads to a runtime error as well.  They can work for you if call proxy your object from an existing flex object, but will NOT work if you tire of an ObjectProxy response service.  Either way, however, the solution is just shorter to type in the case that you he shot of an intervention of service call:

    import com.adobe.serializers.utility.TypeUtility;

    obj = com.adobe.serializers.utility.TypeUtility.convertToStrongType (obj, MyType);

    (if you are unable to access this method, you should probably add the serializers.swc of the framework to your build path:)

    Adobe Flash Builder 4.5 root Directory\eclipse\plugins\com.adobe.flexbuilder.project_4.5.1.313231\dcradSwcs\4.5\libs\s erializers.swc

    This will convert your object to the type you want it to be.

    AND YOUR DONE.  No more looking for people to answer full and not more to convert your service calls to e4x instead.

    Now, if you want to know why it works but casting is not sticking around... If you don't like it, don't waste your time to read the rest of the present:

    Why that your other service calls can analyze data from a response xml SOAP at any predefined by the SOAP service, but casting this type proxy version does not work?

    Your service calls are generated dynamically from the SOAP data, then of course flex "just don't know" how to do... and your SOAP objects do not extend the object class... so what gives?

    If you look at the web service generated dynamically in flex code, you will see that each service call says what should be the result type.  Then the whole AbstractOperation (your client-side web service class) is given a convertResultHandler function that retrieves the data from the result and converts the type defined by the service.  You will not get very far just look at the code if it's away from the abstract.  But if you look at the code of serializers.swc update (you'll have to decompile it) will give you an idea of what it is that makes handler function.  Basically, this handler function takes and checks whether it is an ArrayCollection/table collection or an object and then differs from conversion of the object/table to separate the functions called 'convertToStrongType' and 'convertListToStrongType '.  These functions take a class in your object, convert it and return the past of conversion class.  Bingo.

    Now, you'll see that you can take this object and use the functions convertToStrongType and convertListToStrongType with the EFA serializers to run the conversions you need.  The advantage of this is that these functions are the SAME FUNCTIONS ACCURATE who manage the conversion of your objects in the webservice result, so you can pretty much bet that you will lose all the data like you would with reflection level unique and such utilities.

    As a side of the usefulness of this note.  If you have a c# return of web service which returns a type of list object, which means you can run in all kinds of different items in the same list, then you can use this in conjunction with a mark of the object function to determine the object type to perform conversions.

    I REALLY hope this helps some other people to save themselves from pulling their hair or lose whole days trying to figure the answer before moving on to some power of the wall facility that will make your code more complex!

  • BlackBerry smartphones, for that I need a few RIM experts answer this question.

    This isn't really a problem of java development, but I'm not expert on the general forum. I arrived there just the other day and a guy was ranting and raving on this is terrible, the storm is compared to the iPhone.

    I have pointed out errors in his way and man, there is a lot of emotion there and a lot of very bored customers.

    I think that I calmed down most of them, but I think more about the inner workings than most, they all ask the same questions.

    The questions are basically, there are 2 main questions.

    1. the phone resets several times a day on its own. No rhyme or reason to it. I have heard of a mission that removing the SIM card algtogether might fix this sometimes. Is there a way to reset your SIM card to the factory settings?

    2. the second problem is more difficult to classify. There might be several problems, but I suspect that there is a big underlying problem. It's that everything is working properly. Things like him taking 2 minutes to take a photo or for the phone record horizontal to vertical. This kind of thing.

    If an expert he can suggest a solution or if there is a known problem that occurs and there is a difficulty, I can relay this back to them.

    One possibility is to clean the memory and restore factory. Is it possible to do so. I know that javaloader ordered a memory wipe. However, I do not know if the State of entire plant is available in EDGE tools that we installed all.

    Or post you here...

    http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=9500&thread.ID=20486&view=by_date_asc...

    Please close it when you did that, then it does not clutter this forum.

    I feel sorry for these guys (those who are not madmen :-) and they need help.)

    Thank you guys.

    -Donald

    We have several storms and they all have the following symptoms:

    After running for about 4 days, the system significantly slows down. You see demonstrations continuous hourglass, which means that the G.C. is overtime. A hard reset Erases (battery pull) the problem for another 4 days.

    Sometimes, the phone becomes hot all of a sudden and burn the battery in about 30 minutes. If it's in your pocket, it is immediately noticeable and you pull the battery to clear up the issue. However, if the phone is, you won't notice. Several times, I put the phone down, then took a phone completely dead (and hot) an hour later. After charging the battery, you must reset the date and restore network connections, while he was REALLY DEAD.

    Now, we have repeatedly stopped all 3rd party programs and the problem is not clear up. We keep waiting for this next OS update that solves problems.

  • Anyone who can please answer this question please!

    My HP Jet 7 has a monitoring device on this subject that I need to know because my Tablet just got stolen about 13:00 today.

    Hello

    Very sad to say no.

    Kind regards.

  • can u answer this question?

    I have a laptop with windows vista

    chip type: Mobile Intel (R) 4 Series Express Chipset Family

    and I can't start the mass effect 2 and I almost tried everything. Please if anyone can tell me what I can do I would really appreciate it.

    Thank you

    Graphics cards Intel don't are not supported because of mass 2. You will need to update your graphics card to one of what is shown:
    PC MINIMUM system requirements
    OS = Windows XP SP3 / Windows Vista SP1 / Windows 7
    Processor = Intel Core 2 Duo 1.8 GHz or equivalent AMD processor
    Memory = 1 GB RAM for Windows XP / 2 GB RAM for Windows Vista and Windows 7
    Hard disk = 15 GB
    DVD ROM = 1 x speed
    Card compatible DirectX 9 compatible = .0c
    Direct X = DirectX 9.0 c August 2008 (inclusive)
    Input = keyboard / mouse
    Video card = 256 MB (with Pixel Shader 3.0). Supported chipsets: NVIDIA GeForce 6800 or greater; ATI Radeon X 1600 Pro or higher. Please note that NVIDIA GeForce 7300, 8100, 8200, 8300, 8400 and 9300; ATI Radeon HD3200, and HD4350 are below minimum system requirements. Update your video card drivers and the sound may be required. Intel video cards and S3 are not officially supported in Mass Effect 2

    PC RECOMMENDED configuration
    Windows XP SP3 / Windows Vista SP1 / Windows 7
    2.6 + GHz Cure 2 Duo Intel or equivalent AMD CPU
    2 GB OF RAM
    ATI Radeon HD 2900 XT, NVIDIA GeForce 8800 GT or better recommended
    Drivers and 100% DirectX compatible soundcard
    DirectX August 2008
    NOTE: For best results, make sure that you have the latest drivers for your video and audio card. Laptop or mobile versions of video cards supported above did not have extensive testing and perhaps driver or other performance issues. Therefore, they are not officially supported in Mass Effect 2. Intel and S3 video cards are not officially supported in Mass Effect 2

    Of http://meforums.bioware.com/viewtopic.html?topic=710074&forum=144

  • Can someone please answer this question... I asked 15 times with NO response

    I have a file of results of php and the index html file - and I want just the results to run...

    I learned that it is not possible in British Colombia and that there could be a way to do something different.   ANY HELP?  PLEASE?

    1128CreativeSolutions wrote:

    I have a file of results of php and the index html file - and I want just the results to run...

    I learned that it is not possible in British Colombia and that there could be a way to do something different.   ANY HELP?  PLEASE?

    Cannot run PHP or any other scripts aside server in British Colombia. Please tell us more about your condition, and we can find a BC solution for you.

    See you soon,.

    -mario

  • Please, I want someone to answer this questions SQL?

    1. display the name, the month and the year of accession of all employees, stored on the months of their date of hiring and in that on the year, with the first year that appears first?

    Can be.

    You can explain further.

    Cordially salim

    SQL> select ename,to_char(hiredate,'mm-yyyy') month_year from emp order by hiredate;
    
    ENAME      MONTH_Y
    ---------- -------
    SMITH      12-1980
    ALLEN      02-1981
    WARD       02-1981
    JONES      04-1981
    BLAKE      05-1981
    CLARK      06-1981
    TURNER     09-1981
    MARTIN     09-1981
    KING       11-1981
    JAMES      12-1981
    FORD       12-1981
    MILLER     01-1982
    SCOTT      04-1987
    ADAMS      05-1987
    
    14 rows selected.
    
    SQL> 
    
  • This question is not answered

    Is not answering this question. Helpful answers available: 5. correct answers available: 1.
    why exact post come upwards at the top of each thread?

    deebee_eh wrote:

    This question is not answered. Helpful answers available: 5. correct answers available: 1.

    Why exact position is launched at the top of each thread?

    Because when you post a question, you can give points for a total of 6 positions, as it says it 5 useful and 1 correct.

    When the OP begins to distribute points, you can see these numbers decrease. When the OP mark as answered topic it will be up and in the forum see that the icon will change to a green star.

    It's just a way to keep the forum clean and for people to say from questions and answers / without response and what helped them get their response.

  • Dear Matt, answer my question.

    Answer this question:

    https://forums.Motorola.com/posts/4fa205da90?commentId=795974#795974

    https://forums.Motorola.com/posts/4fa205da90?commentId=795974#795974

  • Go to the next slide, until you answer the question correctly

    I use Adobe Captivate 6 and I'm creating a quiz that if students continue to next slide, they need to answer this question correctly.

    Here's my setting.

    Quiz Setting 2.jpgQuiz Setting 1.jpg

    After above adjustment, when I reached this quiz, it did not continue. and then I answer incorrectly and then click on send, it shows that I have answered wrongly. Then I click on the next button, it allows me to go to the next slide. I guess I can't do that. May I know if the setting is correct? Thank you!

    Subscribe to the required option. Since you have endless attempts, user will not be able to get unless it provides a correct answer. And you didn't hide the next button, which means that it can not move. But I think it's a bad idea to allow navigation back, because when a user navigates back, the next button is not there, so it will totally get stuck.  And if you want to allow the review, you need the following button as well. And you don't hide the PlayBar, which means that the user can ignore the questions.

    I would reset the option you want on optional. Then hide PlayBar in Quiz and cannot move backward. Drag the next button under the clear button if you want the ability to review, but I suspect that this is not the case because you show slide of Score, which means that you won't have the review function.

  • Jump backwards and forwards without answer to question

    Questions that I get sometimes; when im using the button back on reading control without answering a question and return back to the question, it won't allow me to answer the question (get a message, "You have not answered this question". There are some users who need to play back and forth. Is it a bugs or some set up I have to do?

    Personally I have even shut down the PlayBar totally during the transition to the first slide of the Question. This can easily be done by assigning the value 0 (zero) for the cpCmndShowPlaybar system variable when entering the first question slide (does not exist in the Action on the list of slides to enter) and eventually turn after the slide of score or the last slide in the question.

    Be sure to not remove the back button, but cut the movement back in Quiz preferences and agree to have the rear buttons automatically deleted. Because if you remove them manually on the slides, they could reappear magically...

    Lilybiri

Maybe you are looking for

  • Send mail icon incorrect user

    I have a problem with Mail. I have several me / iCloud profiles: one for staff and a couple for work. If I use a log-in single user on my computer but put in place all the Me / iCloud profiles as "internet accounts" to this single user log-in, mail r

  • HP OfficeJet Pro L7650 all-in-one can not recognize USB memory stick 8 GB

    I try to scan a document on a 8 GB USB key and received the error "Unknown device" so that it works very well with my old USB 512 MB key.  How can I use a memory stick 8 GB with this printer?   Thanks in advance for any assistance!

  • Sites that use javascript to launch code download fail in FF but work in Internet Explorer.

    All financial sites that I use (TD Ameritrade, SunTrust bank, AmEx, etc.) allow to download monthly statements in pdf format. These used to be direct links to a pdf file, which can be downloaded or played directly in Firefox. They are now the javascr

  • Download printer software

    Can I install the printer without the printer software is connected to my iMac (OS 10.11)?  I'm passing along my old iMac to my granddaughter and she doesn't currently have internet access to download the software/driver its HP PhotoSmart D110A.

  • My laptop keeps up-to-date the same updates

    Laptop froze and I closed manually even but then the updates from HP are repeating and the laptop does not have updates.