Is it possible to create an app to lock certain features and buttons?

Basically I want to have an app that makes the phone function like a demo retail phone. It would lock the ability to turn it off via the power switch and prevent people from messing with the settings while still being able to explore the feature base of the device.
Is this something that is possible? I'm not looking for the Guided Access feature as is has a time limit. I'm looking for something more permanent until an authorized user disables the app. I also don't want to run that config that keeps it locked in a single app as I'd like users to be able to explore features, again akin to the demo phones in Apple stores.
Google has apps that provide these features, but I need one for iOS.

I don'T (I prefer buying my apple products new, love my air) but I have a friend opening up a small shop in town and he was optioning selling used ones. I've always liked merchandising displays and thought I would help him, but people can really mess around with iphone if all the features are unlocked. Hence my question

Similar Messages

  • Is it possible to create "places" tags without the maping feature?

    Is it possible to create "places" tags without the maping feature? I updated from PSE 10 (where I created my own list of "places,") to PSE 12, where "places" seems to require the mapping feature. I would prefer not to use the map, and stick to my old way.
    Thanks for any help!
    Tom

    Apparently, not only is the mapping feature required, but once the GPS-loaded Place tag is created, it is not listed in alphabetical order with other place tags.  It is listed by country, then by state, then by title!!  !! VERY irritating!!  And what if I want to create a place tag (of which I already have many) which does not have a recognizeable address, like, say, Grandmother's House?  VERY irritating.
    And if I use the Keyword feature to create Place tags, they will be in an entirely separate list from the other Place tags.  VERY irritating!
    Who designed this upgrade?  I will soon start looking for an alternative, though I have used Photoshop Organizer for years and have thousands of photos in it.  My upgrade to PSE 12 has caused me nothing but headaches.

  • Possible to make an item editable for certain users and read only for other

    Is it possible to make an item editable for certain users and read only for others?
    I've been able to accomplish this by taken the select statement that I used to define an authorization scheme, placing it in the Read Only condition of the item. However, I would like to simply reference the authorization scheme to utilize caching, and to help keep things cleaner for future maintenance.
    Is it possible to reference an authorization scheme in an item condition similar to the way another item can be referenced by preceding it with a colon (i.e. :P1_First_Name)?

    Thank you, your suggestion worked.
    It would be nice on a future release of APEX if a drop-down box existed under the Ready Only section that would allow an existing Authorization Scheme to be selected or negated when applying the Read Only attribute to a form item.

  • Possibility to create full responsive websites with new features

    Hi guys!
    I think that Muse would be incredible and very professional if the develop team include the possibility to create full responsive websites, with no more problem even in the height of a site, expecially if you wanna create an horizontal scroll website.
    Another great fature is the Bootstrap 3, that could be used in some layout and templates... Add more widget, like in a CMS and obviously it would be great if you can use very full-responsive icons.
    What do you think about it, guys?

    Fully responsive would be great. 
    I love the new updates from Muse, especially the library, state buttons, and ability to create mega menus....   However, I've been building more of my websites with Wordpress due to the lack of Responsive design.  If Muse adds that capability, along with at least basic additions to the CMS (clients being able to add hyperlinks, link documents, modify H1,2,p text, etc), I'm likelly to go all in. 

  • I need an app to lock my messages and folders for free

    i need an app to lock my text messge with passcode and other apps\ folders to lock with an password..
    i need to know how to activate delivery reports for sent text messages, spam folder s also needed.. even in a basic mobil its present .. so plzzzzz help.
    then only i can recommend others to buy iphone

    Well, Brinda, currently there is no way to lock your messages or folders except by using a basic passcode lock on the phone itself.
    For dilevery reports, you need at least iOS 5 and go to settings > messages. It is only possible to get these reports for messages sent to other i-devices.
    As far as a spam folder, could you elaborate?

  • Is it possible to create AIR app in server?

    Hi
    Does Adobe (or someone else) have any solution for server-side AIR app creation. I would like to offer my clients tools for uploading their AS3 or Flash Builder project to my server where actual compiling takes place... like for instance PhoneGap Build works....

    Of cause it's possible and simple.
    1. put flex sdk on the server
    2. install JRE or JDK on the server
    3. run path_to_flex_sdk/bin/mxmlc with your custom compile options: http://www.docsultant.com/site2/articles/flex_cmd.html

  • Is it possible to create an app that overrides silent mode?

    I want to create an application that overrides the silent mode on an iPhone but I am not sure if it is possible.

    That's a user controlled function.
    Not possible.

  • Horizontal RSS feed- is it possible to create an RSS feed (showing both pictures and text), that scrolls from left to right rather than top to bottom?

    I am trying to create an RSS feed that will scroll from left to right rather than top to bottom as is standard in iWeb.  Ideally, I would like to show both images and text. I am actually using iWeb '09.  I am not opposed to writing html code if necessary.
    Thank you for your help!

    Probleme solved without having to change anything in the flash.
    The solution was to add a small part in the CSS in HTML
    html {
    overflow-x: hidden;
    overflow-y: auto;
    Solve probleme. All browser. VERY usefull to know !

  • Creating an email with embedded macro code and buttons.

    Hi,
    I currently have a Java SE desktop application which sends out emails to customers with quotes attached as pdf documents. What i would like to do is create a email (using the javamail API) that will have two buttons in the body of the email namely Accept and Reject.
    When the client gets the email, they can simply click on one of the two buttons which should send back an email to a certain email address. I do realise that using macros in the email might cause some problems for people who read their emails using any other program than MS Outlook, but for now I would just like to get this to work...
    Is it possible to do the above using the javamail API? If so, please could you provide some sample code as I have searched everywhere for something like this but could not find anything.
    Below is the macro code that could be used for the accept and reject buttons.
    Private Sub Accept_Click()
        Dim O, m
        Set O = CreateObject("Outlook.Application")
        Set m = O.CreateItem(0)
        With m
            .To = "[email protected]"
            .CC = ""
            .BCC = ""
            .Subject = "Quote Accepted"
            .Body = ""
            .Send
        End With
        Set m = Nothing
        Set O = Nothing
    End Sub
    Private Sub Reject_Click()
        Dim O, m
        Set O = CreateObject("Outlook.Application")
        Set m = O.CreateItem(0)
        With m
            .To = "[email protected]"
            .CC = ""
            .BCC = ""
            .Subject = "Quote rejected"
            .Body = ""
            .Send
        End With
        Set m = Nothing
        Set O = Nothing
    End SubThank you in advance!

    Thanks for the reply!
    No, i dont want JavaMail to run when the user clicks on a button in an outlook email.
    What should happen is this:
    An email should be sent to a person from a Java application after being "set up" or "created" using the javamail api. The email should have vba code embedded in it so that when the person on the receiving end receives the email, they see some (two, for now) buttons in the body of the email, and when they click on one of the buttons, it should run some of the macro code and send an email back to a certain address as specified in the vba code.
    Now what i would like to know is if it is possible to embed vba code in an email and create buttons in the body of the message when the email is constructed using JavaMail before sending it off to the other person.
    Edited by: javakarl on Mar 16, 2009 10:53 AM

  • How do I complain about an app that took away features and made me pay to upgrade to get them back?

    I had the app Moe's Notes for at least three months before they took away all of the features that made it useful and asked me to pay for a $3 upgrade to get them back.
    It used to allow me to take multiple pictures of a place and record the location (I used it for scouting locations for films). Now it consistently drops the pin at an address that is not the address I'm at and when I try to correct it it makes me upgrade. It's completely useless now.
    I tried to upgrade and though I've been billed I still get messages from my app that the upgrade didn't go through.
    Apple's support has really gone to ****, I've been traveling in circles on the website since I followed the "report a problem" link in my receipt e-mail from the iTunes store.
    I'm really getting sick of how Apple's App system works, there's so much needless buerocracy that doesn't protect consumers from people who can just take away products you've paid for. It's like Home Depot sneaking into your house at night to remove the claw from your hammer or one of the splines in your phillips head screwdriver.

    The issue is as to whether I am out of warranty or the phone is out of warranty. Seems it's me!
    The phone first went into action in late April 2011 and so is less than 1 year old. Do apple warranty, for 1 year, I will have A working iPhone or do they warrant that the specific iPhone in my pocket will work for one year?
    While I can appreciate there must be rules, most people talk about a one year warranty on the phone. In any event, it's not clever of Apple - shouldn't it be reasonable to expect a phone to operate for at least 1 year? I can now not hear people on calls in a lot of situations where there is any appreciable amount of background noise and that is not acceptable in my book on a unit less than one year old.

  • How to create 3 Fullscreen Undecorated JFrame with TextField and Button on

    I want to design a GUI which consists of Fullscreen Undecorated JFrame and It must be running like a kiosk
    So how to deal with as each Jframe will create a new object and it is impossible to manage the heap sapce

    harshal_2010 wrote:
    I want to design a GUI which consists of Fullscreen Undecorated JFrame Good for you, what have you done so far.
    and It must be running like a kiosksee reply #1
    So how to deal with as each Jframe will create a new object
    MyJFrame f = new JFrame("MyJFrame #1");
    and it is impossible to manage the heap sapceYes, you make sure you remove all references to your objects when you no longer need them and Java will do the rest with the GC.

  • I need an app to lock my messaging and e-mails. does anyone know of one?

    I love my iphone but on my droid I could download apps to password protect certain apps. Is anyone aware of an app I can download to do the same to my messaging and emails?

    Go to Settings > General > Restrictions > choose a passcode, go down to "Accounts", and select "Don't Allow Changes".
    This makes it so that people who might come into possession of your phone cannot log you out of your email, Apple ID, Twitter account, etc.

  • JSViews to create Fiori Apps

    Hi Guys,
    From past some months i have been working on SAPUI5 and have developed some application for desktops only.
    In order to create these application i used to create jsview this was just my choice as i feel quite comfortable with Javascript and jsviews.
    Now i decided to create some small Fiori apps for my desktop applications but where ever i tried looking for  all the examples are  in XMLViews and it is quite some pain to code the xmlviews.
    I was wondering if it is possible to create fiori apps using jsview..? As far as i think it is possible but i couldn't find anywhere the controls created using jsview all i find is controls in xmlviews .
    As of now i was referring to SAPUI5 Explored to check out controls for sap.m library but all the examples seems to have been created using xmlviews.
    I was just wondering when all controls for desktop applications are created using jsview as shown here SAPUI5 SDK - Demo Kit
    in the demokit ... then why a sudden change in the way it was developed..?
    Can you tell me where can i find all sap.m controls created in jsview..???
    Thanks in advance,
    Vishesh.

    Yeah... I'm sad with this too...
    I'm having too much pain to convert the TDG to JScript...

  • Creating an app with Adobe DPS

    Dear all,
    I am very familiar with the work flows and processes involved when using DPS. But i have not yet finished and concluded a workflow.
    What I need to know is whether it is possible to create an app that does not neccesarily go into the App store. Is it possible to distribute along other channels. Basically, I need to know the output format of Adobe app builder. What steps are there in this fase of the workflow? And do I end up with an .ipa or how does it wrap up?
    Does this question make sense?
    Than you in advance,
    Kim

    With a pro account you get a .ipa file and a .zip file. The ipa file is for testing so the devices that you add in the apple developer account ( max 100 in a year ) can all install the ipa file. The .zip is for submitting to apple.
    In the enterprise edition for DPS you can create enterprise signed builds that can be installed on any Ipad within the organization. ( no limit to the number of devices you can install it to. )

  • How to create an App

    Hello everybody.
    I am very interested in create an ipad for my work and although I have a Mac, and I pad I have never made a software program. Is it possible to create an app without previous programming knowledge?
    How much does cost the App developers kit from Apple?
    Can Apple One on One service give you a lesson on how to use the kit?
    I think that I have a great idea for an App and I also want to learn how to use my Mac for other things beside iphoto and Pages.
    Thank you very much for any help in this regard.
    Please, accept my apologies for my English.
    Luis

    Is it possible to create an app without previous programming knowledge?
    It helps hugely, but you can always learn if you have the time and resources.
    How much does cost the App developers kit from Apple?
    It's free. But you pay $99 to submit an app to sell in the AppStore.
    Can Apple One on One service give you a lesson on how to use the kit?
    No.

Maybe you are looking for