Does anyone know of a lockable app folder; which I can put other apps into?

Does anyone know of a lockable app folder; which I can put other apps into for my IPad?

As far as I know there aren't any, and I would be surprised if it was possible due to the design of iOS.

Similar Messages

  • Hello I have adobe premiere elements 11.0 .does anyone know the  link to download trial so I can put my serial number in . I lost Cd.

    I hope someone can help me . anyone. thanks. hopefully I can burn a new cd after I donwload it .
    [Moved from Premiere PRO to Premiere Elements... Mod]

    franchescaa
    If the link that John T. Smith gave you has any problems (hope not), please try the following Premiere Elements 11 tryout source and insert your purchased serial number into it during installation
    Photoshop Elements 11 Direct Download Links: Free Trials, Premiere | ProDesignTools
    To avoid an Access Denied message, please follow the Note: Very Important Instructions detailed at the web site.
    Thank you.
    ATR

  • Does anyone know how to set policy file, so applet can connect other host?

    I have an signed applet, it may connect to other host.
    The applet should display a HTML pages, which may contains image tag points to a picture stored anywhere. I use a JTextPane to display this HTML page, but when it is loaded. a error occurs.
    java.lang.SecurityException
    at java.lang.SecurityManager.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkConnect(Unknown Source)
    at sun.awt.image.URLImageSource.checkSecurity(Unknown Source)
    at sun.awt.image.ImageRepresentation.imageComplete(Unknown Source)
    at sun.awt.image.InputStreamImageSource.errorConsumer(Unknown Source)
    at sun.awt.image.InputStreamImageSource.setDecoder(Unknown Source)
    at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
    at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
    at sun.awt.image.ImageFetcher.run(Unknown Source)
    I have those kind of error (connection refused) before I signed my applet and write policy file to granr socketpermission to the codebase of my class files. But this error still occurs. I suppose it is because the sun.awt.image.* is Java standard class, so my policy file has no effect on them. But how can I make it works?

    you need to install the jre, and place the win32.dll at JavaSoft\JRE\1.3.1_06\bin, that properties file place at JavaSoft\JRE\1.3.1_06\lib, comm.jar at JavaSoft\JRE\1.3.1_06\lib\ext\
    and in ur code try to use it to open ur com port
    public String test() {
    String drivername = "com.sun.comm.Win32Driver";
    try
    CommDriver driver = (CommDriver) Class.forName(drivername).newInstance(); driver.initialize();
    catch (Throwable th)
    {* Discard it */}
    drivername = "javax.comm.*";
    try
    CommDriver driver = (CommDriver) Class.forName(drivername).newInstance(); driver.initialize();
    catch (Throwable th)
    {* Discard it */}
    portList = CommPortIdentifier.getPortIdentifiers();
    while (portList.hasMoreElements()) {
    portId = (CommPortIdentifier) portList.nextElement();
    if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
    if (portId.getName().equals("COM2")) {
    //if (portId.getName().equals("/dev/term/a")) {
    try {
    serialPort = (SerialPort)
    portId.open("SimpleWriteApp", 2000);
    } catch (PortInUseException e) {}
    try {
    outputStream = serialPort.getOutputStream();
    } catch (IOException e) {}
    try {
    serialPort.setSerialPortParams(9600,
    SerialPort.DATABITS_8,
    SerialPort.STOPBITS_1,
    SerialPort.PARITY_NONE);
    } catch (UnsupportedCommOperationException e) {}
    int i=0;
    while(true)
    try {
    messageString="hi";
    System.out.println(i++);
    outputStream.write(messageString.getBytes());
    } catch (IOException e)
    System.out.println(e);
    messageString=String.valueOf(e);
    return messageString;
    and yet u need to signed the applet
    1. Compile the applet
    2. Create a JAR file
    3. Generate Keys
    4. Sign the JAR file
    5. Export the Public Key Certificate
    6. Import the Certificate as a Trusted Certificate
    7. Create the policy file
    8. Run the applet
    Susan
    Susan bundles the applet executable in a JAR file, signs the JAR file, and exports the public key certificate.
    1. Compile the Applet
    In her working directory, Susan uses the javac command to compile the SignedAppletDemo.java class. The output from the javac command is the SignedAppletDemo.class.
    javac SignedAppletDemo.java
    2. Make a JAR File
    Susan then makes the compiled SignedAppletDemo.class file into a JAR file. The -cvf option to the jar command creates a new archive (c), using verbose mode (v), and specifies the archive file name (f). The archive file name is SignedApplet.jar.
    jar cvf SignedApplet.jar SignedAppletDemo.class
    3. Generate Keys
    Susan creates a keystore database named susanstore that has an entry for a newly generated public and private key pair with the public key in a certificate. A JAR file is signed with the private key of the creator of the JAR file and the signature is verified by the recipient of the JAR file with the public key in the pair. The certificate is a statement from the owner of the private key that the public key in the pair has a particular value so the person using the public key can be assured the public key is authentic. Public and private keys must already exist in the keystore database before jarsigner can be used to sign or verify the signature on a JAR file.
    In her working directory, Susan creates a keystore database and generates the keys:
    keytool -genkey -alias signFiles -keystore susanstore -keypass kpi135 -dname "cn=jones" -storepass ab987c
    This keytool -genkey command invocation generates a key pair that is identified by the alias signFiles. Subsequent keytool command invocations use this alias and the key password (-keypass kpi135) to access the private key in the generated pair.
    The generated key pair is stored in a keystore database called susanstore (-keystore susanstore) in the current directory, and accessed with the susanstore password (-storepass ab987c).
    The -dname "cn=jones" option specifies an X.500 Distinguished Name with a commonName (cn) value. X.500 Distinguished Names identify entities for X.509 certificates.
    You can view all keytool options and parameters by typing:
    keytool -help
    4. Sign the JAR File
    JAR Signer is a command line tool for signing and verifying the signature on JAR files. In her working directory, Susan uses jarsigner to make a signed copy of the SignedApplet.jar file.
    jarsigner -keystore susanstore -storepass ab987c -keypass kpi135 -signedjar SSignedApplet.jar SignedApplet.jar signFiles
    The -storepass ab987c and -keystore susanstore options specify the keystore database and password where the private key for signing the JAR file is stored. The -keypass kpi135 option is the password to the private key, SSignedApplet.jar is the name of the signed JAR file, and signFiles is the alias to the private key. jarsigner extracts the certificate from the keystore whose entry is signFiles and attaches it to the generated signature of the signed JAR file.
    5. Export the Public Key Certificate
    The public key certificate is sent with the JAR file to the whoever is going to use the applet. That person uses the certificate to authenticate the signature on the JAR file. To send a certificate, you have to first export it.
    The -storepass ab987c and -keystore susanstore options specify the keystore database and password where the private key for signing the JAR file is stored. The -keypass kpi135 option is the password to the private key, SSignedApplet.jar is the name of the signed JAR file, and signFiles is the alias to the private key. jarsigner extracts the certificate from the keystore whose entry is signFiles and attaches it to the generated signature of the signed JAR file.
    5: Export the Public Key Certificate
    The public key certificate is sent with the JAR file to the whoever is going to use the applet. That person uses the certificate to authenticate the signature on the JAR file. To send a certificate, you have to first export it.
    In her working directory, Susan uses keytool to copy the certificate from susanstore to a file named SusanJones.cer as follows:
    keytool -export -keystore susanstore -storepass ab987c -alias signFiles -file SusanJones.cer
    Ray
    Ray receives the JAR file from Susan, imports the certificate, creates a policy file granting the applet access, and runs the applet.
    6. Import Certificate as a Trusted Certificate
    Ray has received SSignedApplet.jar and SusanJones.cer from Susan. He puts them in his home directory. Ray must now create a keystore database (raystore) and import the certificate into it. Ray uses keytool in his home directory /home/ray to import the certificate:
    keytool -import -alias susan -file SusanJones.cer -keystore raystore -storepass abcdefgh
    7. Create the Policy File
    The policy file grants the SSignedApplet.jar file signed by the alias susan permission to create newfile (and no other file) in the user's home directory.
    Ray creates the policy file in his home directory using either policytool or an ASCII editor.
    keystore "/home/ray/raystore";
    // A sample policy file that lets a JavaTM program
    // create newfile in user's home directory
    // Satya N Dodda
    grant SignedBy "susan"
    permission java.security.AllPermission;
    8. Run the Applet in Applet Viewer
    Applet Viewer connects to the HTML documents and resources specified in the call to appletviewer, and displays the applet in its own window. To run the example, Ray copies the signed JAR file and HTML file to /home/aURL/public_html and invokes Applet viewer from his home directory as follows:
    Html code :
    </body>
    </html>
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    width="600" height="400" align="middle"
    codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,1,2">
    <PARAM NAME="code" VALUE="SignedAppletDemo.class">
    <PARAM NAME="archive" VALUE="SSignedApplet.jar">
    <PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">
    </OBJECT>
    </body>
    </html>
    appletviewer -J-Djava.security.policy=Write.jp
    http://aURL.com/SignedApplet.html
    Note: Type everything on one line and put a space after Write.jp
    The -J-Djava.security.policy=Write.jp option tells Applet Viewer to run the applet referenced in the SignedApplet.html file with the Write.jp policy file.
    Note: The Policy file can be stored on a server and specified in the appletviewer invocation as a URL.
    9. Run the Applet in Browser
    Download JRE 1.3 from Javasoft
    good luck! [email protected]
    i already give u many tips, i use 2 weeks to try this to success, hopw that u understand that, a result of success is not important, the process of how to get things done is most usefull!

  • Does anyone know of an iPad app that can lock the iPad after a period of months (i.e., 6 months)?

    Does anyone know of an iPad app that can lock the iPad after a period of months (i.e., 6 months)? I am looking to give ipads to contestant participants and need a way to automatically lock the device once the set duration (measured in days, weeks, months or years) is complete. Does anyone know of an iPad app that locks the device after a period longer than 24 hours (ike most parental control apps)??
    Thanks for any help!!

    It's called "SelfControl". It can be a little hard to learn to use but it's worth the effort.

  • Does anyone know of a Podcasts app substitute?

    Does anyone know of an approriate app that I can use in place of Apple's Podcast app that WILL NOT require access Wifi or Celllar Data?
    When podcasts used to be part of the Music app, I LOVED listening to podcasts.  I actually became information junky as the sacrifice of all the music on my apple devices.  If I’m at home or away, I loved that I could seamlessly sync my podcats between my laptop and my apple devices.  If a podcast was deleted from one, it was removed from the rest post sync.  Also, I never used to sync all podcasts, only the ones that I had yet to listen.  If one of my podcast subscriptions had nothing to listen to, then that podcast’s album cover did not appear in my podcast list.  Why would they appear if there is nothing to listen to?  I could plop my iPhone into my car’s doc station and continue to comfortably listen to podcasts for drives of any length without EVER running into any issues.
    NOW, even if there is nothing to listen to, I still see the podcast’s album cover, which I HATE.  This fact makes it difficult to listen to podcasts while driving, especially in the evening.  I have to stare closely at my phone to see which album cover is accompanied by a number that implies that there are podcasts that have yet to be listened to.
    Also, I despise seeing the message, “Cellular Data is Turned Off for ‘Podcasts’ ”.  Why do need to be constantly reminded of what I already know?  I turned it off on purpose!  Imagine how annoying this becomes when I am in the middle of driving on the freeway and this message pop’s up, which effectively stops what I am currently listening to until I click a button to get rid of the message.  Safety first?  Hmmm...I guess not!
    Podcasts in the cloud?  If I already have the podcasts downloaded in iTunes, all that I want for this Podcast app is to respect my previously downloaded apps an only display what I wanted sync’d from iTunes.  I don’t like seeing podcasts “in the cloud”. This usually means that I am either playing something that I already deleted, unchecked or set as “played” with iTunes or I am streaming something that is already downloaded to iTunes.  I DO NOT want to waste my Wifi service streaming something that is already downloaded onto (or deleted from) iTunes.
    NEXT...Podcast Settings:  Why am I able to go to settings to change some settings, such as “Sync Subscriptions”, “Refresh Podcasts”, “Auto-Downloads”, “Episodes to Keep”, and “Use Cellular Data”, but I don’t have the ability to change “Sort Order”, and “Play Order”?  Most of my podcasts require that I listen to the oldest podcasts first, such as news articles or serial podcasts.  This, having go to each podcast individually to make those changes...what a WASTE of time!  Even worse is when  there is an update to the app and I have to go into the each podcast again to change things to how I want them to be...yet again!
    Sorry, this is long, but I am VERY passtionate about this. I LOVE listening to podcasts, but despise this Apple's Podcast app!  ARGH!  The only reason why I started using the Podcasts app is because IOS 7 removed this functionality from the Music app of my iPad Mini & iPhone. If the battery of my iPod Touch 4 wasn’t crap I would start using that again because it still has iOS 6.1.3, meaning the Music app still plays my beloved Podcasts. Sign...

    I'm sorry to hear that.
    I'm not affiliated w/ the developer, just a happy user that gave up fighting the apple podcast app a while ago.  I used to have a bunch of smart playlists in itunes for my podcasts, and come home every day and pathologically synced my phone as soon as I walked in the door, and again before I walked out the door in the morning.
    Since my wife was doing this too, we were fighting over who's turn it was to sync their phone.
    Since I've switched to Downcast, I no longer worry about syncing my phone to itunes at all.  I can go weeks between syncs.
    Setup a "playlist" in downcast (ex., "Commute") and add podcasts to that playlist.  Add another playlist ("walk" or "workout") and add different podcasts to that one. 
    Set podcast priorities on a per-feed basis (ex., high priority for some daily news feeds, medium priority for some favorite podcasts, lower priority for other stuff).  Downcast will play the things in the priority you specify, and within that priority, it will play in date order (oldest to newest).
    Allegedly, it will also sync your play status to other devices, although that is not a feature I currently use and can't vouch for.  It uses apple's iCloud APIs, so to some extent may be limited by what Apple's APIs can do.

  • Does anyone know how to rename a folder?

    Does anyone know how to rename a folder?

    Select it in the Finder, press Enter, and type a new name.
    (80621)

  • I've only had my iphone 5s for a week. I keep getting an error message of "Server has stopped responding."  I need the server to work. Does anyone know if there is a "fix" for the problem? Other wise, I probably best return for a refund and get a Samsung.

    I've only had my iphone 5s for a week. I keep getting an error message of "Server has stopped responding."  I need the server to work. Does anyone know if there is a "fix" for the problem? Other wise, I probably best return for a refund and get a Samsung.  Thanks

    sandyzotz wrote:
    Other wise, I probably best return for a refund and get a Samsung.
    Unlikely.  Based on the complete lack of detail of the issue provided it is entirely possible the same issue would occur.
    Unless and until the user provides some actual details of the problem, there is nothing the indicate that the issue is with the iPhone.

  • Iphone6 doesn't play music (have tried obvious things like volume etc and plugged in headphones, connected to a speaker via bluetooth, and tried to play from the inbuilt speaker). Does anyone know what the problem is and how it can be resolved?

    Iphone6 doesn't play music (have tried obvious things like volume etc and plugged in headphones, connected to a speaker via bluetooth, and tried to play from the inbuilt speaker). Does anyone know what the problem is and how it can be resolved?

    You can't buy the part from Creative as a spare.
    I'm not sure how compatible other parts might be, but that would be a question for someone who really knows a lot about this area of electronics.
    The Creative repair for this is likely to be expensi've, but the problem is most likely a broken solder connection than an actual new headphone socket. So if you know someone experienced in surface mount soldering you could probably get it repaired just with this.

  • Hi, just got a new computer and need to move my library from the old one to the new one.  Does anyone know how to do this or where I can get the information?  Thanks!!

    I just got a new computer and need to move my itunes library from my old computer to the new computer.  Does anyone know how to do this or where I can get the information? Thanks!

    If you Google ipod nano 6th generation manual, you can download the PDF manual. Here's a quote from page 19:
    Transfer purchased content to another computer:
    1 Open iTunes on the other computer and choose Store > Authorize This Computer.
    2 Connect iPod nano to the newly authorized computer.
    3 In iTunes, choose File > Transfer Purchases from iPod.
    Songs that are not from the iTunes store can be copied to the new computer, and you just have to do File>Add to Library to get them into iTunes. And if you don't plan to continue using your old computer, you should deauthorize it because you only get 5 authorizations for iTunes store purchases, and this will cancel out the authorization on the old computer.

  • It's currently taking me ages to send multiple emails as I'm having to copy and paste the email each time. Does anyone know if there is a way that I can send the same email several times but that can be addressed (Dear....) to different people?

    It's currently taking me ages to send multiple emails as I'm having to copy and paste the email each time. Does anyone know if there is a way that I can send the same email several times but that can be addressed (Dear....) to different people?

    Oh at least just duplicate the same email several times so all I will be maunally inserting each time will be the address/name??? Please help!!!

  • Does anyone know how to set up a macbook pro so that other computers can join me and use my internet connection?

    Does anyone know how to set up a macbook pro so that other computers can join me and use my internet connection?

    Have you set up any security on the Mac Connection Sharing?
    Sorry but I don't use that so I'm not familiar with the settings.
    But if you haven't setup and security the iPhone might not mind but I know most Windows computers do not like to connect to Open WiFi. and make sure it is WPA or WPA2.
    Then again it may be a setting in the connection sharing like some type of MAC filtering or it may simply be that Mac OS X connection sharing only allows one connection at a time. Try disconnecting your phone and then connect the PC.
    As to Linc's response about Windows.
    Windows basically does care about connecting to open, unsecured, WiFi. But it will normally pop up a windows asking "Are myou sure you want to connect to this open network". And a simple click on yes will get you connected and an IP address.
    So this is clearly a Mac OS X problem.

  • My phone shut off as I was charging it and now it has a black screen. Does anyone know how to fix this or what I can do?

    My phone shut off as I was charging it and now it has a black screen. Does anyone know how to fix this or what I can do?

    Basics from the manual are restart, reset, restore.
    Have you tried these?

  • Does anyone know of an IPhone app to lock myself out of my phone for a certain period of time?

    Does anyone know of an app I can use so that I can lock myself out of my phone for a specified time interval? There are times where my phone becomes a distraction and it would be easier to just lock myself out of it for 45 mins than to go to the trouble of putting it somewhere were I won't notice it and it will be too far away from me to just pick it up and start searching social media sites as procrastination.

    It's called "SelfControl". It can be a little hard to learn to use but it's worth the effort.

  • Does anyone know how to update apps via itunes

    I have the latest software and i am having difficulties installing updates of my apps. Does anyone know how to install updates through the app store

    http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf

  • Does anyone know of a simple app that will provide checkmarks,bullets,etc in notebook? Or bold typing, colored text , highlighting? Don't need anything fancy.

    Does anyone know of an APP that provides checkmarks, bullets, highlighting or colored text? Not looking for anything fancier than that.

    Hi, you can try using Evernote. Or if you prefer "writing", you can download bamboo paper.

Maybe you are looking for

  • JSP tag for import

    Hi, I have a problem while trying to import java classes using <jsp:directive.page import....... tag. though the <%@page import = ....... tag works fine... any help would be appreciated..

  • HT201250 My time capsule has failed a back-up

    Having issues with my time capsule not sure what to do about it. The error message says time machine couldn't complete the backup to the time capsule (Mac mini.sparsebundle" is already in use). I don't know what this means or how to fix the problem.

  • How to bind to a datasource at deployment time ?

    Hi everyone, I have a ear file in which the application.xml file specify multiple <module> entries. Each <module> (jar) containing multiple session beans. Each ejb is accessing the same database schema by using the same datasource. When accessing the

  • Windows 7 iTunes Home Sharing or AirPlay not working? - Checkpoint

    Wanted to share this for anyone else who ends up searching, as it took me a couple days to track it down.  Both Home Sharing and AirPlay stopped working when I upgraded iTunes to 10.2.2, they were both working with 10.1.x.  I tried a number of things

  • IMac built-in iSight for use as an IP webcam?

    Hi, I'd like to get a live picture from my iSight via the internet, is it possible without buying extra software? How would I do this? I came across a forum response that said to look in Internet Sharing but there's no webcam or iSight in the list. T