How to access MC's textfield created in a custom class?

I have a custom class which creates a new MC using a library MC. The  library MC contains a dynamic textfield called productName.
The custom class object gets created fine and is displaying on the  stage. It's also holding custom properties I set as well.
How do I control the dynamic textfield inside the MC, which is inside  the custom class object?
My Product.as:
package {
     import flash.display.MovieClip;
     public class Product extends MovieClip {
         public var prodName:String;
         public var prodCategory:String;
         public var prodQuality:String;
         public function Product():void {
             var productMC:MovieClip = new cellMC();
             addChild(productMC);
My .FLA first frame:
var myProd1:Product = new Product();
myProd1.prodCategory = "Heaters";
myProd1.x = 150;
myProd1.y = 140;
addChild(myProd1);
// THE FOLLOWING DOES NOT WORK
myProd1.productMC.productName.text = "ABC 123";
I figure something like this would work, but with lots of variations, still nothing works
I get errors telling me it can't find productMC.
UPDATE:
Using GetByChildName it seems I can access productMC. For example this works:
myProd1.getChildByName("productMC").visible = false;
But this does not work:
myProd1.getChildByName("productMC").getChildByName("productName").text = "dgdhdhdhrgh";
If I take the textfield out of the library MC, and create it in the class, then this works:
myProd1.getChildByName("productName").visible = false;
BUT this does not work:
myProd1.getChildByName("productName").text = "sdgsgdfsg";

Hi Otto,
If I well understood your situation, the solution  might be quite simple.
Since your Product class is a  MovieClip (and not a Sprite), you could solve your problem many ways  knowing that a MovieClip is a dynamic class.
But first,  the thing is that you created your productMC object on the fly inside  your Product class.
So either you correct it like this:
package {
     import  flash.display.MovieClip;
     public class  Product extends MovieClip {
         public var  prodName:String;
         public var prodCategory:String;
          public var prodQuality:String;
         public var productMC:MovieClip; // *****
         public function  Product():void {
             productMC = new  cellMC(); // *********
             addChild(productMC);
Or use this cheap trick (a MovieClip is a dynamic class):
package {
     import  flash.display.MovieClip;
     public class  Product extends MovieClip {
         public var  prodName:String;
         public var prodCategory:String;
          public var prodQuality:String;
         public function  Product():void {
             var productMC:MovieClip = new  cellMC();
             this.productMC = productMC; // **************
             addChild(productMC);
Although it is possible that, for this one, you need to reforce the dynamic property:
package {
     import  flash.display.MovieClip;
     dynamic public class  Product extends MovieClip {
I am not sure, but anyway, you will see for yourself.
Plus, you try to change text to a MovieClip object? Either there is already a TextField in you cellMC object and you are not targeting it, or productMC should be instanciated as a TextField and not a MovieClip. I think you know the answer to that.
Design Cyboïde
Designer web Montreal

Similar Messages

  • How to access an attribute(this is referencing to another class) in a class

    Dear Gurus,
    I have to read an attribute of a class and that attributes type another class.
    I have intantiated the class and my question is how to read the attribute. I know I can not dirrectly read the attribute since this is another class. I think I have to first reference the attribute right? Please advise me.
    My code looks like below:
    data: lo_fpm                                 type ref to if_fpm.
    data: lo_msg_mgr                        type ref to if_fpm_message_manager.
    data: lo_component_manager    type ref to cl_fpm_component_manager.
    lo_fpm = cl_fpm_factory=>get_instance( ).    " cl_fpm_factory is a class which has a static method get_instance
    lo_msg_mgr = lo_fpm->mo_message_manager.
    lo_component_manager = lo_fpm->mo_component_manager.
    The above statement is giving syntax error. I do not know why.
    The basic difference b/n the two methods is if_fpm~mo_message_manager    type ref to if_fpm_message_manager    and
    mo_component_manager     type ref to cl_fpm_component_manager.
    Any help would be appreciated.
    Thanks,
    GSM

    Hello
    I cannot test the following coding because I do not get the singleton instance yet it should work:
    *& Report  ZUS_SDN_CL_FPM_FACTORY
    *& Thread: How to access an attribute(this is referencing to another class) in a class
    *& <a class="jive_macro jive_macro_thread" href="" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1398429"></a>
    REPORT  zus_sdn_cl_fpm_factory.
    DATA: go_fpm TYPE REF TO cl_fpm.  " class implements if_fpm.
    DATA: go_msg_mgr TYPE REF TO if_fpm_message_manager.
    DATA: go_component_manager TYPE REF TO cl_fpm_component_manager.
    START-OF-SELECTION.
      BREAK-POINT.
      go_fpm ?= cl_fpm_factory=>get_instance( ). " cl_fpm_factory is a class which has a static method get_instance
      CHECK ( go_fpm IS BOUND ).
      go_msg_mgr           = go_fpm->mo_message_manager.
      go_component_manager = go_fpm->mo_component_manager.
    END-OF-SELECTION.
    Regards
      Uwe

  • How to access variables in dynamically created custom components? (Flex 4.5)

    Hi i have another riddle here.
    i have few custom MXML components in my library and i am adding them to the stage by script, after that i want to fill some data, lets say Label.text, inside this component.
    The question is how to acces / reference variables or other components inside the main custom component which was added to the stage by script???
    thx M.

    ok, the answer is here
    http://blog.flexexamples.com/2008/08/28/creating-a-component-instance-by-class-name-in-act ionscript-30/

  • How to access properties of swf created with pdf2swf

    Hi all-
    I am new to flex, I have been using pdf2swf to convert
    multi-page pdfs to swf files and then load them in adobe flex. I am
    able to load the files correctly with SWFLoader but not access the
    properties to advance the frames (play, stop). I have been scouring
    the internet for a way to do this that I understand.
    I have tried doing something like:
    var mymovie:MovieClip = MovieClip(myloader.content);
    and then using
    mymovie.play();
    which I can't seem to get to work.
    Has anyone here done this successfully. If so, could you give
    me an example of how this is done?
    Thanks,
    Cameron Bracken

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    Flex 3 - Embedding asset types:
    You can embed Button and MovieClip symbols in a Flex
    application, but you cannot embed ... Alternatively, if you use the
    SWFLoader control to load the Flex
    Link:
    http://livedocs.adobe.com/flex/3/html/embed_4.html
    BrideL.OrG Blog Archive Importing a SWF into Flex with AS3:
    Jul 4, 2006 ... Just to say thanks for posting the SWFLoader
    example, the ONLY one on the ... controlling frames using the
    movieclip details via SWFLoader.
    Link:
    http://www.bridel.org/?p=9
    All Classes (Flex 3):
    mx.skins.halo, The skin for the border of a SWFLoader or
    Image component when ..... mx.core, FlexMovieClip is a subclass of
    the Player's MovieClip class.
    Link:
    http://livedocs.adobe.com/flex/3/langref/class-summary.html
    Cannot load the SWFLoader content in a movieclip - Flex
    India:
    May 17, 2007 ... implementation of movieClip class in as2 is
    different from as3. ... Im just trying to load a .swf in flex. Im
    using SWFLoader
    Link:
    http://groups.google.com/group/flex_india/msg/85ec872c7d94851a
    S (Flex 3):
    SWFLoader. A flag that indicates whether to scale the content
    to fit the ..... for the content in the browser, such as
    'www.adobe.com' or 'www.example.org'.
    Link:
    http://livedocs.adobe.com/flex/3/langref/all-index-S.html
    SWFLoader gotoAndStop [Archive] - ActionScript.org Forums:
    Jun 27, 2006 ... [Archive] SWFLoader gotoAndStop Flex 2 &
    3. ... Is there any way that it is possible to cast the movieclip
    to flash 9 movieclip?
    Link:
    http://www.actionscript.org/forums/archive/index.php3/t-109586.html
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • How to access local connection factory created within Foreign Server in OSB

    Hi All
    I am facing an issue in my config plan. We have a RIB Foreign server with the following local connection factory:
    jms/RibAqJmsXATopicConnectionFactory
    I am using the below in my configuration plan:
    <cus:envValueAssignments>
    <xt:envValueType>Service URI</xt:envValueType>
    <xt:location xsi:nil="true"/>
    <xt:owner>
    <xt:type>ProxyService</xt:type>
    <xt:path>RLTPReturnToWarehouse/ProxyServices/ConsumeRIBRTWMessages</xt:path>
    </xt:owner>
    <xt:value xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">jms://localhost:7001/jms.RibAqJmsXATopicConnectionFactory/jms.etASNInFromRIBToWH1</xt:value>
    </cus:envValueAssignments>
    and i am getting the below error:
    [java]
    [java] Loading customization File ./dev/OSBCustomizationFile.xml
    [java] Customization applied to the created resources only []
    [java] com.bea.wli.config.customization.EnvValueCustomization@553c13
    [java] Unexpected error: com.bea.wli.sb.transports.TransportException
    [java] Problem invoking WLST - Traceback (innermost last):
    [java] File "D:\VFUKScripts\DeploymentScripts\osb\import.py", line 200, in ?
    [java] File "D:\VFUKScripts\DeploymentScripts\osb\import.py", line 122, in importToALSBDomain
    [java] com.bea.wli.sb.transports.TransportException: Failed to lookup connection factory jms.RibAqJmsXATopicConnectionFactory
    what am i missing here?

    [java] com.bea.wli.sb.transports.TransportException: Failed to lookup connection factory jms.RibAqJmsXATopicConnectionFactory
    Looks like the JNDI that you created for the ConnectionFactory is not reflected in the server.
    Login to WLS Console> Summary of Servers > server_name > View JNDI Tree
    Browse to the JNDI tree and see if your JNDI is visible there. If it is not then, please restart the server and recheck.
    Once you are able to find it in the JNDI tree, then execute the customization file.
    If you have modified the existing JNDI properties (that have a small exclamatory symbol) then any changes to those are not reflected till all the servers in the cluster are restarted.
    If it still does not work, then recreate a new Connection with a different name and then retry. It should work then.
    Thanks,
    Patrick

  • How to access AM/VO instance from a Java Service class

    Hi,
    I have a Java service class that is loaded by Java ServiceLoader (http://download.oracle.com/javase/6/docs/api/java/util/ServiceLoader.html) at run time, and I need to access database tables inside that service class. So is there any way that I can access AM/VO instances from that Java class in order to read database table? Thanks.
    Regards,
    K Hein

    You can access an application module with the the two methods below:
        YOURAppModule mAM;
        public void setUpAM()
            throws NamingException
            try
                String AMDefName = "YOUR_APP_DEF_NAME";
                Hashtable env = new Hashtable(2);
                env.put(JboContext.INITIAL_CONTEXT_FACTORY, JboContext.JBO_CONTEXT_FACTORY);
                env.put(JboContext.DEPLOY_PLATFORM, JboContext.PLATFORM_LOCAL);
                ApplicationModule am = null;
                InitialContext ic = new InitialContext(env);
                ApplicationModuleHome home = (ApplicationModuleHome) ic.lookup(AMDefName);
                am = home.create();
                // Connect the AM to a database connection
                String jndiDB = "jdbc/HRDS";
                am.getTransaction().connectToDataSource(null, jndiDB, false);
                boolean connected = am.getTransaction().isConnected();
                mAM = (YOURAppModule) am;
            catch (NamingException nex)
                // do some error processing
                throw nex;
            catch (Exception eee)
                // do some error processing
                throw eee;
        public void tearDownAM()
            if (mAM != null)
                if (mAM .getTransaction().isConnected())
                    mAM .getTransaction().disconnect();
                    mAM .remove();
        }You find the YOUR_APP_DEF_NAME in your application module under 'Configurations' -> AppModuleJndiName.
    Make sure you tear down each AM you set up. Otherwise you are running out of resources pretty fast.
    Timo

  • How to access an external text file in a Servlet class?

    I do the regular file I/O in the Servlet class. But when I run Servlet class, text file is not loaded. Can sb tell me how to do it?
    Thanx
    Richard

    Hi DrClap;
    the following is the main servlet code, which calls other two classes.
    ===================================================================
    import java.io.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class TermsServlet extends HttpServlet {
              public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
              resp.setContentType("text/html");
              PrintWriter out = resp.getWriter();
              out.println("<HTML>");
              out.println("<TITLE>Computer Terms and Acronyms</TITLE>");
              out.println("<BODY>");
              out.println("<H1>Computer Terms and Acronyms</H1>");
              out.println("<TABLE BORDER=2>");
              out.println("<TR><TH>Term<TH>Meaning</TR>");
              TermsAccessor tax = new TermsAccessor("terms.txt");
              Iterator e = tax.iterator();
              while (e.hasNext()) {
                   Term t = (Term)e.next();
                   out.print("<TR><TD>");
                   out.print(t.term);
                   out.print("<TD>");
                   out.print(t.definition);
                   out.println("</TR>");
              out.println("</TABLE>");
              out.println("<HR></HR>");
              out.println("</BODY></HTML>");
    =================================================
    import java.io.*;
    import java.util.*;
    public class TermsAccessor {
         protected BufferedReader is;
         protected String ident;
         public TermsAccessor(String inputFileName) throws IOException {
              is = new BufferedReader(new FileReader(inputFileName));
              String ident = is.readLine();
         public String getIdent() {
              return ident;
         public Iterator iterator() {
         return new Iterator() {
              String line, term, defn;
    public boolean hasNext() {
              try {
              return ((line = is.readLine()) != null);
              } catch (IOException e) {
              System.err.println("IO Error: " + e);
              return false;
              public Object next() {
              int i;
              while ((i = line.indexOf("\t"))<0 && hasNext());
              if (line == null)
              throw new IllegalStateException("Invalid EOF state");
                        term = line.substring(0, i);
                        defn = line.substring(i+1);
                        return new Term(term, defn);
              public void remove() {
              throw new UnsupportedOperationException();
    =============================================================
    public class Term {
              public String term;
              public String definition;
              public Term(String t, String d) {
              term = t;
              definition = d;
    =================================================================
    part of [terms.txt] file as following:
    $Id: terms.txt,v 1.5 2000/03/17 04:08:55 $
    AMD     American Micro Devices: a chip maker that competes with Intel.
    API     Application Programmer Interface: a set of functions that a programmer can use
    ASP     Active Server Pages, a Microsoft technology for imbedding certain commands in HTML pages
    BSD     Berkeley Software Distribution, one of the two major flavors of UNIX. See OpenBSD
    C     A computer programming language invented for writing UNIX in, and very popular in the late 1970's through the 1990's
    C++     An Object-Oriented language heavily based on C; recently displaced by Java
    CGI     Common Gateway Interface; a script or program used to handle a form on a web page
    COBOL     COmmon Business Oriented Language, a programming language used mainly for large-scale financial applications.
    CPU     Central Processing Unit, the "chip" that gives a computer its low-level personality ("machine instruction set") and performs individual instructions (add, multiply, compare...). Common CPUs include Intel/AMD "PC", SPARC, Alpha.
    =================================================================
    the "terms.txt" file and above class files are under the same directory. I use J2EE server to deploy the file, after run, the erro mesage is:"The requested resource (terms.txt (The system cannot find the file specified)) is not available." That means server can not locate the terms.txt file. So what file path should I use?
    Thanx
    Richard

  • How to access Current Servlet Context from a java webservice class?

    Hi,
    I' am developing a Java Web Service Class, and I want to access some application settings information stored in the application context,
    but I couldn't get access to the current ServletContext?
    Note:
    I added my settings to the web.xml file in the WEB-INF folder.
    Normally I' am using getInitParameter(key) to get the value.
    Can any one help me please?
    Message was edited by:
    MySecreen

    Hi,
    I' am developing a Java Web Service Class, and I want
    to access some application settings information
    stored in the application context,
    but I couldn't get access to the current
    ServletContext?
    Note:
    I added my settings to the web.xml file in the
    WEB-INF folder.
    Normally I' am using getInitParameter(key) to get the
    value.
    Can any one help me please?
    Message was edited by:
    MySecreenI was faced with a similar issue, here's what worked for me:
    Have your class implement the ServiceLifecycle Interface and use it as you normally would, here's a sample
    import javax.xml.rpc.ServiceException;
    import javax.xml.rpc.server.ServiceLifecycle;
    import javax.xml.rpc.server.ServletEndpointContext;
    import javax.servlet.ServletContext;
    public class SomeClass implements ServiceLifecycle {
         private ServletContext sc = null;
    ....// rest of class code......
    public void init(Object arg0) throws ServiceException {
              ServletEndpointContext ctx;
              ctx = (ServletEndpointContext) arg0;
              sc = (ServletContext) ctx.getServletContext();
    ...}

  • How to access Revenue records

    <b>[This thread was migrated from the On Demand Developer Forum in the old Siebel Community] </b>
    algocode
    New Contributor
    I try connecting to Revenue records with web services using the same user
    ID with which I'm able to create Service Revenue Details information from
    the CRM OnDeman user interface but instead, I get an error message saying
    "Access denied.(SBL-DAT-00553)";(SBL-EAI-04376).
    Why can't the web service read the revenue records that I am able to
    create or update manually from the CRM OnDemand portal, with the same ID?
    Product: General: IT Organizations and Processes
    10-27-2006 11:25 AM
    Re: how to access Revenue records
    algocode
    New Contributor
    Inside a class extending System.Web.UI.Page, I use the
    secure.crmondemand.com/OnDemand/user/account.wsdl?WSDLOBJ=account web
    service to
    1. Create a list of accounts and specify the fields returned by the
    result set;
    2. Create an AccountWS_AccountQueryPage_Input object;
    3. Retrieve an AccountWS_AccountQueryPage_Output object;
    These are the three methods involved:
    protected void Page_Load(object sender, System.EventArgs e)
    Account1[] objListOfAccount;
    //Initialize the ListOfAccount Arrays and Sub-Arrays
    objListOfAccount = createListOfAccount("";
    //Specify the Account Search Criteria
    objListOfAccount[0].AccountName = "LIKE '" + data["Account"] + "*'";
    //Tell OnDemand What Account fileds should be returned in the result set
    objListOfAccount[0].AccountId = "";
    objListOfAccount[0].Location = "";
    //Tell OnDemand What fields to return on the Opportunity Child
    objListOfAccount[0].ListOfOpportunity[0].OpportunityId = "";
    objListOfAccount[0].ListOfOpportunity[0].OpportunityName = "";
    objListOfAccount[0].ListOfOpportunity[0].CurrencyCode = "";
    //Tell OnDemand What fields to return on the Opportunity Service Child
    objListOfAccount[0].ListOfRevenue[0].RevenueId = "";
    objListOfAccount[0].ListOfRevenue[0].OpportunityName = "";
    objListOfAccount[0].ListOfRevenue[0].NumberOfPeriods = "";
    objListOfAccount[0].ListOfRevenue[0].Frequency = "";
    objListOfAccount[0].ListOfRevenue[0].StartCloseDate = "";
    //Call the Account Query
    AccountWS_AccountQueryPage_Input objAccQryParam =
    new
    AccountWS_AccountQueryPage_Input();
    objAccQryParam.ListOfAccount = objListOfAccount;
    objAccQryParam.PageSize = "90";
    AccountWS_AccountQueryPage_Output objQryOutput =
    RetrieveQueryPageOutput(objAccQryParam, session);
    public Account1[] createListOfAccount(string pstrAccountDimensions)
    int intAccountCount = 1;
    int intOpportunityCount = 20;
    int intRevenueCount = 10;
    try
    Account1[] rtnListOfAccount = new Account1[intAccountCount];
    for (int intAccIdx = 0; intAccIdx < intAccountCount; intAccIdx++)
    rtnListOfAccount[intAccIdx] = new Account1();
    rtnListOfAccount[intAccIdx].ListOfOpportunity =
    new
    Opportunity[intOpportunityCount];
    rtnListOfAccount[intAccIdx].ListOfRevenue =
    new Revenue[intRevenueCount];
    for (int intOppIdx = 0; intOppIdx < intOpportunityCount;
    intOppIdx++)
    rtnListOfAccount[intAccIdx].ListOfOpportunity[intOppIdx] =
    new Opportunity();
    for (int intRevIdx = 0; intRevIdx < intRevenueCount; intRevIdx++)
    rtnListOfAccount[intAccIdx].ListOfRevenue[intRevIdx] =
    new Revenue();
    return rtnListOfAccount;
    catch (Exception objExcep)
    throw objExcep;
    public AccountWS_AccountQueryPage_Output RetrieveQueryPageOutput(
    AccountWS_AccountQueryPage_Input qpinput,
    Session session)
    AccountWS_AccountQueryPage_Output qpoutput = null;
    // instantiate the proxy service
    Account accountProxy = new Account();
    try
    // set up the target URL & set the session cookie
    accountProxy.Url = session.GetURL();
    accountProxy.CookieContainer = session.GetCookieContainer();
    qpoutput = accountProxy.AccountQueryPage(qpinput);
    catch (Exception e)
    Response.Write("<br/><br/>" + e.InnerException);
    Response.Write("<br/><br/>" + e.Message);
    Response.Write("<br/><br/>" + e.StackTrace);
    return qpoutput;
    10-27-2006 02:31 PM
    Re: how to access Revenue records
    algocode
    New Contributor
    I found another way to access Revenue records. Instead of accessing the
    ListOfRevenue field of the Account web service, I access the ListOfProduct
    field of the Opportunity web service. I also instantiate Opportunity2
    objects so that the code to get a list of opportunities and products
    (containing revenue fields) becomes
    Opportunity2[] rtnListOfOpportunity = new
    Opportunity2[intOpportunityCount];
    try
    for (int intOppIdx = 0; intOppIdx < intOpportunityCount;
    intOppIdx++)
    rtnListOfOpportunity[intOppIdx] = new Opportunity2();
    rtnListOfOpportunity[intOppIdx].ListOfProduct =
    new Product[intProductCount];
    for (int intProdIdx = 0; intProdIdx < intProductCount;
    intProdIdx++)
    rtnListOfOpportunity[intOppIdx].ListOfProduct[intProdIdx] =
    new Product();
    return rtnListOfOpportunity;
    10-28-2006 11:17 AM
    Re: how to access Revenue records
    Echo
    Valued Contributor
    Weird. I'm not a big C# programmer but the code looks right. I'm curious -
    could you post some soap loads of the request. I'm wondering if there's
    something weird going on with the proxy.
    10-31-2006 12:00 AM

    I Assume the following is your sample data
    Table Name: Tab1
    RegID CustID Registration_Start      Registration_End
    1      1      01/04/2005           07/04/2005
    2      2      01/03/2005           29/05/2005
    3      1      21/03/2005           29/03/2005
    4      1      01/03/2005           21/03/2005
    Note : For the Regid "4" I have changed the Registration_End to 21/03/2005. It was earlier 21/04/2005.
    Coming to the query, you need to generate the list of regid that have gaps.
    Try the following query:
    SELECT c.*
    FROM tab1 c
    WHERE c.reg_id NOT IN (
    SELECT a.reg_id
    FROM tab1 a, tab1 b
    WHERE a.cust_id = b.cust_id
    AND a.registration_end = b.registration_start
    Note: I am sorry I didn't have access to the data base to execute my query. Correct me if I am wrong.
    Regards,
    Somu

  • How to access removable disks?

    I'm new on Elements and seem to stumble in the first round. I use  several extern datadisks (for photo's, audio etc.) via USB - how can I import photo's and other stuff from these? No other program but Elements has a problem with that...

    Thank you for your fast response!... From my side I should have supplied more info. My working horse  is an eMac with for all possible data (photos, audio, backup etc) extern (USB 2) drives attached. These drives are formatted with MacOS (journalled) or FAT32. The OS is Mavericks with Elements 12. When trying to import files - 'Photos from cameras or devices' - it says under 'Source' just 'No device found' whatever I try. However after several tries it now seems to work with Organizer. And so I take it from there...
    Op 30 apr. 2014, om 23:52 heeft A.T. Romano <[email protected]> het volgende geschreven:
    Re: How to access removable disks?
    created by A.T. Romano in Premiere Elements - View the full discussion
    HenkDeBoer
    What version of Premiere Elements are you using and what computer operating system is it running?
    For now, I will asssume Premiere Elements 12 on Windows 7, 8, or 8.1 64 bit.
    If you have video storage on an USB 2 or 3 external hard drive and you want to use any of it in a Premiere Elements project, you should be able to use Premiere Elements Add Media/Files and Folders to navigate to the external hard drive and import the file(s) into the project. What is happening in your case to give you problems?
    Is the external hard drive USB 2 or 3, is the drive letter staying constant, and is the external hard drive formatted NTFS if you are working on Windows? If Mac, what format is your external hard drive?
    Or do you have your media stored on a USB 2 or 3 Flash Drive or DVD disc...if so, then you would use Add Media/"Videos from Flip or Camera"/Video Importer after you insert your USB Flash Drive into a USB port or place the DVD disc in the burner tray.
    Please review and consider, supply details, and then we shall work on resolving whatever Premiere Elements workflow problems that you are having.
    Thanks.
    ATR
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6345590#6345590
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6345590#6345590
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6345590#6345590. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Premiere Elements at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How to add attributes NetConnectionStatus and NetConnectionID to Win32_NetworkAdapter Hardware Class

    We are trying to run SCCM (CM2012 R2) reports that show devices with an active network connection. I know that there is a WMI class, Win32_NetworkAdapter, that has the attribute NetConnectionStatus, which if it has a value of 2 means it has an active connection.
    I can go into WBEMTEST on my Windows 7 (works with XP too) device, and can get directly to the Class / Attribute. However, when I go into Hardware Inventory (through Client Settings) and look at the Win32_NetworkAdapter Class, I don't even see this attribute
    for me to enable.
    What can I do? I'd like to start gathering this information during the Hardware Inventory Scans.
    Thanks!

    So based on what you are saying, we should create a new custom class? Say "Custom_NetworkAdapter" or something like that?
    So basically import something like this?
    [ SMS_Report (TRUE),
    SMS_Group_Name ("Network_Adapter_Addtl"),
    SMS_Class_ID ("CUSTOM|Network_Adapter_Addtl|1.0"),
    Namespace ("\\\\\\\\.\\\\root\\\\cimv2") ]
    class Win32_NetworkAdapter : SMS_Class_Template
    [ SMS_Report (TRUE), key ]
    String DeviceID;
    [ SMS_Report (TRUE) ]
    String AdapterType;
    [ SMS_Report (FALSE) ]
    Boolean AutoSense;
    [ SMS_Report (FALSE) ]
    UInt16 Availability;
    [ SMS_Report (FALSE) ]
    String Caption;
    [ SMS_Report (FALSE) ]
    UInt32 ConfigManagerErrorCode;
    [ SMS_Report (FALSE) ]
    Boolean ConfigManagerUserConfig;
    [ SMS_Report (TRUE) ]
    String Description;
    [ SMS_Report (FALSE) ]
    Boolean ErrorCleared;
    [ SMS_Report (FALSE) ]
    String ErrorDescription;
    [ SMS_Report (FALSE) ]
    UInt32 Index;
    [ SMS_Report (FALSE) ]
    DateTime InstallDate;
    [ SMS_Report (FALSE) ]
    Boolean Installed;
    [ SMS_Report (FALSE) ]
    UInt32 LastErrorCode;
    [ SMS_Report (TRUE) ]
    String MACAddress;
    [ SMS_Report (TRUE) ]
    String Manufacturer;
    [ SMS_Report (FALSE) ]
    UInt32 MaxNumberControlled;
    [ SMS_Report (FALSE), SMS_Units ("DecimalString") ]
    UInt64 MaxSpeed;
    [ SMS_Report (TRUE) ]
    String Name;
    [ SMS_Report (TRUE) ]
    String NetConnectionID;
    [ SMS_Report (TRUE) ]
    UInt16 NetConnectionStatus;
    [ SMS_Report (FALSE) ]
    String NetworkAddresses[];
    [ SMS_Report (FALSE) ]
    String PermanentAddress;
    [ SMS_Report (FALSE) ]
    String PNPDeviceID;
    [ SMS_Report (FALSE) ]
    UInt16 PowerManagementCapabilities[];
    [ SMS_Report (FALSE) ]
    Boolean PowerManagementSupported;
    [ SMS_Report (TRUE) ]
    String ProductName;
    [ SMS_Report (TRUE) ]
    String ServiceName;
    [ SMS_Report (FALSE), SMS_Units ("DecimalString") ]
    UInt64 Speed;
    [ SMS_Report (TRUE) ]
    String Status;
    [ SMS_Report (FALSE) ]
    UInt16 StatusInfo;
    [ SMS_Report (FALSE) ]
    String SystemName;
    [ SMS_Report (FALSE) ]
    DateTime TimeOfLastReset;

  • HT1527 I have windows 8.1 and cannot access itunes store even creating a new apple id. With other users on the same computer I can access itunes store. How can I solve this?

    I have windows 8.1 and cannot access itunes store even creating a new apple id. With other users on the same computer I can access itunes store. How can I solve this?

    i had the same problem before using a fresh install of Windows 8.1.  I have resolved this issue by running the program compatibility wizard.  This I did by right-clicking on the iTunes icon in the desktop, selecting Troubleshoot compatibility, waited for it to detect compatibility issues and when presented with the following options: 1.) Try recommended settings; 2.) Troubleshoot program, I chose the latter.  When asked what problems I noticed, I checked the following: "The program worked in earlier versions of Windows but won't install or run" and "The program requires additional permission"
    After that, it tired to resolve the issue, and provided the necessary settings to run iTunes.  Now it's running flawlessly.  I have Avast anti-virus installed though.
    HTH!

  • How to access a Plan created in Enterprise Link Design Studio

    I have created a Plan in Design Studio of Enterprise Link and i would like to put it in a report which i am planning to create using BAM active studio. Can some body tell me how to access things created in Enterprise Link from active studio/architect.

    hi
    You have to create a plan to connect to the external message source, get the message and parse , and finally put it in the ADC data object (user created object). After this step, all your incoming messages will be in ADC data object. Only after getting the message into ADC object, you can use this object - you can create reports using this object.
    I have a few questions
    a) Can you identify your company. b) Have you taken the BAM training course c) These steps are given in training documents in lab 2-6 step by step.
    Do let me know if you need any help, contact directly at [email protected]

  • How to access OS User created with "identified externally"

    I am able to
    SQL> create user ops$deskuser identified externally;
    while deskuser is one of my OS user.
    I believe it is a very easy question, however I just do not know how to access this user from sqlplus., please help
    Thanks in advance

    oracle@mini:~> sqlplus system
    SQL*Plus: Release 10.1.0.3.0 - Production on Sun Nov 13 21:11:47 2005
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> create user ops$pops identified externally;
    User created.
    SQL> grant connect to pops;
    Grant succeeded.
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    oracle@mini:~> su - pops
    \Password:
    Illinois isn't exactly the land that God forgot -- it's more like the
    land He's trying to ignore.
    pops@mini:~> . oraenv
    ORACLE_SID = [pops] ? orcl
    pops@mini:~> sqlplus /
    SQL*Plus: Release 10.1.0.3.0 - Production on Sun Nov 13 21:16:59 2005
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL>

  • How to access the Microsoft Dynamics database tables for creating a DW

    Hi all,
    I m trying to build a POC for the manufacturing industry (Dairy Industry).
    Hence I'm trying to install Microsoft Dynamics and access the tables available its OLTP and create a warehouse.
    Please let me know how we access the database tables of Microsoft Dynamics to do etl (using any etl tool).
    Then i would be creating reports and dashboard using OBIEE 11G.
    I thought of getting help before installing microsoft dynamics so that i can install the necessary components to achieve the same.
    Please let me know the necessary things i would need to do.
    Thanks
    Jaan

    Hi,
    I think this can be possible with microsoft ssis etl tool.
    Thanks,
    Navin Kumar Bolla

Maybe you are looking for

  • G710 Windows 7 Pro x64 Bluetooth + Wireless driver install errors (can't install)

    Hi all, I've recently just purchased the G710 i3 model as a birthday gift for my dad. It originally came with Windows 8 installed but my father prefers Windows 7 so I've installed this on a SSD (replacing the 1TB drive). After updating Windows 7 Prof

  • Sorting F110 Printout by Vendor Line Items

    Folks, How can I sort the Payment prinouts from t-code F110 by Vendor and Line items. I tried looking at RFFORI01 but there is no place where I can sort and rearrange the items so that one page prinout will be printed first and multi page printouts l

  • I can't see RAW photos (from Nikon D3100) in iPhoto...

    Hi!! I am trying to import photos from mi Nikon D3100 to Iphoto 11, but there is a problem: I can't open the photos; the files are located in the folder of Iphoto Library, but it can´t be open by Iphoto. The extension file is.raw, but i have updated

  • Flash web gallery - style.xml start with slideshow in play?

    When creating a web gallery with Lightroom, using a default flash template, a style.xml sheet is created. Does anyone know the line of code in that style.xml that sets the gallery to load with the slideshow in play mode? thanks, Donnie

  • IMac and new Thunderbolt displays

    Has anyone seen anything on the max number of monitors with the 2011 iMac and the new Thunderbolt displays?  Theoretically you could hook up 4 external monitors using the new Thunderbolt monitor + the 27' iMac display for a total of 5, 27' monitors.