Access denied in an applet that uses the jai jars

Hello there
I have a problem while I am using
ParameterBlockJAI pb = new ParameterBlockJAI("scale");
Interpolation interp = Interpolation.getInstance(
Interpolation.INTERP_BILINEAR);
pb.addSource(orig);
pb.setParameter("xScale", dScale);
pb.setParameter("yScale", dScale);
pb.setParameter("xTrans", 0.0F); //x Translate amount
pb.setParameter("yTrans", 0.0F); //y Translate amount
pb.setParameter("interpolation", interp);
RenderingHints rh= new RenderingHints(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
rh.put(RenderingHints.KEY_ALPHA_INTERPOLATION, RenderingHints.VALUE_ALPHA_INTERPOLATION_QUALITY);
rh.put(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_QUALITY);
At the moment my application has a signed applet jar file with the MANIFEST file having the class path with the
lib/jai_codec.jar lib/jai_core.jar lib/mlibwrapper_jai.jar files that are allocated on lib folder.
I signed those files but I am still getting the following error while I am trying to scale down an image.
Could you please give a help
Thanks
Aris
Java.security.AccessControlException: access denied (java.util.PropertyPermission java.home read)
     at java.security.AccessControlContext.checkPermission(Unknown Source)
     at java.security.AccessController.checkPermission(Unknown Source)
     at java.lang.SecurityManager.checkPermission(Unknown Source)
     at java.lang.SecurityManager.checkPropertyAccess(Unknown Source)
     at java.lang.System.getProperty(Unknown Source)
     at com.sun.media.jai.util.PropertyUtil$1.run(PropertyUtil.java:99)
     at java.security.AccessController.doPrivileged(Native Method)
     at com.sun.media.jai.util.PropertyUtil.getFileFromClasspath(PropertyUtil.java:124)
     at com.sun.media.jai.util.PropertyUtil.getBundle(PropertyUtil.java:148)
     at com.sun.media.jai.util.PropertyUtil.getString(PropertyUtil.java:165)
     at javax.media.jai.operator.JaiI18N.getString(JaiI18N.java:19)
     at javax.media.jai.operator.AbsoluteDescriptor.<clinit>(AbsoluteDescriptor.java:65)
     at java.lang.Class.forName0(Native Method)
     at java.lang.Class.forName(Unknown Source)
     at javax.media.jai.RegistryFileParser.getInstance(RegistryFileParser.java:216)
     at javax.media.jai.RegistryFileParser.registerDescriptor(RegistryFileParser.java:352)
     at javax.media.jai.RegistryFileParser.parseFile(RegistryFileParser.java:287)
     at javax.media.jai.RegistryFileParser.loadOperationRegistry(RegistryFileParser.java:47)
     at javax.media.jai.OperationRegistry.initializeRegistry(OperationRegistry.java:363)
     at javax.media.jai.JAI.<clinit>(JAI.java:560)
     at javax.media.jai.ParameterBlockJAI.<init>(ParameterBlockJAI.java:178)
     at mpu.uploadingAreaPanel.scaleImage(uploadingAreaPanel.java:234)
     at mpu.uploadingAreaPanel.scale2Fit(uploadingAreaPanel.java:265)
     at mpu.uploadingAreaPanel.paintComponent(uploadingAreaPanel.java:107)
     at javax.swing.JComponent.paint(Unknown Source)
     at javax.swing.JComponent.paintToOffscreen(Unknown Source)
     at javax.swing.BufferStrategyPaintManager.paint(Unknown Source)
     at javax.swing.RepaintManager.paint(Unknown Source)
     at javax.swing.JComponent._paintImmediately(Unknown Source)
     at javax.swing.JComponent.paintImmediately(Unknown Source)
     at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
     at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
     at javax.swing.RepaintManager.seqPaintDirtyRegions(Unknown Source)
     at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknown Source)
     at java.awt.event.InvocationEvent.dispatch(Unknown Source)
     at java.awt.EventQueue.dispatchEvent(Unknown Source)
     at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
     at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
     at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
     at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
     at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
     at java.awt.EventDispatchThread.run(Unknown Source)
