Use variables inside MovieClip names to call them in ASP 3.

This line of code works fine for me:
this.helpB1Btns.helpB1B3.alpha = 0.3;
But I wonder how can I use variables instead of numbers ( 1 and 3 ) above??
I mean for example:
var i:int = 1;
var j:int = 3;
this["helpB"+i+"Btns.helpB"+i+"B"+j+".alpha"] = 0.3; //Error
["helpB"+i+"Btns.helpB"+i+"B"+j+".alpha"] = 0.3; //Error
this["helpB"+i+"Btns"].["helpB"+i+"B"+j+".alpha"] = 0.3; //Error
For instance, this code works fine:
this["helpB"+i+"Btns"].alpha = 0.3;
(this.helpB1Btns.alpha = 0.3;)
But I have no idea to code this:
this.helpB1Btns.helpB1B3.alpha = 0.3;
I appreciate your help or any refference I could learn this fundamentally?
yours,
  Ali

ahhhhhhh......I was only one DOT wrong and trying different methods for HALF AN HOUR!! lol
I wish Flash was more intelligent to correct such small mistakes!!
Thank you SO MUCH for your reply

Similar Messages

  • Please help on how to use variables inside a method call

    Hello guys,
    How's it goin?
    Pardon me if you find my question silly, but I am relatively
    new in ActionScript 2.0 programming.
    I have here a simple problem. It seems I can't use a variable
    inside a method call of an object. Here's the code. Please note of
    the authParams string variable below.
    import AkamaiConnection;
    import mx.services.WebService;
    var GeneratedToken:String;
    var authParams:String;
    // Create a Web Service object
    var TokGenService:WebService = new WebService("
    http://webservice.asmx?wsdl");
    // Call the web service method
    var myToken:Object = TokGenService.GenerateToken();
    // Create an AkamaiConnection object
    var connection:AkamaiConnection = new AkamaiConnection();
    connection.addEventListener("onConnect", this);
    connection.addEventListener("onError", this);
    // If you get a result from the web service, save the result
    in a variable
    myToken.onResult = function(result)
    // If you get a result from the web service, save the result
    in a variable
    myToken.onResult = function(result)
    GeneratedToken = result;
    authParams = GeneratedToken +
    "&aifp=v001&slist=37414/test/Streaming/";
    //Call the Connect method of the AkamaiConnection class
    connection.connect("cp37414.edgefcs.net/ondemand",true,true,5,true,false,"443","rtmpt",
    authParams);
    But then, if I use a hard-coded string value in lieu of the
    variable, the method call works!
    connection.connect("cp37414.edgefcs.net/ondemand",true,true,5,true,false,"443","rtmpt",
    "testStringvalue");
    I don't know what I'm missing or what I'm doing wrong... Can
    somebody help me please? I am using a 30-day trial version of Adobe
    Flash CS3. Also, when I Trace output the variables, the values are
    there. It just that they can't be read or recognize inside the
    method call. Is this a ActionScript limitation?
    Thanks so much in advance!

    The result param is a returned, “Decoded ActionScript
    object version of the XML”. I am not exactly sure what that
    means but I have had issues of returned XML values and their
    datatype. When I did have these issues I had to cast or convert
    into the desired datatype. Try one of the following, assuming the
    problem is related to the code that you have bolded.
    GeneratedToken = result.toString();
    authParams = GeneratedToken +
    "&aifp=v001&slist=37414/test/Streaming/";
    Or
    GeneratedToken = String(result);
    authParams = GeneratedToken +
    "&aifp=v001&slist=37414/test/Streaming/";
    Or
    GeneratedToken = result.toString();
    authParams = String(GeneratedToken +
    "&aifp=v001&slist=37414/test/Streaming/");

  • HT2305 Since updating my laptop from Windows Vista to Windows 7, my Ipod Shuffle, 3rd generation does not recognize last 3 playlist names; it calls them out as "playlist 3, playlist 4 -- even though in the panel the names are showing just fine. The music

    I have recently updated my laptop from Windows Vista to Windows 7. I have just added three new playlists to my Ipod Shuffle, 3rd generation. On the panel in ITunes in view on the computer, all looks fine and music plays. However, after syncing a million times, when clicking to "hear" the playlists, the voice will call out all the old playlists just fine - except for the 3 new ones I've added; it calls them out as "playlist 3, playlist 8, or "purchased". All software for the ITunes has been updated as of the moment. Why would switching from Vista to Windows 7 cause this frustrating issue? All help appreciated.

    From page 23 of your iPod's User Guide: http://manuals.info.apple.com/en_US/iPod_shuffle_3rdGen_UG.pdf
    If VoiceOver is disabled in iTunes, you hear an abbreviated menu of playlists in numbered order, but not by name (for example, “Playlist 1, Playlist 2,” and so on).
    So you'll want to make sure VoiceOver is enabled to correct this.
    B-rock

  • Using variables as table names. Ideas for alternative designs

    Hi,
    I am designing an application which uses synonyms to pull information from 'client' DBs via DB Links. The synonyms are created with a DB_ID in the name (example: CUSTOMER_100, CUSTOMER_200... where 100 and 200 are DB IDs from 2 separate client DBs.
    I have a procedure which selects data from the synonym based on what DB_ID is passed to the procedure. I want to be able to run this one procedure for any DB_ID that is entered. I am now aware I cannot use variable names for table names and using EXECUTE IMMEDIATE doesnt seem to fit for what I am trying to do.
    Does anybody have any suggestions or re-design options I could use to achieve this generic procedure that will select from a certain synonym based on the DB info input parameters? Thanks.
    CREATE OR REPLACE PROCEDURE CUSTOMER_TEST(p_host IN VARCHAR2, p_db_name IN VARCHAR2, p_schema IN VARCHAR)
    IS
       v_hostname     VARCHAR2 (50) := UPPER (p_host);
       v_instance     VARCHAR2 (50) := UPPER (p_db_name);
       v_schema     VARCHAR2 (50) := UPPER (p_schema);
       v_db_id  NUMBER;  
       v_synonym VARCHAR2(50);
       CURSOR insert_customer
       IS
         SELECT 
           c.customer_fname,
           c.customer_lname
         FROM v_synonym_name c;
    BEGIN
    -- GET DB_ID BASED ON INPUT PARAMETERS       
      select d.db_id
      into v_db_id
      from  t_mv_db_accounts ac,
      t_mv_db_instances i,
       t_mv_dbs d,
       t_mv_hosts h
      where ac.db_ID = d.db_ID
      and i.db_ID = d.db_ID
      and i.HOST_ID = h.host_id
      and upper(H.HOST_NAME) = v_hostname
      and upper(D.DB_NAME) = v_instance
      and upper(Ac.ACCOUNT_NAME) = v_schema;
      --APPEND DB_ID TO THE SYNOYNM NAME
      v_synonym := 'CUSTOMER_'||v_db_id;
      FOR cust_rec IN insert_customer
      LOOP
         INSERT INTO CUSTOMER_RESULTS (First_Name, Last_Name)
         VALUES (cust_rec.customer_fname, cust_rec.customer_lname);
      END LOOP;
      COMMIT;
    END;
    Rgs,
    Rob

    Hi
    rules engine style with table that holds the logic or code SQL directly in the procedure and IF THEN ELSE with db_id. Latter is better because SQL is native and objects are checked every time procedure is compiled.
    James showed the simplest way but this rather complex way gives you more flexibility between instances if ever needed.
    CREATE TABLE synonym_dml(db_id number not null primary key, sql_text clob)
    INSERT INTO synonym_dml VALUES (100, 'INSERT INTO customer_results (first_name, last_name) SELECT customer_fname,customer_lname FROM customer100')
    INSERT INTO synonym_dml VALUES (200, 'INSERT INTO customer_results (first_name, last_name) SELECT customer_fname,customer_lname FROM customer200')
    set serveroutput on size unlimited
    create or replace
    PROCEDURE Execute_Synonym_Dml(p_host VARCHAR2, p_db_name VARCHAR2, p_schema VARCHAR) IS
    BEGIN
      FOR r IN (
        SELECT sql_text FROM synonym_dml
        --  WHERE db_id IN (
        --    SELECT d.db_id
        --    FROM t_mv_db_accounts ac, t_mv_db_instances i, t_mv_dbs d, t_mv_hosts h
        --    WHERE ac.db_id = d.db_id
        --      AND i.db_id = d.db_id
        --      AND i.host_id = h.host_id
        --      AND upper(h.host_name)      = p_hostname
        --      AND upper(d.db_name)        = p_instance
        --      AND upper(ac.account_name)  = p_schema
      LOOP
        DBMS_OUTPUT.PUT_LINE('-- executing immediately ' || r.sql_text);
        --EXECUTE IMMEDIATE r.sql_text;
      END LOOP;
    END;
    create or replace
    PROCEDURE Execute_Synonym_Dml_Too(p_host VARCHAR2, p_db_name VARCHAR2, p_schema VARCHAR) IS
      PROCEDURE DB_ID_100 IS
      BEGIN
        DBMS_OUTPUT.PUT_LINE('-- executing DB_ID_100');
        --INSERT INTO customer_results (first_name, last_name) SELECT customer_fname,customer_lname FROM customer100;
      END;
      PROCEDURE DB_ID_200 IS
      BEGIN
        DBMS_OUTPUT.PUT_LINE('-- executing DB_ID_200');
        --INSERT INTO customer_results (first_name, last_name) SELECT customer_fname,customer_lname FROM customer200;
      END;
    BEGIN
      FOR r IN (
        SELECT 100 db_id FROM dual
        --  SELECT d.db_id
        --  FROM t_mv_db_accounts ac, t_mv_db_instances i, t_mv_dbs d, t_mv_hosts h
        --  WHERE ac.db_id = d.db_id
        --    AND i.db_id = d.db_id
        --    AND i.host_id = h.host_id
        --    AND upper(h.host_name)      = p_hostname
        --    AND upper(d.db_name)        = p_instance
        --    AND upper(ac.account_name)  = p_schema
      LOOP
        IF (r.db_id = 100) THEN
          DB_ID_100;
        ELSIF (r.db_id = 200) THEN
          DB_ID_200;
        ELSE
          RAISE_APPLICATION_ERROR(-20001, 'Unknown DB_ID ' || r.db_id);
        END IF;
      END LOOP;
    END;
    EXECUTE Execute_Synonym_Dml('demo','demo','demo');
    EXECUTE Execute_Synonym_Dml_Too('demo','demo','demo');
    DROP TABLE synonym_dml PURGE
    DROP PROCEDURE Execute_Synonym_Dml
    table SYNONYM_DML created.
    1 rows inserted.
    1 rows inserted.
    PROCEDURE EXECUTE_SYNONYM_DML compiled
    PROCEDURE EXECUTE_SYNONYM_DML_TOO compiled
    anonymous block completed
    -- executing immediately INSERT INTO customer_results (first_name, last_name) SELECT customer_fname,customer_lname FROM customer100
    -- executing immediately INSERT INTO customer_results (first_name, last_name) SELECT customer_fname,customer_lname FROM customer200
    anonymous block completed
    -- executing DB_ID_100
    table SYNONYM_DML dropped.
    procedure EXECUTE_SYNONYM_DML dropped.

  • Need to use variable inside a text field.

    I have a field in my database called "introduction" that contains the following:
    "My name is #myname#"
    When I output #introduction# to the webpage, I would like #myname# to show the field value - i.e. "My name is Brett".    How do I let CF know to display the variable?    Right now, I'm gettting "My name is #myname#"
    thanks!
    B.

    This is a troublesom construct that will often devole into more trouble then it is worth, but almost everybody tries it at least once.
    Anyway you can use the evaluate() function to do what you wish.
    I.E.
    <cfoutput>#evaluate(introduction)#</cfoutput>

  • Passing variables inside a url to call a query

    Hello,
    I have created a BSP-application with a restful webservice to transform a BW-query (BI7) into a XML-File for further development with XCelsius.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.highlightedcontent?documenturi=%2fwiki%2fsdn_wiki%2fwiki%2fdisplay%2fbi%2fexpose%2bbi%2bquery%2bas%2brestful%2bservice
    The service works fine when I use a query that doesn't need any variables.
    Unfortunately, there is a problem when I try to pass some mandatory variables.
    Here is a sample-url I use to call the restful webservice.
    http://<BW-System>:<Port>/sap/bc/bsp/sap/z_xmlexport1/data.xml?infocube=<my_infocube>&query=<my_query>&VAR_NAME_1=<variable name>&VAR_VALUE_EXT_1=<variable_value>
    But I get this error message on my browser:
    <ERRORMESSAGE>invalid_input</ERRORMESSAGE>
    When debugging the code, I can see that all parameters for the FM 'RRW3_GET_QUERY_VIEW_DATA' are there and filled properly. But still the exception "invalid_input" is raised.
    Any help on calling queries with mandatory variables?
    Thanks!

    Hello,
    0COMP_CODE is an infoobject, how can you directly use an infoobject for selection. I mean am not aware of link passed to Xcelsius but what i feel is you need to first create a variable for 0COMP_CODE by opening your query in query designer. and for VAR_NAME_1 use this variable name.
    You can check the definition of the variable by opening your query in query designer and under 0COMP_CODE expand the list, select your variable and on right side it shows the property. In one of the tab it will show whether its ready for input or not. (its a check box option)
    Regards,
    Shashank
    Edited by: Shashank Dighe on May 20, 2009 1:50 PM

  • XSLT Transformation - using variables in title name

    Hi,
    Is there a way to set the title attribute of a table tab in XSLT dynamically through xslt? I'm trying to display sections of code which have the title hardcoded and are present in the xml being rendered. I need the title of that section determined dynamically while parsing through the object nodes of the xml.
    Example:
    <table id="Table ID" title="/Object1/attribute1/name" columnCount="3" seqNo="1">
    instead of hardcoding the title name in the XSLT can we pull the name and set it from the xml being processed?
    Thanks,
    Pavan

    <section id="CALCULATION" title="Calculation">
                   <table id="CALCULATION" title="ClientName Calculation Information" columnCount="3" seqNo="1">
                        <xsl:for-each select="//returnableObjects/IntermediateResultsJB/IntermediateResultJB">
                             <xsl:if test="resultSetName[.='Client Name Calculation Information']">
                                  <xsl:variable name="Variable1" select="resultName"/>
                                  <xsl:variable name="Variable2" select="resultValue"/>
                                  <!--<xsl:variable name="Variable3" select="resultOrder"/>-->
                                  <detailRow>
                                       <!-- <cell type="string">
                                            <xsl:value-of select="$Variable3"/>
                                       </cell> -->
                                       <cell type="string">
                                            <xsl:value-of select="$Variable1"/>
                                       </cell>
                                       <cell type="number">
                                            <xsl:value-of select="$Variable2"/>
                                       </cell>
                                  </detailRow>
                             </xsl:if>
                        </xsl:for-each>
                   </table>
    </section>This is the XSLT above being used. "ClientName Calculation Information" is hardcoded in the xml that is being rendered.
    XML Fragment is given below:
    <IntermediateResultJB>
                      <resultSetName>ResultSetName1</resultSetName>     
         <resultName>Name</resultName>
         <resultValue>Value</resultValue>
         <resultOrder>1</resultOrder>
    </IntermediateResultJB>
    <IntermediateResultJB>
         <resultSetName>ResultSetName2</resultSetName>
         <resultName>Name</resultName>
         <resultValue>Value</resultValue>
         <resultOrder>2</resultOrder>
    </IntermediateResultJB>
    <IntermediateResultJB>
         <resultSetName>ResultSetName3</resultSetName>
         <resultName>Name</resultName>
         <resultValue>Value</resultValue>
         <resultOrder>3</resultOrder>
    </IntermediateResultJB>I want the XSLT above to use the <resultSetName> value["ClientName Calculation Information" e.g] to be set in the value of the title attribute of the <table> as well as <section>.
    Thanks,
    Pavan
    Edited by: EJP on 23/05/2012 10:08: code tags.

  • Using variable as table name in pl/sql query - Is possible?

    I am relatively new to PL/SQL and I am trying to create a function that accepts a table name and a rowid as arguments and returns a comma-delimited record string of the values of the table/rowid being passed. The problem is , I cannot code a select stmt as follows
    SELECT * FROM v_table_name
    WHERE rowid = v_row_id
    in PL/SQL. There must be a easy way to approach this.
    Thanks for any and all advice.
    GC

    I don't understand the use of the concat symbol along with the commas and field namesYou just need (if you really need it) to create variable which contains you column separated by comma:
    Simple example (in the second case separate variables are used to create
    the list of columns):
    SQL> declare
      2   rc sys_refcursor;
      3   cols varchar2(200) := 'ename, empno, sal';
      4   tab varchar2(30) := 'emp';
      5  begin
      6   open rc for 'select ' || cols || ' from ' || tab;
      7   close rc;
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SQL> declare
      2   rc sys_refcursor;
      3 
      4   ename_col varchar2(10) := 'ename';
      5 
      6   empno_col varchar2(10) := 'empno';
      7 
      8   sal_col varchar2(10) := 'sal';
      9 
    10   tab varchar2(30) := 'emp';
    11 
    12  begin
    13 
    14   open rc for 'select ' || ename_col || ',' || empno_col || ',' || sal_col ||
    15   ' from ' || tab;
    16 
    17   close rc;
    18  end;
    19  /
    PL/SQL procedure successfully completed.Rgds.

  • Use variable for symbol name

    I am trying to reference a symbol element that looks like this:
    elementName = variableName + "Menu";
    var menuChoice = sym.getSymbol('printMenu').$(elementName);
    when I console.log ("menuChoice" + menuChoice) I get
    object Object
    How do I accomplish using a variable as a symbol name?

    Yes. I have a function that does a number of things so I am not looking to rewrite the menu Symbol.

  • How can we use variables for instance name?

    I'm using 9 textbox in my stage. Names are similar, only difference is the last character. (s1_0, s1_1, s1_2, ...). I'm trying to use these textbox in a loop. But I couldn't find the right typing... s1_[i], s1_(i) or s1_{i} gives error.
      s1_0.text=0
      s1_1.text=0
      s1_2.text=0
      s1_3.text=0
      s1_4.text=0
      s1_5.text=0
      s1_6.text=0
      s1_7.text=0
    how can make the shortest typing for this issue?

    yes, its working, thank you very much...
    I tried array operator but the word "this"..
    what does it means ? when I delete this word, it gives error. how does flash know that it is a instance name?

  • How get the name of calling form

    Hi to All,
    I have 2 forms, for example A_FORM and B_FORM.
    With a button A_FORM call B_FORM.
    How can initialise in B_FORM a variable with the name of calling form A_FORM ?
    Thank You and Best Regards.
    Gaetano

    Hi Meegada
    You have understood right.
    In B_FORM the trigger WHE-NEW-FORM-INSTANCE call a procedure INIT_LIST, like this:
    PROCEDURE Init_List (A_FORMNAME IN VARCHAR2(200)) IS
    Cursor LeRows IS
    Select *
    From MYTABLE
    Where (MYTABLE_CODE = :BL.CODE) AND (MYTABLE_FORM = A_FORMNAME)
    ORDER BY MYTABLE_CODE ;
    BEGIN
    END;
    A_FORMNANE is the name of the calling form A_FORM.
    How can in form B_FORM initialise the var A_FORMNAME ?
    Thank You.
    Greetings..
    Gaetano

  • Move used variables/strings

    Dear all,
    I try to use Dasylab to control and collect data from several equipments at lab (thermostat, stirrer, syringe pump, manostat, thermometer...). Now I have prepared several worksheets (each for single equipment) and it +- works (it is necessary to complete with some functionality but for collecting current lab data it is sufficient). The worksheets works, but only for single equipment, but I need to work with all of them. So I rebuild the worksheets that the each equipment is packed at black boxes (each worksheet one black box ant it works). Then I save all of black boxes and put them to one worksheet. Unfortunately, the worksheet prepared this way doesn’t work because there are problems with global string and variables. When I save the black box, I don't save the string/variables definitions. For instance the expression of one string in original worksheet is calculated automatically this way: "R" + SubStr( "000",1, 3-(${VAR_51}>=1000)-(${VAR_51}>=100)-(${VAR_51}>10)) + StrFmt(${VAR_51},8,0)+${STR_52} to prepare output string "R0120\r". I am able to export and import global string and variables but only as whole package of 999 variables. I don’t know how to move only used ones (I am able to move them at TXT format, but I am not able to read them to Dasilab as variables).
    I have two questions:
    1 - Is there any possibility to set "calculate expression automatically" for string/variable during running of program (using some action module or something like that)?
    2 - Is there any possibility to save only used strings/variables and collected several packages of variables to one (for instance VAR_1-VAR_50 for thermostat and VAR_100-VAR_150 for thermometer)?

    I found that if I used the Define Global Variable dialog, and clicked the Save button, it gave me a choice of saving defined variables (those whose settings are not the default) or variable with descriptions.
    I saved the file. It gave me a file that included all of the information.
    I tried to use the Global Variables and Strings Import dialog, but the file was not ordered correctly.
    I opened it in Excel and changed the columns around to match the Help (see picture). Then, I saved it as a TXT file again.
    It imported with some errors - notably the additional settings, such as read at start, do not import. The one formula that I created imported correctly.
    I think that you can save the used variables from your various worksheets, combine them into one file, change the order of the columns. Since it's a text file, you can change the variable numbers if you need to... 
    Unfortunately, you cannot import strings this way, as the Help says "DASYLab can only read in strings from VAR formats."  Personally, I agree that this is a major limitation!
    - cj
    Measurement Computing (MCC) has free technical support. Visit www.mccdaq.com and click on the "Support" tab for all support options, including DASYLab.

  • Using Variable in place of property name in set_item_property procedure.

    Hello,
    I need to change the item properties dynamically by using variables for both properties names and their values.But during compilation its showing me error "Too many declrations".Kindly suggest me any best way.

    You already have the answer to that one in the posting above.
    Your table would presumable include rows HEIGHT, WIDTH etc.. as text columns
    So you'd cross reference as above.
    Alternatively you could find out what the numerical values are for HEIGHT (1509) and WIDTH (1508) are and store them in your master table alongside the description that your user will see. Then you can simply do the set_item_property.
    This relies heavily on Oracle not changing the values for these constants. Even if they did you would just have to change your table. Then your solution is generic and future proof.
    Built in for all properties: Not that I know of. But you could sort of use your table as above to help. Simply loop through the constants, do a get_item_property, and show that to the user.
    You'll have to be careful about maybe classifying the things in your table to ensure you don't try to get an inappropriate property for the type of item.
    With a little effort this will all definitely be possible.
    I saw a thread the other day where someone had created a form called "props.fmb" which showed the item properties in a tree style. See if you can find that. This was fairly hard coded compared to what you want, but it would be pretty good as a basis.

  • Can i use a environment variable inside a *.sql file?

    Hello,
    I want to create a external table.
    So i am using the command
    create or replace directory abc as 'C:\folder'.... inside a sql file.
    Now i want the path "C:\folder" to be dynamic as i am using this path in many other places also inside the sql file.So i thought to create a environment variable and put this value there.I tried using as %PATH% but it gives error..... where %PATH%=C:\folder.
    Can i use a environment variable inside a *.sql file?
    But how to do that or is there any other way.
    Thanks
    Swapna
    Edited by: user11018268 on Feb 19, 2010 1:03 AM

    user11018268 wrote:
    Actually what i want is the path "C:\folder" is not fixed it can be anything which i may not know the user may decide it later. Not supported. A directory object refers to a specific physical location (directory/folder) on a file system. Not a path.
    You can work around it by (creating and) using a function (running under a super user schema with authid definer privs). The caller (e.g. schema scott ) calls it with a physical path. E.g. GetDirectoryObject( 'C:\folder\2010\feb\week4' ).
    This function determines if there is an existing directory object for the path. If not, it uses a wildcard search to determine if there are any directory objects for parents in the path (e.g. for C:\folder\2010\feb or C:\folder\2010 or C:\folder ).
    If it finds a directory object, it interrogates the data dictionary to determine if the caller, schema scott for example, has read/write access on that directory object. If it has, it creates a new directory object and grants the caller read/write access to it. The function then returns the name of the directory object to the caller.
    The caller thus do not deal directly with directory objects. The function returns the object name given a physical path as input. Also, only a single base directory needs to be created (e.g. for C:\folder ) and access granted to the schema on it. Any sub-directory in that base directory can now be dynamically accessed by the schema.

  • Accessing movieclip name for loadMovie() with a concatenated variable

    Okay, I have a movie which generates a certain amount of
    movieclips [determined by a variable]. They are given the names
    mc_placeholder1 to mc_placeholderx.
    Later in the movie, I want to access each of these
    placeholder movieclips in turn to attach an image to them with
    movieName.loadMovie(). However, which of the placeholder movieclips
    is being accessed is determined by a variable, i. So, if i=3 I
    would want to attach to mc_placeholder3.
    Hard coding
    var movieName=mc_placeholder3;
    movieName.loadMovie(...)
    works, but anything to concatenate the movieclip name such as
    var movieName="mc_placeholder"+i;
    does not, I assume because it changes it to a string.
    How can I get it to perform .loadMovie on the movieclip named
    mc_placeholderi where i is the value of the variable?
    thank you

    on the timeline where your movieclips are created use:
    tl=this;
    you can then use:

Maybe you are looking for

  • FPBW: Extract Open Items with a posting date in the future

    Dear all, I'm are currently searching for possibilities to extract Open Items with a posting date in the future from SAP IS-U 4.72 into SAP BW 3.5. Currently I'm using the Business Content extractor 0FC_OP_01 together with the mass transaction FPBW i

  • Withholding tax certificate printing

    Dear All, I have maintained the number ranges for certificate printing. When i run the j1incert the certificate number is not printing on the certificate. Please advise.me on how to solve this error. Regards Keshav

  • Will this hard drive fit in my Macbook pro?

    Looking to upgrade the hard drive in my 2010 Macbook Pro. Stats are below.   Model Name:          MacBook Pro   Model Identifier:          MacBookPro6,2   Processor Name:          Intel Core i7   Processor Speed:          2.66 GHz   Number Of Process

  • Server Name Selection

    Dear Experts, SAP B1 asks Server Name every time during login in DB. I am using SAP B1 8.8. My point is why SAP asks Server Name every login time. Any help will be appreciated & be very thankful. Regards, Ravi

  • Hi guys, i work as a school photographer and was advised to get lr3 to arrange my packs

    Hi guys, i order several pictures of the same images eg a pack = 412x8's 6 7x5's & some smaller images on a 7x5. I was advised to purchse lr3 to do this but unfortunately i cannot do it my experience with lightroom is very limited i have used cs for