Getting started with OIM API

Hi,
Need help
I try to creates an instance of the utility factory. Using Eclipse IDE and added all jar from customclient.zip.
I am getting this exception:
java.security.AccessControlException: access denied (java.util.PropertyPermission XL.HomeDir write)
java code:
public void init() {
          try {
               System.out.println("Entered====");
               System.setProperty("XL.HomeDir","D:\\OIMServer\\xellerate");
               System.setProperty("java.security.policy","D:\\CustomClient\\config");
               System.setProperty("java.security.auth.login.config", "D:\\CustomClient\\config\\authwl.conf");
               System.setProperty("java.naming.provider.url", "t3://ps5014:7001");
               ConfigurationClient.ComplexSetting configClient = ConfigurationClient
                         .getComplexSettingByPath("Discovery.CoreServer");
               final Hashtable env = configClient.getAllSettings();
               System.out.println("env=="+env);
               tcUtilityFactory ioUtilityFactory = new tcUtilityFactory(env,
                         "xelsysadm", "abcd1234");
          } catch (Exception e) {
               e.printStackTrace();
     }

Copy config folder from D drive to under project folder inside Eclipse Workspace and then giv ethe new path.

Similar Messages

  • Getting started with OIM API'S using ECLIPSE

    Dear All,
    i got this error messages :
    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/log4j/Logger
         at com.thortech.util.logging.Logger.createAndRegisterLogger(Unknown Source)
         at com.thortech.util.logging.Logger.getLogger(Unknown Source)
         at com.thortech.xl.util.config.ConfigurationFormatter.<clinit>(Unknown Source)
    somebody help me.
    Thanks.

    In general Add all the jar files present in the xlclient lib folder into your classpath before using any of the Thor API's as these jars are needed.
    In your case i guess the classpath is missing the log4j jar file required.
    You are using com.thortech.util.logging.Logger which references to xlLogger.jar.
    When you decompile this xlLogger.jar present in the lib folder you will be able to see the following import statements.
    import com.thortech.util.logging.helpers.ConfigFileWatchDog;
    import com.thortech.xl.util.logging.FilePrintStream;
    import com.thortech.xl.util.logging.PropertyConfigurator;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.ObjectInputStream;
    import java.io.Serializable;
    import java.util.Hashtable;
    import org.apache.log4j.Category;
    import org.apache.log4j.ConsoleAppender;
    import org.apache.log4j.Level;
    import org.apache.log4j.PatternLayout;
    So during runtime it is searching for the log4j jar which is not present in the classpath. usually it is present in the xlclient ext folder. Please ensure that you add this jar into your classpath. The problem will be solved. Let me know if you still face any issue.
    Edited by: Durgaprasad on Dec 4, 2011 4:03 AM

  • Help Needed with getting Started With Office 365 Development C# Rest API

    We have a O365 Tenant Setup with a Federated Active Directory Setip we want to be able to right code that will connect to our tenant and perform basic CRUD operations against it (ex. Creating mail boxes)
    The problem is we want this to be contained in a CLR trigger In SQL so say if a new user is added to our user table then we would create a new AD account for that user and also create a mailbox.
    But I cannot find and example on how to connect to Office 365 using the REST API (Not the SDK because you can not add the connected service to a class library) and before the required actions that we need to do. All the example I have found are with the
    SDK API and/or require window 8 and that is also not an option.
    Please help I do not know where to start, and I would love to see some examples done in c# and not using the SDK.
    Thanks,
    Andrew Day

    Hi,
    >> Instead of SharePoint URLs I would use the O365 API URL?
    Yes, in my sample code, I was accessing the File resource by using the O365 File API. In your case, you need to acquire the token to access the Mail resource and use O365 Mail API.
    By the way, I think the article
    Understand Office 365 app authentication concepts will help you to understand the authentication process in Office 365 Development.
    >> Why can I not use the SDK API with a class Library?
    Actually, you are able to reference the Office 365 .NET SDK in the class Library. But the class library project type was not supported by Visual Studio Office 365 Development Tool. As a workaround,
    you can reference the SDK manually in your project.
    Since your original question is about “getting started with Office 365 Development C# Rest API”, if you have more questions about the Office 365 SDK, I will suggest you posting a new thread
    to discuss the Office 365 SDK. It will involve more other community members to share their ideas and experience on a specific a question and for others who had a similar question could also find the valuable information quickly.
    Regards,
    Jeffrey
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Getting started with Hibernate

    Hi Friends,
    I am working through my way to get started with Hibernate. I am using the tutorial at http://www.gloegl.de/8.html and I am stuck at running the application. I get the following error
    D:\Hibernate>run
    D:\Hibernate>D:\jdk1.3.1\jre\bin\java -classpath .\lib\hibernate2.jar;.\lib\jta.
    jar;.\lib\commons-logging.jar;.\lib\hsqldb.jar;.\lib\cglib2.jar;.\lib\commons-co
    llections.jar;.\lib\dom4j.jar;.\lib\odmg.jar;.\lib\jdbc2_0-stdext.jar;.\bin Even
    tManager
    Initializing Hibernate
    INFO - Hibernate 2.1 final
    INFO - hibernate.properties not found
    INFO - using CGLIB reflection optimizer
    INFO - JVM does not support LinkedHasMap, LinkedHashSet - ordered maps and sets
    disabled
    INFO - using workaround for JVM bug in java.sql.Timestamp
    INFO - configuring from resource: /hibernate.cfg.xml
    INFO - Configuration resource: /hibernate.cfg.xml
    INFO - Mapping resource: Event.hbm.xml
    INFO - Mapping class: Event -> EVENTS
    INFO - Configured SessionFactory: null
    INFO - processing one-to-many association mappings
    INFO - processing one-to-one association property references
    INFO - processing foreign key constraints
    INFO - Using dialect: net.sf.hibernate.dialect.HSQLDialect
    INFO - Use outer join fetching: false
    INFO - Using Hibernate built-in connection pool (not for production use!)
    INFO - Hibernate connection pool size: 20
    INFO - using driver: org.hsqldb.jdbcDriver at URL: jdbc:hsqldb:data/test
    INFO - connection properties: {user=sa, password=}
    INFO - Transaction strategy: net.sf.hibernate.transaction.JDBCTransactionFactor
    y
    INFO - No TransactionManagerLookup configured (in JTA environment, use of proce
    ss level read-write cache is not recommended)
    INFO - Use scrollable result sets: true
    INFO - echoing all SQL to stdout
    INFO - Query language substitutions: {}
    INFO - cache provider: net.sf.hibernate.cache.HashtableCacheProvider
    INFO - instantiating and configuring caches
    INFO - building session factory
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/transform/S
    ource
    at net.sf.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.ja
    va:160)
    at net.sf.hibernate.cfg.Configuration.buildSessionFactory(Configuration.
    java:726)
    at EventManager.<init>(EventManager.java:19)
    at EventManager.main(EventManager.java:27)
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/transform/S
    ource
    at net.sf.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.ja
    va:160)
    at net.sf.hibernate.cfg.Configuration.buildSessionFactory(Configuration.
    java:726)
    at EventManager.<init>(EventManager.java:19)
    at EventManager.main(EventManager.java:27)
    what jar files/files I need other than mentioned in the tutorial.
    please help me to get started with Hibernate...
    Thanks for your help and time.

    java -classpath .\lib\hibernate2.jar;.\lib\jta.jar;.\lib\commons-logging.jar;.\lib\hsqldb.jar;.\lib\cglib2.jar;.\lib\asm-1.4.1.jar;.\lib\commons-collections.jar;.\lib\dom4j.jar;.\lib\odmg.jar;.\lib\xml-apis-2.3.0.jar;.\lib\xerces-2.3.0.jar;.\lib\jdbc2_0-stdext.jar;.\bin de.gloegl.road2hibernate.EventManager
    see above classpath and identify....how many jars you missed... :)
    All the best
    Nilesh

  • Getting started with the BC Open Platform

    Hey BC partners,
    Welcome to the BC developer forum!
    To get started, just visit http://developers.businesscatalyst.com/ (username: alpha, password: bcdevdocs) and follow the Getting Started tutorials. This is a dedicated developer documentation site which includes information on how to register and create an app, links to API endpoints, modules and tag references and sample apps.
    Here's what you should do:
    Go to http://developers.businesscatalyst.com/getting-started/ and have a look at the introduction pages
    Sign up as a developer and register your app, by clicking the "Create an App" button on the top right part of the screen: http://developers.businesscatalyst.com/getting-started/register.htmlNOTE: For now, all requests are manually reviewed and approved, it might take a couple of days for your app key to be sent
    You'll receive the app key over email, or further clarifications, if needed.
    While your key is generated, follow these steps to create a "Hello World" sample app on your site: http://developers.businesscatalyst.com/getting-started/building-your-first-app.html#hello_ world
    Once you receive the app key, you can start building your app: http://developers.businesscatalyst.com/getting-started/building-your-first-app.html
    Here's another sample app and instructions on how to use it and understand how it works: http://developers.businesscatalyst.com/samples/meet-the-team-app.html
    Other useful developer resources:
    Customizing the Admin Console menu using an app:  http://developers.businesscatalyst.com/developer-documentation/customize-admin-menu.html
    Get started with the Business Catalyst APIs: http://developers.businesscatalyst.com/developer-documentation/api-reference.html
    API endpoints reference: http://docs.businesscatalyst.com/content/api-endpoints/index.html (username: alpha, password: bcdevdocs)check out the new Authentication, FileSystem and the webapps/webapp items APIs
    The bcapi.js SDK - http://adobebc.github.io/bcapi.js/index.htmland how to use it: http://developers.businesscatalyst.com/developer-documentation/sdk-reference.html
    Best practices when developing apps: http://developers.businesscatalyst.com/developer-documentation/best-practices.html
    Within the next few months our team will continue to develop these features with the help of the Beta Group, and then open the development program to all partners of Business Catalyst.
    We hope that you are just as excited as we are to embark in this new direction for Business Catalyst, and shape the future of the platform.
    If you run into any problems or have any questions, start a new discussion on this forum
    Enjoy,
    The Business Catalyst team
    P.S: Make sure to sign up to receive email notifications from this forum  - by going to http://forums.adobe.com/community/business_catalyst/developer_forum and clicking "Follow this forum" in the Notifications pod on the right side of your screen.

    Hi,
    Although I'm learning I am a complete programming / javascript / json / jquery novice so my apologies in advance if this is a stupid question or i have failed to understand the new restful api functionality which is available under this beta.
    In the past, where a client has had really specific functionality that was not achievable within the BC framework, I have implented an external php application (with the help of a web developer) and simply linked to it via a sub domain. Obviously not ideal.
    My hope is that the new api functionality will open up a range of possibilities that will go some way toward eliminating the need to build extenal applications and simply extend the existing BC framework using the added api functionality.
    One example that i would like to move solely on to BC is the following - http://mylist.grocerwatch.com.au/
    The above is a grocery pricing comparison website whereby the applicaton highlights the cheapest and best value (comparible) products. The application also allows the user to select from the items displayed to create a shopping list showing where to buy the selected products for the best value. The user can also email, print, or save their shopping list.
    My question is for someone who is more farmiliar with the new api and who is perhaps more experienced than me with programming. Would it be possible to create the above solely on BC without sacrificing speed, security, functionality etc?
    Thanks.

  • Getting started with ePrint (Videos)

    Here are a few videos on getting started with ePrint.   These videos are specific to specific model(s).
    Getting Started with ePrint - HP LaserJet P1606dn
    Getting Started with ePrint - HP Laserjet CP1525
    The printer shown in this video is the HP Laserjet CP1525.
    Getting Started with ePrint - HP Laserjet 1536dnf MFP
    The printer shown in this video is the HP Laserjet 1536dnf.
    Getting Started with ePrint - HP Laserjet P1102w
    The printer shown in this video is the HP Laserjet P1102w.
    Getting Started with ePrint - HP Photosmart Plus e-All-in-One Printer - B210a
    The printer shown is the HP Photosmart Plus e-All-in-One - B210a, but these steps will also work for the B210b and B210c.
    Getting Started with ePrint - HP Officejet 6500a-7500a-8500a (a910a)
    These steps work for the HP Officejet 6500A e-All-in-One -- E710s, E710e, E710n, E710a; HP Officejet 7500A Wide Format e-All-in-One Printer - E910c, E910a; HP Officejet Pro 8500A e-All-in-One Printer - A910a, A910d.
    Getting Started with ePrint - HP Photosmart Premium e-All-in-One Printer - C310a
    The printer shown is the HP Photosmart Premium e-All-in-One Printer - C310a, but the steps will also work for the HP Photosmart Premium e-All-in-One Printer - C310b, and the HP Photosmart Premium e-All-in-One Printer-C310c.
    Getting Started with ePrint - HP Color Laserjet CP1025nw
    The printer shown is the HP Color LaseJet CP1025nw.
    Getting Started with ePrint - HP Photosmart eStation All-in-One Printer - C510a
    These steps will work for the HP Photosmart eStation All-in-One Printer - C510a.
    Getting Started with ePrint - HP Officejet Pro All-in-One 8500a A910n
    These steps will work for the HP Officejet Pro 8500a (a910g, a910n) All-in-One printers.
    Getting Started with HP ePrint - HP Photosmart e-All-in-One Printer (D110a)
    The printer shown is the HP Photosmart D110a, but the steps will also work for the HP Photosmart B110a and K110a.
    9/20/2012 update: 4 new videos
    Getting Started with ePrint - HP Envy 100 e-All-in-One Printer (D410a)
    The model shown is HP Envy 100 e-All-in-One Printer (D410a).
    The steps shown apply to these printers:
    HP Envy 100 e-All-in-One Printer (D410a)
    HP Envy 100 e-All-in-One Printer (D410b)
    HP Envy 100 e-All-in-One Printer (D411a)
    Getting Started with ePrint - HP Deskjet 3050A e-All-in-One Printer (J611a)
    This video shows the HP Deskjet 3050A e-All-in-One Printer (J611a), and also applies to the J611b.
    Getting Started with ePrint - HP Photosmart 5510 e-All-in-One Printer (B111a)
    This video shows the HP Photosmart 5510 e-All-in-One Printer (B111a), but these steps also apply to the B111b, B111g, 5511  B111j, 5512  B111a, 5512 B111e,  5512  B111f, 5514 B111c, 5514 B111d, 5514 B111h, 5515  B111a, 5515 B111h, 5515 B111j,  6510 B211a, 6510 B211b, 6510 B211e,  6512  B211a, 6515 B211a.
    Getting Started with ePrint - HP Envy 110 e-All-in-One Printer (D411a)
    The printer shown in this video is the HP Envy 110 e-All-in-One Printer (D411a), but the steps also apply to the Envy 110 (D411b),  Envy 111 (D411d), and the Envy 114  (D411c).
    I am an HP employee.

    Great topic!!
    I am an HP employee

  • Can not get example to work after following instructions given in "Getting Started with the NI LabVIEW C Generator" guide

    We explored using sbRIO for our project, for different reasons we ended up going with a different embedded solution . We are currently evaluating the LabVIEW C Generator to convert some of the core analysis routines from LabVIEW to C so the team that will be creating the embedded solution don't have to re-implement them from scratch. 
    Before converting our code, I followed the instructions given in the "Getting Started with the NI LabVIEW C Generator" manual to create a static library created inCygwin using GNU Compiler Collection (GCC). 
    I managed to compile the code, but when I type "run GCD.exe" in the Cygwin console, I just see the window flash with no time to see if the result is correct or not. I modified the main.c cde to add a getchar(), but the window still just flashes and now I am left with the GCD process still running and have to kill it using Windows Task Manager.
    Has anyone else got this example to run? I am sure I am missing an obvious setting or step, please help me.
    More details below.
    Thanks,
    Fab
    Here is a video showing the steps I followed 
    If you don't want/can't see the video. Here are some screenshots of what I have done so far:
    GratestCommonDivisor.lvproj C Generation build specs Information:
    C Function prototype definition:
    I copied Makefile located at: C:\Program Files (x86)\National Instruments\LabVIEW 2011\examples\CGenerator\Tutorial\Cygwin
    and replaced both Makefile and Makefile.cygwin in the directory where the C code was generated
    I also copied main.c from the same location and replaced the one generated
    Here is the snapshot of the results after executing "make GCD.exe"
    Then to run it I just type 
    I see a window open and close really quickly and I never see the result. I have tried adding the getchar() line to the main.c file, but still I don't get to see the results.
    Certified LabVIEW Architect * Certified Professional Instructor * LabVIEW Champion

    Hi Kevin,
    I hope you had a good Thanksgiving. I am attaching a zip file with the LabVIEW project, my build specification and my version of "Greatest Common Divisor.vi", which should be the same as the one that you have that ships with the LabVIEW C Generator, but just in case. I am also attaching a zip file with the C files generated by the LabVIEW C Generator.
    You can also see the video I posted earlier with the steps I followed. I hope you are able to point out where I went wrong. 
    Thanks,
    Fab
    Certified LabVIEW Architect * Certified Professional Instructor * LabVIEW Champion
    Attachments:
    GreatestCommonDivisor.zip ‏8 KB
    CGen Files.zip ‏71 KB

  • Getting started with an iBook G3?

    Hey,
    I just got an iBook G3 (500mhz, snow, airport, 10gb hd, upgraded ram), to compliment my iMac (G5 rev c) and I'm a little new.
    It was used, I got it via trade.
    Does anyone have some tips for me to get started with it ? I'm wanting to upgrade the HD to at least 20 GB, and to max out the ram. Any hints on that ?
    Also, where can I get a new battery and charger ?
    Also, what else should I know about it ?
    It will mainly be used for writing (novel, fan-fics), surfing the web (wirelessly), and when I'm traveling...
    Oh, it has OSX10.2 installed.

    Hi, Josh. Welcome to Apple Discussions.
    How much RAM is installed?
    Does it have the original AirPort card installed? (You may want to install one, if not, to enable wireless access to the internet.)
    Did the original system CD's and the OS X 10.2 software CD's come with it? If not, try to get the person you got it from to give them to you. You will need them if you intend to upgrade the hard drive (and for maintenance, even if you don't upgrade the hard drive).
    Hard drive upgrade services:
    MCE Technologies
    DT & T Computer Services
    A hard drive upgrade is very complicated, and best left to a professional.
    Check out the procedure:
    http://www.pbfixit.com/Guide/50.12.0.html
    http://www.powerbooktech.com/knowledge,name-Hard-Drive,type-6.htm
    http://uk.geocities.com/ibookupgrade/
    http://sterpin.net/uk/ddibookdualuk.htm
    Hard Drives:
    Other World Computing
    Newegg
    Batteries:
    http://www.powergears.com/product.php?catID=1100&p=1
    http://www.computergiants.com/items/one_item.asp?part=71148&cat=99&subsubcat=115 2
    http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore?productLearnMore=M93 37G/A
    http://eshop.macsales.com/item/Newer%20Technology/BAPIB111V36/
    http://eshop.macsales.com/item/Newer%20Technology/BAPIB111V48/
    Adapters:
    I have found the following options for replacing a white iBook power adapter:
    http://www.macresq.com/store/detail.php?prodID=P009141
    MCE Technologies
    http://www.madsonline.com/index.html?
    adapter at Other World Computing
    Apple's is the only one with the glowing ring, though, and is found here:
    http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore?productLearnMore=M89 43LL/A
    Enough dual USB G3 iBooks suffered from a logic board problem that Apple began the iBook Logic Board Repair Extension Program in January of 2004. Check out the FAQ page and be aware of how this logic board problem manifests itself.
    It has been suggested that you can minimize the chance of a logic board failure of this sort by never picking it up by the front left corner alone. Pick it up with both hands or in the center under the trackpad.
    It's also a good idea not to close it any more often than you need to in order to minimize the chance of the backlight cable (and other cables and wires) becoming pinched in the hinge or broken. When you have some time, check out the Discussion thread in the Displays Forum entitled 90 degrees and black out!!!!
    Information on using the battery to maximize both life and lifespan can be found here.
    You can download the manual for the iBook (Dual USB) from this page:
    http://www.apple.com/support/manuals/ibook/
    Good luck, and happy iBooking!

  • Developerday  VM Ora-12505 Getting Started with Oracle SQL Developer 3.0

    Just downloaded the VM , Started the tutorial Getting Started with Oracle SQL Developer 3.0
    As mentioned in tutorial , I was trying to make a new connection and I am getting following error
    Ora - 12505 : TNS Listener doesn't currently know of SID
    I gave SID as orcl, and seems to be working OK, can I use orcl for this tutorial
    Edited by: OrcArgusDev on Apr 13, 2012 9:01 AM
    Edited by: OrcArgusDev on Apr 13, 2012 9:11 AM

    Thanks, I'll survive. Just my luck, the first item I try to anon. debug didn't work! :)
    thanks, hopefully this problem will be few and far between

  • Java Applet HelloWorld "Getting Started With Applets" example not working

    Hi there,
    It's been ages since I ran my Linux CentOS boot of Linux but I am going through the official oracle java applet tutorials, just every time I try and run the "Hello World" applet in Firefox 17.0.3 and I am running the Iced Tea thing for java applets.
    Every time I try and run the example from the following code:
    import javax.swing.JApplet;
    import javax.swing.SwingUtilities;
    import javax.swing.JLabel;
    public class HelloWorld extends JApplet
      // called when the user enters the html page:
      public void init() // keep apps within the init() function very small as per the http://docs.oracle.com/javase/tutorial/deployment/applet/appletMethods.html
        try{
          SwingUtilities.invokeAndWait(new Runnable()
            public void run()
           JLabel myLabel = new JLabel("Hello World");
           add(myLabel);
            } // end running the application
          }); //end of swing invokeand wait
        } catch (Exception error){ // end user running the app in page
           // System.err.println("GUI didn't work on initial run");
    }It keeps bringing up the error "Start: Applet not initialized" I did google that basic error and from what I found I should consult the JavaConsole, I know the console was removed from the Firefox menu quite a while ago. So went to find a way of loading it using the IcedTea one but it keeps bringing up a load of errors in even trying to run that.
    Is there anyway of sorting this out? I mean I have even tried installing the one on the oracle website, the plain JDK but nothing seems to work.
    Is there anyone that can help me get applets working? I was even going to go as far as to reinstall my distro but I want to avoid that as much as possible.
    Thanks and I look forward to any replies,
    Jeremy.

    in the Getting Started with Java DB tutorial they
    tell u how to set ur "DERBY_HOME" (what is that?).
    once i press enter after typing this command:
    set DERBY_HOME=D:\Java\Java
    Phonebook\javadb in my command prompt do i get
    any message or does it just go to the next line?type env or set or whatever in the command line to see what your environment variables are set to
    they also tell u how to set ur "JAVA_HOME" (what is
    that?). The Java installation you want to use
    in their example they give u this: set
    JAVA_HOME=C:\Program Files\Java\j2se1.4.2_05but in my java folder i have jdk1.6.0 and jre1.6.0
    but no j2se1.4.2_05, so which 1 must i choose?It's up to you. I'd go with 1.6
    also once ive done this: set
    DERBY_HOME=D:\Java\Java Phonebook\javadb this
    set JAVA_HOME=D:\Program
    Files\Java\jre1.6.0 and this set
    PATH=%DERBY_HOME%\bin;%PATH% and then type
    sysinfo to verify that the variables were set
    correctly i get these errors: 'D:\Java\Java' is
    not recognized as an internal or external command,
    operable program or batch file and '""'
    is not recognized as an internal or external command,
    operable program or batch file any help would
    really be appreciated because this is really killing
    me!you need to set your path variable - so something like:
    set PATH=C:\Program Files\Java\j2se1.4.2_05\bin

  • FAQ: How do I get started with Photoshop Elements Editor, or What do all these tools do?

    Opening an image editing application for the first time can be intimidating. The more powerful the tool, the more complicated it can be to learn to use. Below are a list of resources to help you get started with the Photoshop Elements Editor.
    I just bought Photoshop Elements, where do I start?
    There are a lot of directions you can go when you first make your purchase. Here is your first roadmap.
    Getting Started Tutorials
    What do all these terms mean?
    There are some common words tossed around when talking about image editing or tool use. Here is a helpful guide to define these: Photoshop Elements key concepts
    Photoshop Element Help Topics:
    Workspace basics
    Tools
    Color and tonal correction basics
    Elements Basics, an overview of Elements' essential concepts on Photoshop Elements User.com
    Where can I find some tutorials on the web?
    There are many resources for learning Photoshop Elements on the internet. Here are some that we recommend.
    Photoshop Elements: Where can I find some good basic tutorials? on the Photoshop Feedback site.
    Like Photoshop Elements on Facebook for daily tutorials and inspiration. As well as the occasional contest.
    Editing Tutorials for Photoshop Elements on Photoshop.com
    Getting Started with the Elements Editor on Photoshop Elements User.com
    Photoshop Elements for Dummies.com
    What about video tutorials?
    Some find it easier to watch a product being demonstrated and explained by an expert
    Learn Photoshop Elements 11 on Adobe TV
    Photoshop Elements channel on YouTube
    Where can I find books about learning Photoshop Elements?
    Photoshop Elements books on Pearson Peachpit Press

    Hi Christoph and WarriorAnt,
    Thank you both for the replies.
    I don't know anything about GarageBand because I've never used it. I've never used any music software before, (other than iTunes, Ha!)
    I don't have GarageBand on my Mac because it wasn't stock on the old Powerbook G4, so I would have to buy it. I'm happy to do that if I can figure out that it does what I want ... but I'm overwhelmed by the info at Apple's site. Too much for a beginner like me. Even the wikipedia.com entry for GB uses too many terms I don't know, so I'm easily lost.
    I just want to be able to set up drum loops and play along with them. The main thing is that I'm able to use third party loops. There are so many really amazing loop products out there ... jungle drums, acoustic jazz drums, lounge, etc. I don't want to get caught up in anything proprietary (like Band-In-A-Box) because the selection is limited. I'm sure GarageBands loops are great, but I want access to all these other third party loops as well ... loops that were not specifically made for GarageBand.
    Will GarageBand let me drop in any and all drum loops from these other companies?
    And does GarageBand work like a basic sequencer, where I can program up an intro, X number of measures of a loop, then a turnaround, then a variation loop, then an ending, etc?
    I know the high-end stuff like Native Instruments Kontakt does this, but unfortunately it also does a kazillion other professional-level things I will never need and don't want to pay for (and which make the software more complex and daunting).
    Thank you again, both of you, for responding and helping me with this project.
    Just a little more advice on those two questions would really go a long way.
    -JOHN

  • Getting Started with FCE - Problems with my imported files

    Hi,
    I'm trying to get started with Final Cut Express, but I'm experiencing lots of problems when I import my project from iMovie.
    My project contains video, which I imported into iMovie at 960 x 540. It also contains some keynote animations, which I exported from Keynote as quicktime files.
    When I export my files to FCE, I instantly get problems.
    1) When I add the imported file to the sequence, I get an "Attention the clip does not match the sequence's setting or any of your sequence settings" error.
    2) Whether I choose to translate my settings or not, I try to play the video in the timeline, but there is a continuous beeping sound, no audio from my video and when it hits the keynote animations, it just says "unrendered" or "media offline".
    Please can you offer any advice on how I can get started with FCE more successfully.
    Thanks!

    Hi(Bonjour)!
    (please specify iMovie and FCE version)
    Well, your sequence settings in FCE should be DV-PAL 48 Khz.
    Create a new sequence.
    From iMovie and Keynote, export your movie with quicktime conversion andd select DV-PAL 48 kHz (*And Not* DV Stream...). This material should play without rendering because his format and codec match the sequence's codec.
    Import your files and everything should be OK.
    Michel Boissonneault
    The audio should be AIFF 48 kHz 16 bit linear PCM

  • Error, in Getting started with Labview. Chapter 3, part 4.

    Hi.
    Still struggling on, trying to find the time to work through the "Getting Started with LabVIEW" document.
    Only 19 days left to go, and I'm still only in chapter 3!...
    Right.  In the "Saving Data When Prompted by a User" exersise, part 4...
    4.   Right-click the Signals input of the Write To Measurement File
          Express VI and select Insert Input/Output from the shortcut menu to
          insert the Comment input.
    Problem is, that option is greyed out, so not available!...
    I did what the instructions said, I right clicked on the "Signals" input, and it doesnt do what it says on the tin!
    Any pointers?   Please don't mention search the help, I've crashed the entire LV environment 3 times now, trying to search for something in there.  It's OK if it finds someting, but it seems to bomb at times, when there is some ambiguity when searching.
    Also, I won't be able to do anyting with any replies for a day or two, as I have to go up country to a customer, and mess about with hot oil, high volts, and lots of RF.  It never ends.   (I've still got the day job to do, while trying to fight my way through this "evaluation".   30 days of "Use" would be better, than 30 calendar days for some of us.)
    Regards.
    Dave Baxter.
    Technical Manager: AR-UK Ltd.
    AR United Kingdom
    OK... Who let the smoke out?

    Hi Dennis, and everyone else..
    That is not how it looks when first dropped on the BD.  On my machine, it is partialy expanded by default, after you clear the Configure dialog that pops up ocupying most of the screen.
    Again, if it makes a difference to the way the Right Click shortcut menu works, it should be documented in the Getting Started document, especialy as it seems to be a critical point.
    OK, explain this...
    I've just rubbed out the save to file VI, cleaned up the broken wires etc, and then planted a new one on the BD.   Once I cleared the Configure dialog that covers up most of the screen before you see it the first time, the VI was partialy expanded.  I forget the exact list, but "Signals" was not at the top.
    I did *EXACTLY* the same again, deleted it, cleaned up, and then planted a fresh new one.   That DID appear that time with nothing but the "Signals" item showing, and two down caretts below that, indicating more items.
    So......
    Why the different behaviour each time, on the same BD, in the same session.   Some underlying working data not being correctly initialised when invoked?  Of course, that never happens, right? ('C' programmes eh?)
    Trying some more, it seems the behaviour loosley depends on just how close to the edge of the While loop grey border you place it.   Odd.   I have a 1280x800 screen to play with, and a 1280x1024 second screen I use for the Getting Started document.  That is the absolute maximum I can have, due to hardware limits.
    I also find, that if you fully expand the "Write to Measurement File" VI block, then fully collapse it, then expand it again, all the items in that list have changed places!  Why?
    I had noticed earlier that there is no uniformity in the layout of even the items common to many if not all VI blocks (error in, and error out to name but two) Sometimes one is above the other, sometimes the other way round, sometimes they are not even ajacent to each other.   Has that been done as a source of minor ammusement or something?
    Talking to another colegue here, who just wandered in to see how I was getting on with this.  Seems he also has tried the introductory entry into LV (V8.something) in the past.  But he too, found too many things that behaved differently from one time to another, so abandoned it as a lost cause, then decided to learn how to use Visual Basic with NI-GPIB IO instead.   Not without issues either he said, but at least it all behaves exactly the same, each and every time.
    End of the day now...
    Regards.
    Dave B.
    OK... Who let the smoke out?

  • How do I stop the Getting started with Mozilla Firefox page from opening everytime I start Firefox. If I have to see that everytime then I will delete Firefox for good...!!!!

    Everytime I start firefox since the last update I can't get the stupid Getting started with firefox page to stop opening up. I downloaded the version 8 and it still opens ..

    Well the latest and Greatest Firefox Version 8.0. Won't let me change my home page no matter what I do it always comes back with the getting started page and my orignal home page.
    What a piece of garbage it is turning into..!!!!

  • Getting Started with Swept Sine (DAQmx) Multiple Response Signals

    Hi,
    I've been using the modified version of the Getting started with swept sine.vi for multiple response signals
    https://decibel.ni.com/content/docs/DOC-24474. Program fully suitable.
    However, I am facing with three issues :
    1) The edits are highly non user friendly (horrible for 6 multi-channel already), and quite long to perform.
    2) Would there be a way using for loops to have a more compact and flexible way to use FRF? (Calling 6 times the same program in a similar structure does not quite seem like a smart move yet I'm relatively novice in LabVIEW).
    3) Be able to set the number of channels somewhere in the software, and automatically have the software to be able to cope with this? (aka if 20 multichannels are needed, no need to modify the code?)
    It's probably going to be a lot of work to get there, all I'm asking for you guys is to point me in the right direction and suggestions,
    Cheers,
    Kentmey
    Kentmey

    duplicate post, continue here…
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

Maybe you are looking for