Exception in thread "AWT-EventQueue-2" java.lang.ExceptionInInitializerError
     at java.lang.Class.forName0(Native Method)
     at java.lang.Class.forName(Unknown Source)
     at javax.media.jai.RegistryFileParser.getInstance(RegistryFileParser.java:216)
     at javax.media.jai.RegistryFileParser.registerDescriptor(RegistryFileParser.java:352)
     at javax.media.jai.RegistryFileParser.parseFile(RegistryFileParser.java:287)
     at javax.media.jai.RegistryFileParser.loadOperationRegistry(RegistryFileParser.java:47)
     at javax.media.jai.OperationRegistry.initializeRegistry(OperationRegistry.java:363)
     at javax.media.jai.JAI.<clinit>(JAI.java:560)
     at javax.media.jai.ParameterBlockJAI.<init>(ParameterBlockJAI.java:178)
     at mpu.uploadingAreaPanel.scaleImage(uploadingAreaPanel.java:234)
     at mpu.uploadingAreaPanel.scale2Fit(uploadingAreaPanel.java:265)
     at mpu.uploadingAreaPanel.paintComponent(uploadingAreaPanel.java:107)
     at javax.swing.JComponent.paint(Unknown Source)
     at javax.swing.JComponent.paintToOffscreen(Unknown Source)
     at javax.swing.BufferStrategyPaintManager.paint(Unknown Source)
     at javax.swing.RepaintManager.paint(Unknown Source)
     at javax.swing.JComponent._paintImmediately(Unknown Source)
     at javax.swing.JComponent.paintImmediately(Unknown Source)
     at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
     at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
     at javax.swing.RepaintManager.seqPaintDirtyRegions(Unknown Source)
     at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknown Source)
     at java.awt.event.InvocationEvent.dispatch(Unknown Source)
     at java.awt.EventQueue.dispatchEvent(Unknown Source)
     at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
     at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
     at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
     at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
     at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
     at java.awt.EventDispatchThread.run(Unknown Source)
Caused by: java.lang.NullPointerException
     at com.sun.media.jai.util.PropertyUtil.getString(PropertyUtil.java:167)
     at javax.media.jai.operator.JaiI18N.getString(JaiI18N.java:19)
     at javax.media.jai.operator.AbsoluteDescriptor.<clinit>(AbsoluteDescriptor.java:65)
     ... 30 more

Not sure if this is the problem, but manifests are not appropriate ways to add jar's to an applet's classpath. Instead, add each jar to the archive attribute of the applet element in the web page.
Something like..
<applet
  class='JaiApplet'
  archive="our.jar,lib/jai_codec.jar,lib/jai_core.jar,lib/mlibwrapper_jai.jar"
  width='600'
  height='400'>
</applet>

Similar Messages

  • File read access denied for signed applet

    Hi:
    I have a signed applet with a certificate generated with the keytool. Yet, I keep getting this error:
    java.lang.Exception: java.security.AccessControlException:
        access denied (java.io.FilePermission C:\WINDOWS\system32\aetpkss1.dll read)The error is produced when the method loadKeyStore(pin) below is called.
        private KeyStore ks;
        private Provider provider;
        private static final String providerName    = "PKCS11";
        private static final String providerLibrary = "aetpkss1.dll";
        public void loadKeyStore(String pin) throws IOException,
         CertificateException, KeyStoreException, NoSuchAlgorithmException {
         if (provider == null)
             registerProvider(providerLibrary);
         try {
             ks = KeyStore.getInstance(providerName,provider);
         } catch (Exception e) {
             throw new KeyStoreException("Failed get keystore instance\n"
                             + e.getMessage());
         try {
             ks.load(null, pin.toCharArray());
         } catch (Exception e) {
             throw new KeyStoreException("Failed load keystore\n"
                             + e.getMessage());
        public void registerProvider(String library)
         throws FileNotFoundException, KeyStoreException {
         String fileName;
         if (new File(library).isAbsolute())
             fileName = library;
         else
             fileName = getAbsolutePath(library);
         if (!(new File(fileName).exists()))
             throw new FileNotFoundException("No such file: " + fileName);
         String config = "name = " + providerName + "\n"
             + "library = " + fileName;
         ByteArrayInputStream confStream =
             new ByteArrayInputStream(config.getBytes());
         try {
             provider = new sun.security.pkcs11.SunPKCS11(confStream);
             Security.addProvider(provider);
         } catch (Exception e) {
             throw new KeyStoreException("Can initialize " +
                             "Sun PKCS#11 provider. Reason: " +
                             e.getCause().getMessage());
        private String getAbsolutePath(String lib) throws FileNotFoundException {
         String[] searchPath;
         /* NOTE: This should be modified to suit different versions of   *
          *       Windows and not just Windows XP                         */
         if (System.getProperty("os.name").matches("^(?i)Windows.*")) {
             searchPath = new String[] { "C:\\WINDOWS\\system32" ,
                             "C:\\java" };
         } else {
             searchPath = new String[] { "/usr/local/lib/" };
         for (int i = 0; i < searchPath.length; i++) {
             if ((new File(searchPath[i] + File.separator + lib).exists()))
              return (searchPath[i] + File.separator + lib);
         throw new FileNotFoundException("Library not in search path " + lib);
        }The above code is called by a java script, the class' constructor is empty.
    The error appears not to be caught by my code. I have tried to insert try/catch statements everywhere to figure out where this error is produced.
    The code is write off of the applet for signing with a smart card by Svetlin Nakov - and his applet works!
    I have also made a CLI application that uses the above code and it works perfectly.
    So: Something is wrong either with my certificate, the signing method, signature verification or something completely different. Any hints?
    The certificate I generated with
    keytool -genkey -keystore mystore -alias me
    keytool -seflcert -keystore mystore -alias meI have tired both with and without the selfcert step.
    Thanks! Erik

    The problem has been identified: Placing registerProvider() in the constructor the error no longer occurs, instead an error is produced when the key store is loaded.
    It appears that the javascript code is not trusted and so, even though the applet is signed, access privileges are restricted to those of the java script.
    A solution to this problem is not clear, but possibly, serving the pages from a trusted server, the java script will be trusted, some documentation seem to indicate.

  • Is it possible to set up a computer that uses the Sprint...

    Is it possible to set up a computer that uses the Sprint Pantech PX-500 (Mobile Broadband Card) to share its connection via Wi-fi? How would I set this up on a WRT54G?
    Thanks so much!
    -B

    If you haven't got the router then get WRT54G3G. If you already have a router then use it as a switch/access point, and use windows internet connection sharing or proxy server to share internet.

  • Applet that uses Borland package

    Hi!!!!!!!!
    First of all i wanna say that this same topic is published in "Java Development Forum".
    I use JBuilder as IDE and i developed an applet that uses XYLayout.
    xylauyout is included in jbcl package. The import sentence is like this:
    "import com.borland.jbcl.layout.*; "
    When i try to run the applet from a browser, it throws an error. It refers to this package.
    The question is: how can i "tell" the browser to "look-up" the Borland's library i use? What should i do??
    Bye
    PS: sorry for my english!!

    I didn't understand what to do. I mean, i created a jar file that includes jbcl, but i don't know what to do??
    Here's the code of the HTML:
    <html>
    <head>
    <title>
    HTML Test Page
    </title>
    </head>
    <body>
    pruebaapplet.DataEntry will appear below in a Java enabled browser.<br>
    <applet
      codebase = "."
      code     = "pruebaapplet.DataEntry.class"
      archive  = "PruebaApplet.jar"
      name     = "TestApplet"
      width    = "600"
      height   = "500"
      hspace   = "0"
      vspace   = "0"
      align    = "middle"
    >
    </applet>
    </body>
    </html>PruebaApplet.jar is in the same directory of the html. The directory pruebaapplet is also situated in the same directory. DataEntry.class is inside pruebadataentry directory
    What should i do??????

  • Run applet that uses borland jar's

    Hi!!!!!!!!
    I use JBuilder as IDE and i developed an applet that uses XYLayout. The problem i'm having is that the browser (MS Internet Explorer and Netscape) throw the same error and that is the package i used.
    How could i configure it???
    P.S. : sorry for my english!!!!!!!!!!
    Bye

    I'm writing this message again because i wasn't clear enough. I use a jar provided by Borland JBuilder:
    " com.borland.jbcl.layout.*; "
    This library isn't provided by Sun, so the when i try to run the applet from a browser, it throws an error.
    The question is: how can i "tell" the browser to "look-up" the Borland's library i use?
    Bye

  • I had to purchase a new MacBook when my old one was stolen. We have two other MacBooks that use the ITunes library.  Is there any way to get the library transferred to my new computer.

    I had to purchase a new MacBook when my old one was stolen.  We have two other MacBooks in the family that use the ITunes library.  How do I get the full ITunes library on the new computer when I don't have access to the old computer?

    If your backup copy of the old computer was not stolen, then use it to put everything back.

  • I have a new iPad that uses the Cloud.  But my iMac, my MacBook Air, and my iPhone are all older.  How can I link my mail accounts that aren't on the cloud withntiPhone

    Does anyone know how to sync my email account which is on my iMac, my MacBook Air, and my iPhone with my new iPad that uses the Cloud.  none of my other Apple devices can use the cloud.   Please Help me use the same email account on my iPad!

    I have a MacBook Air, bought in 2010 or 2011.  It is running OS 10.6.8.
    I have an iMac that is the same age as my MacBook Air.  My iPhone is 2nd or 3rd generation.
    None can support "the Cloud".  I use gmail and my iPhone and both computers are all synced.
    I can't get email on my new iPad that does use "The Cloud".
    Please help.

  • When I close Photoshop CS6, the following message appears: "Could not save Preferences because the file is locked, you do not have necessary access permissions, or another program is using the file.

    When I quit Photoshop CS6, the following message appears:
    " Could not save Preferences because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the ‘Get Info’ command in the Finder to ensure the file is unlocked and you have permission to access the file. If the problem persists, save the document to a different file or duplicate it in the Finder."
    If I try to change the Workspace in PS6 from Essentials to any other Workspace, the following messsage appears:
    "Could not apply the workspace because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the ‘Get Info’ command in the Finder to ensure the file is unlocked and you have permission to access the file. If the problem persists, save the document to a different file or duplicate it in the Finder."
    I have checked the Sharing and Permissions section of the "Get Info" panel accessed from the Finder and I have set Read and Write Privileges for my user account for Photoshop CS6. System and Admin are also set to Read and Write.
    I have a MacBook Pro with OS X Version 10.9.5 and have all available updates for Photoshop CS6, Lightroom 5 and Bridge CS6.
    I tried uninstalling the program and downloading it again and reinstalling, but nothing changed.
    Can you help?
    Thanks,
    cjpnm

    You may get better help in Photoshop General Discussion
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll
    If FINDER means Mac, read below (and try to give more information when asking a question)
    Mac 10.9.3 workaround https://forums.adobe.com/thread/1489922
    Enable Mac Root User https://forums.adobe.com/thread/1156604
    -more Root User http://forums.adobe.com/thread/879931
    -and more root user http://forums.adobe.com/thread/940869?tstart=0

  • Photoshop won't start: Could not open a scratch file because the file is locked, you do not have necessary access permissions, or another program is using the file.

    Adobe Photoshop CS6 Extended
    "Could not open a scratch file because the file is locked, you do not have necessary access permissions, or another program is using the file."
    I've tried finding and checking and fixing permissions but no success.
    This happened from one day to the next. I think it has to do with the sn attached to the disk rather then the motherboard. I have the suite co-installed with Symphony 5.05. I've tried reinstalling.
    What's to b done? The rest of the Creative Suite 6 (AE, AI etc.) works fine.
    Anyone...?
    Loui

    Have you tried restoring the Preferences yet?

  • Problems creating a web service that uses the report generation toolkit

    Hi,
           Im trying to develop a web service using labview 2013.
    I create a html form that is correctly communicating with my labview method and part of the web service functionality is to create a report from the data obtained in the html form published.
    I realized that using the report generation toolkit inside of the web service method the server cannot generate a report. ( If I run the same Vi before publishing the web service it works on the server but it doesnt work after I deploy it)
    I thought that maybe Im unable to use the report generation toolkit VIs inside of the web service because Im not incluiding the (dynamic VIs labview uses when they run), I tried to add the excel dynamic library to the proyect but with no success.
    I also tried to use VI SERVER to call a VI that generates the report using the report generation toolkit  in the method that runs when the web service is call but  it doesnt work either.
    How can I deploy a web service able to use  the report generation toolkit ?, how can I deploy a web service able to use VI server ?
    Any help is really appreciated.
    Erwin Franz 
    Erlab

    The issue you are running into is actually a limitation intended by Microsoft.  They don't want windows services to be able to call into the ActiveX interface for Microsoft Office for security reasons.  If you are deploying your web service to the NI Application Web Server on Windows you will run into this problem since the web server is a Windows Service.
    While I haven't tested this, you may be able to work around this by packaging your Web service with a LabVIEW EXE rather than deploying to the NI Application Web server. 
    Mark
    LabVIEW R&D

  • HT4137 I have two iPad's that use the same iTunes/store account. I want the two devices to play games with with other, but it recognizes them as the same. I have set up two different iCloud accounts, but still not recognizing the users as different. What

    Hello, I have no idea if my question went out, so I'll post it again. I have two iPads (one 3rd gen and one 4th) that use the same iTunes/store account. I want the two devices to game with each other, but the apps recognize them as the same. I have created two different iCloud accounts in an attempt to differentiate between the two, but no luck. How can I continue to use the same iTunes/store account for music and movies, but also have the two devices recognize each other for games?

    You can share your iTunes ID and still have separate iCloud accounts with separate IDs, they don't have to be the same.  If you kids don't already have an iCloud account, have them set up separate accounts on their devices using separate IDs.  If they are already sharing your account, migrate their devices to separate accounts.  To do this, start by saving any photo stream photos they wish to keep to ther camera roll (unless already there) by opening your my photo stream album, tapping Select, tap the photos, tap the share icon (box with upward pointing arrow), then tap Save to Camera Roll.  If they are syncing notes with iCloud, you'll need to open each of your notes and email them to them so you can later copy and paste the text into new notes created in their new account.  Then go to Settings>iCloud, tap Delete Account (which only deletes it from thier device and won't effect your device), choose Keep on My iDevice and provide the password to turn off Find My iPhone (if using iOS 7).  Then sign back in with a different Apple ID to create their new account and choose Merge to upload the data.  Once everyone is on a separate account you can go to icloud.com from your computer, sign into each account separately and delete your data from their account.

  • Dealing with two email accounts that use the same SMTP (outgoing) server

    Folks:
    re:   mail.app  5.2 (MacOS 10.7.4) with respect to POP accounts only
    I've read this thread multiple times, spent many hours experimenting, and my web searches haven't come up with any more useful help.
    How do you persuade mail.app to accept settings for two similar, but distinct email accounts that use the same SMTP (outgoing) server?   Say, the accounts are "blue.example.com" and "[email protected]". These have different user names and passwords.   The SMTP server is "smtp.example.com". 
    I think this is the appearance of success: the SMTP Server List (as seen in edit-the SMTP-Server-List mode) shows:
    Server Name                   In Use By Account
        smtp.example.com      [email protected], [email protected]
    (Description column omitted for brevity.  And of course, mail.app doesn't show the little envelope icons.)
    But I cannot reliably achieve this result.   When I select the SMTP server from the list for the second account --as suggested in the above-referenced thread--- I see the credentials (user name and password) for the first.  Should I overwrite them?  No, I don't think so -- I think that will break the first account.   I feel mail.app should present me with empty credentials boxes instead.  Maybe this happens -- sometimes.  But I can't see how to make it happen.  Am I simply overlooking something?
    A slightly different way of asking about this issue:   Suppose  I manage to do a proper setup for the two accounts and they work.  Then I change the password for "[email protected]" on the server. What is a reliable way of reaching the SMTP credentials for that account to make the edit?  Same question for "[email protected]"?    Even when I successfully attach two accounts to one SMTP server, I seem only able to reach the first listed one to make changes. (In this case, "blue.example.com").
    It is possible I'm missing something incredibly obvious...    I know the credentials for each account are distinct, but maybe mail.app copies them from the POP (incoming) settings.   Nah, that can't be, can it?   Or what?
    Maybe I'm seeing bizarre things due to scrambled mail.app preferences.  I've seen it before on other apps: delete the current preference file, get an auto-generated fresh one, and sanity returns. But with mail.app, with the prospect of losing years of emails --yeah, I've done it--  I'm extremely reluctant to mess around.
    Suggestions, please.
    TIA
    Message was edited by: Hen3ry  to clean up the table a little and add a parenthetical explanation.

    OK, I'm convinced.   The mail.app UI is BROKEN -- in my primary user account.  Such that it cannot reliably select an outgoing server for editing.
    I created a new user account and installed some relevant example accounts in mail.app in that account.  No problem. Well, a bit obscure, but still fully logical and reliable selection of individual SMTP accounts for editing.
    For the sake of clarity, I think it is best to mark this "answered" and repost, focusing on the symptoms and asking how one might go about repairing the problem.  So I'll do that.

  • Can you share photos between machines that use the same wifi network? Thanks for your help.

    Can you share photos on i-photo between machines that use the same network or even between different accounts on the same machine? I know you can share music on i-tunes but can you do the same on i-photo? Thanks for your help.

    Yes.
    If you want the other user to be able to see the pics, but not add to, change or alter your library, then enable Sharing in your iPhoto (Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other account. In that account, enable 'Look For Shared Libraries'. Your Library will appear in the other source pane.
    Any user can drag a pic from the Shared Library to their own in the iPhoto Window.
    Remember iPhoto must be running in both accounts for this to work.
    You can figure out using it with another machine from that too

  • I am a teacher that uses the iPad in the classroom.  I have an itunes account setup for my classroom without a credit card listed. Is there anyway for me to purchase apps to use in the classroom with a Purchase Order?

    I am a teacher that uses the iPad in the classroom.  I have an itunes account setup for my classroom without a credit card listed. Is there anyway for me to purchase apps to use in the classroom with a Purchase Order?

    (Being sarcastic - its because only the US is big or important enough to warrant volume licensing....)
    At this time, until Apple decides to release volume licensing structures outside of the US the only solution would be to use your purchase orders with a company that sells the iTunes Vouchers and redeem those.
    However - even then its hard to stay on the right side of the EULA when the terms are all couched in reference to "Personal Use"
    I have spoken to some developers in the past about educational discounts, or even support for proxies, and wasn't really impressed with their answers.   But hey - even Adobe has trouble with proxies and consistent approaches - we can't expect independent developers to be able to match the same capabilities...

  • Could not save Preferences because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the 'Get Info' command in the Finder to ensure the file is unlocked and you have permission to access the file.

    I have this massage every time close ps cc
    Could not save Preferences because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the ‘Get Info’ command in the Finder to ensure the file is unlocked and you have permission to access the file. If the problem persists, save the document to a different file or duplicate it in the Finder.

    You may get better help in Photoshop General Discussion
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll
    If FINDER means Mac, read below (and try to give more information when asking a question)
    Mac 10.9.3 workaround https://forums.adobe.com/thread/1489922
    Enable Mac Root User https://forums.adobe.com/thread/1156604
    -more Root User http://forums.adobe.com/thread/879931
    -and more root user http://forums.adobe.com/thread/940869?tstart=0

Maybe you are looking for

  • SPD Workflow will not start automatically for the first entry in a list on any given day (subsequent entries start just fine)

    Hi. I have various workflows on various lists that share a common issue. The first entry of the day on that list will not start the workflow automatically.   We have SharePoint 2013 Foundation. This same issue occurred when we had SharePoint 2010 as

  • Order unit cannot be used

    Hi Gurus, Our requirement is to used the order unit.. we have previous purchase order using the base unit of material and then i update the material indicating required order unit. When we create the Purchase Order some material did not hook the orde

  • Setting default value based on Link

    I have a report with a link to a form. The link is a standard portal component link. The link passes in cus_id. I would like to set the default value of the form cus_id field to the cus_id value from the link when the form is presented in insert mode

  • Tables fields where the system status is getting stored

    I need to find out the Quotes which have open and completed system status. Once I find these orders I need the check the validity dates of the Quotes. Can experts please let me know the tables where the system status and the validity dates are stored

  • Canon 1100d or 1200 or Nikon d3300

    I am vry new to DSLR world and want to buy a new DSLR but its more confusing than i thought. Right now I am confused between Canon 1100d (T3) and Canon 1200d (T5). I can currently buy Canon 1100d with EF-S 18-55mm ISII Lens Kit for Rs 18000 (299 $) &