SWC reference by name!

I got a SWC file that includes a class name Helvetica
var helvetica:Helvetica = new Helvetica();    <-- this works
but i want to work it like this:
(couse i have a flashvar that sends the name with font to embedd)
var helvetica:* = getDefinitionByName("Helvetica"); // why this doenst work?
Can someone see the attachement and help me?
Thanks alot!

Hi Steven!
I wrote this Nugget on exploiting control references and you may be interested in reviewing that article for more ideas.
Another technique that I do not believe I covered in that Nugget will let you at development time create a ref to an object in a cluster on the FP. If you look at Steve's image (above) you could go to the FP and right click on "Slide 2" inside one of the cluster and right-click and choose "create property node" and choose value.
I'd also like to stop and acknowledge you for some good questions. I was struck by a new participant in this forum actively looking for a way to avoid using locals (in your other thread).
If you aren't an experienced user then you have "one he#$" a good insight!
Ben
Ben Rayner
I am currently active on.. MainStream Preppers
Rayner's Ridge is under construction

Similar Messages

  • Is it possible to reference the name of the current table in a formula?

    Hi,
    I am wanting to be able to reference the name of the same table that I am entering a formula into, i.e.:
    =SUMIFS(Net,Event,"CURRENT TABLE NAME HERE",Category,"Publicity")
    Is this possible?
    Thanks,
    Nick

    AppleScript can access the current table name, so it if you are doing a lot of formula entry in different tables you could click once in a table and have a short script insert the formula for you.  Here's a simple example:
    Say you have a data table like this:
    Event
    Category
    Net
    Event 1
    Publicity
    10
    Event 2
    Celebration
    20
    Event 1
    Supplies
    5
    Event 1
    Salaries
    20
    Event 3
    Celebration
    25
    Event 1
    Publicity
    20
    Event 2
    Publicity
    11
    Event 1
    Accounting
    20
    And (important) you have 'Use Header Names as Labels' turned on in Numbers > Preferences.
    You caninsert this formula:
    =SUMIFS(Net,Event,"Event 1",Category,"Publicity")
    ... into a table named Event 1 that looks like this:
    Cat
    Amount
    Publicity
    30
    ...with a script like this:
    -- NB:  the \ "escape" the quotation marks so AppleScript takes them literally
    tell application "Numbers"
      set t to document 1's active sheet's first table whose selection range's class is range
      set c to t's selection range's first cell
      set c's value to "=SUMIFS(Net,Event," & "\"" & t's name & "\"" & ",Category,\"Publicity\")"
    end tell
    The script automatically inserts the name of the table you have clicked in.
    (To use the script just copy and paste into Script Editor, click once in the cell where you want the formula (B2 in the example) and click the 'Run' triangle button in Script Editor.)
    SG

  • I want to learn SD , Could you pls send me the Reference Book names.

    Hi All,
    I want to learn SD , Could you pls send me the Reference Book names.
    and i heard about materials like Billing , Pricing , Shipping - Which material should i study first to understand baisc flow.
    Thanks in Advance.
    Regards,
    Nithi.

    Hi ,
    Instaed of a book i will refer you the help files of SAP .
    You can get there files at http://help.sap.com/
    An for SD the link is http://help.sap.com/saphelp_47x200/helpdata/en/92/df293581dc1f79e10000009b38f889/frameset.htm
    These files will help you a lot .
    even today also SD gurus take help from these files only.
    Regards

  • Trying to reference field name of my record Type in my procedure!

    Hello,
    I am stuck. I am trying to reference field names in my record type declared in my Package declaration.
    Here is an example. Don't be scared, it's a very simple package. I just need some directions what to use to accomplish this.
    --look into this part of the package body
    FOR cur_rate IN c_rate
    LOOP
    rate_data(1).field_name := cur_rate.rate_pct;
    --field name = AK_PCT, AL_PCT and so on ...
    END LOOP;
    END rate_tab_qry;
    CREATE OR REPLACE PACKAGE rate_pkg IS
    TYPE rate_rec IS RECORD (
    id cycle_rates.id%TYPE
    ,cycle cycle_rates.cycle%TYPE
    ,scac cycle_rates.scac%TYPE
    ,gbloc cycle_rates.gbloc%TYPE
    ,code cycle_rates.code%TYPE
    ,AK_PCT cycle_rates.rate_pct%TYPE
    ,AL_PCT cycle_rates.rate_pct%TYPE
    ,AR_PCT cycle_rates.rate_pct%TYPE
    ,so on...
    TYPE cycle_rate_tab IS TABLE OF rate_rec INDEX BY BINARY_INTEGER;
    PROCEDURE rate_tab_qry(rate_data IN OUT cycle_rate_tab,
    p_id cycle_rates.id%TYPE,
    p_cycle cycle_rates.cycle%TYPE,
    p_scac cycle_rates.scac%TYPE,
    p_gbloc cycle_rates.gbloc%TYPE,
    p_code cycle_rates.code%TYPE);
    END;
    CREATE OR REPLACE PACKAGE BODY rate_pkg IS
    PROCEDURE rate_tab_qry(rate_data IN OUT cycle_rate_tab,
    p_id cycle_rates.id%TYPE,
    p_cycle cycle_rates.cycle%TYPE,
    p_scac cycle_rates.scac%TYPE,
    p_gbloc cycle_rates.gbloc%TYPE,
    p_code cycle_rates.code%TYPE)
    IS
    CURSOR c_rate IS
    SELECT state, rate_pct
    FROM cycle_rates
    WHERE cycle = p_cycle
    AND scac = p_scac
    AND gbloc = p_gbloc
    AND code = p_code;
    BEGIN
    rate_data(1).id := p_id;
    rate_data(1).cycle := p_cycle;
    rate_data(1).scac := p_scac;
    rate_data(1).gbloc := p_gbloc;
    rate_data(1).code := p_code;
    FOR cur_rate IN c_rate
    LOOP
    rate_data(1).field_name := cur_rate.rate_pct;
    --field name = AK_PCT, AL_PCT and so on ...
    END LOOP;
    END rate_tab_qry;
    I need to know, how to reference my field name for each state in my procedure that are in my record type. The problem is it won't allow me to use something like this.
    select state || '_PCT
    from cycle_rates;
    which would eventually show me each state concatenated with '_PCT, e.g. AK_PCT and that's my field names.
    For example,
    FOR cur_rate IN c_rate
    LOOP
    rate_data(1).field_name := cur_rate.rate_pct;
    --field_name = AK_PCT, AL_PCT and so on...
    END LOOP;
    I would appreciate it if somene can direct me. Thanks.
    Message was edited by:
    [email protected]

    This is a sample output from my cusror. Just to make it easier for you guys to see it.
    ST RATE_PCT
    AK 0
    AL 2
    AR 2
    AZ 2
    CA 2
    CO 2
    CT 2
    DC 2
    DE 2
    FL 2
    Hope it helps.

  • LDAP: error code 1 - Invalid query reference]; remaining name '

    I have the following function for a paged search operation.
    Data retrieved by this function is used somewhere else to modify the Ldap Directory context.
    Despite my setting for ctx and search control as "no timeout", i've been keeping thrown the exception for operations lasting more than 5 minutes(consistently) and for some short operations(sporadically):
    Paged Search failed : javax.naming.NamingException: [LDAP: error code 1 - Invalid query reference]; remaining name '<directory>'
    I am using DirX as LDAP directory.
    Is this a time-out related exception which can be fixed in the code?
    How can it be fixed?
    There's no clue all over the web about this.
    Thanks.
          * Returns the next page of the search results.
          * The returned result from this method can not exceed page size
          * set in the constructor.
          * @return
         public NamingEnumeration nextPage(){
              //1.step Set PagedResultsControl
              NamingEnumeration results = null;
              Control[] controls=null;          
              try {               
                   if( isSearchStarted==false ){
                        isSearchStarted=true;
                        if(sortingAttributes==null)
                             controls=new Control[]{ new PagedResultsControl(pageSize) };
                        else
                             controls=new Control[]{new SortControl(sortingAttributes, Control.NONCRITICAL), new PagedResultsControl(pageSize) };
                   }else {// examine the response controls
                        cookie = parseControls(ctx.getResponseControls());
                        if( cookie!=null && cookie.length!=0 ){
                             // pass the cookie back to the server for the next page
                             if(sortingAttributes==null)
                                  controls=new Control[] { new PagedResultsControl(pageSize, cookie, Control.CRITICAL) };
                             else
                                  controls=new Control[] {new SortControl(sortingAttributes, Control.NONCRITICAL), new PagedResultsControl(pageSize, cookie, Control.CRITICAL) };
                        }else{
                             //search is finished
                             return null;
                   ctx.setRequestControls(controls);
                   //ctx.getEnvironment().values();
                   //ctx.getEnvironment().put("com.sun.jndi.ldap.connect.timeout", "5000", 300000);
                   ctx.addToEnvironment("com.sun.jndi.ldap.connect.timeout", "0");
                   //ctx.getEnvironment().values();
              } catch (NamingException e) {
                   Tracer.getInstance().error("Paged Search failed while setting response controls: " + e);
                   return null;
              } catch (Exception e) {
                   Tracer.getInstance().error("Paged Search failed while setting response controls: " + e);
                   return null;
              //2.step: DO SEARCH
              for(int i=0;i<10;i++){
                   boolean reconnect=false;
                   try{     
                        results = ctx.search(searchBase, searchFilter, searchCtls);
                        Thread.sleep(300000);
                        //ctx.get
                        //Thread.sleep(300000);
                        break;
                   } catch (NamingException e) {
                        Tracer.getInstance().error("Paged Search failed : " + e);
                        reconnect=true;                    
                   } catch (Exception e) {
                        reconnect=true;
                        Tracer.getInstance().error("Paged Search failed : " + e);                    
                   if(reconnect){
                        try {
                             this.ctx = LDAPServer.getInstance().getDirContext();
                             ctx=ctx.newInstance(controls);
                             //ctx.getEnvironment().values();
                        } catch (NamingException e1) {
                             Tracer.getInstance().error("Could not reconnect the ldapcontext");
              return results;
         }

    It turned out to be a DirX "root DSE" entry "PAGP" that is disposing my paged results if a timeout occurs(300 seconds by default).
    So i have to modify this entry during runtime, which is unfortunately only can be accesed by dirxadm.exe.
    Is it possible to modify this attribute by a ldap context method?

  • Opening/Closing Queue Reference By Name

    I'm curious if opening and closing a queue reference to put information onto the queue, using the queue name -> obtain queue -> enqueue -> release queue(Non Force) is problematic.  I thought i saw a thread a long time ago that opening/closing a reference to a queue over and over could lead to a memory leak, even if the original queue never was released.  Obviously, i'm ignoring the general pass the wire(by value) correct labview way. 
    Instead of opening/closing using the queue name i could also wrap the queue reference in a FG after originally creating it and work on the reference that way. Ignoring the "right way to do it" are there still downsides, other than programing correctly, to open/closing queue reference's in this fashion such as memory leaks.

    PaulG. wrote:
    I have never heard of any unwanted consequences of repeatedly opening and closing any reference. The trick is to make sure a reference gets closed when no longer needed. I don't see any reason not to implement queues the ways you describe. I've done all three and haven't had any issues that I know of. If opening and closing a queue reference repeatedly caused a memory leak that would be considered a bug.
    I have to disagree here. A couple of years ago I was using a DAQmx Write with "autostart" option set to TRUE in a loop (ca. 100ms timing) to constantly make sure, that in application standby my Digital Outputs kept the values they ought to have. This reproducibly caused a blue screen on Windows after 6 hours of the program running in standby. As it turned out, LabVIEW was using a new reference to the task for every call of the Write, because with autostart set to TRUE it had to create the task beforehand and close it afterwards. After the mentioned peroiod of time, LabVIEW ran out of reference numbers, as the support explained to me.
    Of course, even LabVIEW Help says to avoid using autostart=TRUE with DAQmx VIs in a loop, but only because of the overhead the repeated Create and Clear is consuming. Naturally, I have learned that the hard way now.
    So - Create the reference once, use that same reference all the time (FG is fine, I think - I use this method for obtaining my logfile reference all over the place!) and close it only, when you don't really need it anymore.

  • Need to reference file name within the XML Output

    Not sure if this is possible, as I'm new to the livecycle/XML world. But I need to be able to reference a file within the XML output from the PDF.
    The Scenario is that a pdf form of a business card will be issued to 50 franchisees for them to type in their names and mobiles, click submit and the XML file to be sent to myself, and be imported in to InDesign populating their data ready for printing. Up to here I have it working perfectly.
    However as each franchisee have a combination of up to 5 logos to place in the bottom corner to save having to have various templates with different combinations of logos and having to ensure the correct templates are used. I intend to reference each companies combination as an EPS and make the reference within the xml out and have it import directly in with the other data. I can type the code directly within the xml but I would like to have the form reference it directly in the xml output. Is this possible or am expecting to much of livecycle? Any help/advice greatly appreciated.
    David

    Hi MadhavaGanji,
    I have post how to validate the file name, header row against definition table which stored the file name and column definition. 
    Take a look and see if this is helpful.
    http://sqlage.blogspot.com/2013/11/ssis-validate-file-header-against.html
    http://sqlage.blogspot.com/

  • Create object reference by name

    I wish to disable and enable a bunch of controls on the front panel. Instead of creating hard-wired property nodes, I wish to cycle through an array of string names of controls and set the corresponding control's property. Is it possible to create a reference on the fly based on a string? The reference will then be fed to a Property node. Or is there an alternative way for my problem?

    See the image below for a better example.
    This one provides a list of all the controls on the front panel.  See the names of the labels appears in the ArrayofCtrls.
    RayR
    You can create a subvi of this. Replace ThisVI by a control.  You then wire This VI from the calling VI.  Or, you can get fancy and wire a pathname to the appropriate function which replaces ThisVI in the above example.  You can then obtain front panel listings for other VI's.  The possibilities are alomost endless  
    Message Edited by JoeLabView on 01-08-2008 08:11 AM
    Attachments:
    _example.PNG ‏33 KB

  • Unbundle Reference By Name

    Is there a reference equivalent to unbundle by name?
    In other words, I created a strict type def cluster.  From a reference to the cluster, I can obtain the "Value" property and convert the "Variant to Data" then "Unbundle by Name" to get the value for each control.  Is there an easy way (short of typecasting everything manually), to obtain strict references for the controls in the cluster?

    Hi Steven!
    I wrote this Nugget on exploiting control references and you may be interested in reviewing that article for more ideas.
    Another technique that I do not believe I covered in that Nugget will let you at development time create a ref to an object in a cluster on the FP. If you look at Steve's image (above) you could go to the FP and right click on "Slide 2" inside one of the cluster and right-click and choose "create property node" and choose value.
    I'd also like to stop and acknowledge you for some good questions. I was struck by a new participant in this forum actively looking for a way to avoid using locals (in your other thread).
    If you aren't an experienced user then you have "one he#$" a good insight!
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Not able to use db link if i reference its name from value of item in apex

    Hello
    I am trying to use following but not working
    :P16_db_link = 'link2home'
    link2home is database link already created by me.
    I am running one report which is using PL/sql function as source returning one sql
    SOURCE of Report
    ==============
    declare
    com varchar2(4000);
    dbln varchar2(100);
    begin
    dbln:=':P16_DB_LINK';
    select 'select * from v$instance@'||dbln into com from dual;
    return com;
    end;
    It is giving me error while report is loaded that 'db link name expeceted'
    any help is appreciated

    Hi user629322 ,
    Just try modifiying it
    declare
    com varchar2(4000);
    dbln varchar2(100);
    begin
    dbln := :P16_DB_LINK;
    com := 'select * from v$instance@'||dbln ||'from dual';
    return com;
    end;
    Good Luck
    bye
    Srikavi
    Message was edited by:
    srikavi

  • Reference field name changes

    I'm working on two sheets, one with all the nitty-gritty details of my bills, the other a summary.
    When I wanted to put an if() formula that reads a cell in the summary sheet to read from one field in the details screen the Field Name changes. It was working on most of the fields until I got to one set of them then this happened:
    when I put in
    =IF('Bill/Exp Comparator' :: '12/29/09' J C Penney="","",'Bill/Exp Comparator' :: '12/29/09' J C Penney)
    and hit enter I'd get
    =IF('Bill/Exp Comparator' :: '12/29/09' '3/9/10' C Penney="","",'Bill/Exp Comparator' :: '12/29/09' '3/9/10' C Penney)
    I would delete the '3/9/10' and hit enter again, it would change back to it. I don't know why is it doing it with one field or how to stop it.
    This is another reason why I should stick to a Windows' product.

    MWSibert wrote:
    2. I don't know what you mean by:
    <startupVolume>:Users:<yourAccount>:Library:Preferences:com.apple.iWork.Numbers. plist
    <startupVolume>:Users:<yourAccount>:Library:Preferences:com.apple.iWork.Numbers. LSSharedFileList.plist
    These are the paths to two preferences files that could be causing the abnormal behaviour.
    Go to the Finder, open a new Finder Window.
    In the sidebar, the house icon with your (user)name under it is <yourAccount>. Start there with a double click or single click, depending which view (icons, list or columns) you are using in the Finder Window, to open that item. In the new list that opens, repeat with the next item (Library) in the path.
    The last item in the path is a preferences file, identified by the .plist suffix on the filename.
    Preferences files are constantly being read, changed and written to by the application, and occasionally become corrupted. Deleting them is a common 'first aid' step. The application (Numbers in this case) will create a new, clean copy of the file when the need arises.
    if this is using a script, I'm not practiced at that, and the "LSSharedFileList" part bugs me. "share" with what, where, whom? Is this opening my computer to others without my knowledge?
    If your profile is correct (it says you are using Mac OS X v10.4.11), you are unlikely to find the second file (com.apple.iWork.Numbers.LSSharedFileList.plist). This is a file associated with Launch Services, and was introduced in OS X v 10.5. It's on Yvan's machine as he has Numbers set up to Launch as one of his log in items.
    I don't mind emailing a template because it's nothing impressive to anybody. Would you mind if I send a template?
    Go ahead. Please put "Numbers Ref Field Changes" in the subject line. My address is available in my profile—click my neme to the left of this message to get there.
    Regards,
    Barry

  • Reference name of page

    Hi,
    Does anybody know how to reference the name of a page in JavaScript? I have a form with 10 pages and want to use the same code on each page to return that page's name.
    Thanks for the help?
    Ralph

    Its not as simple as that. Remember that this is an XML stuctured form so it is hierarchical in nature. Here is the way that I woudl get all page names:<br /><br />// get all nodes from the root node.<br />var oNodes = form1.nodes<br />//cycle through each note<br />for (i=0;i<oNodes.length;i++){<br />    //create an object for each  node that we find<br />     var childElement = oNodes.item(i);<br />     // Test to see if the node is a subform node (all Pages will be subforms)<br />     if (childElement.className == "subform"){<br />         //write the name of the subform node to the screen<br />          app.alert(childElement.name);<br />     }     <br />}<br /><br />If you only want to get the name of the page that you are on you get use any object on the form, get the somExpression and parse away the bits that you do not need.

  • Re: Column Name as Parameter in Oracle Procedure

    Hi,
    I've successfully compiled the following procedure:
    CREATE OR REPLACE PROCEDURE CREATE_MEASURES_IND_RPT(
        pSTART_DT                                    IN date
    ,   pEND_DT                                         IN date  
    ,   PGEO_DIMENSION_COLUMN               IN VARCHAR2
    AUTHID CURRENT_USER IS
    BEGIN
    DECLARE
        START_DT Date      := pSTART_DT;
        END_DT     Date      := pEND_DT;
    text_ip_adjusted varchar2(10000):='
      select
        replace(fiscal_yr,''/'') as fiscal_year,
        NVL(f_quarter(is_date(disdate,''yyyymmdd'')),''Year'') AS TIME_PERIOD_TYPE,
        NVL('||PGEO_DIMENSION_COLUMN||',''Province'') as geo_desc
        from data_table A,
                postal_code_table B
        where POSTCODE = B.POSTALCODE
          AND (is_date(disdate,''yyyymmdd'') >= :1 and is_date(disdate,''yyyymmdd'') < :2)
        GROUP BY
        replace(fiscal_yr,''/''),
        ROLLUP(f_quarter(is_date(disdate,''yyyymmdd''))),
        ROLLUP('||PGEO_DIMENSION_COLUMN||');
    begin
    EXECUTE IMMEDIATE text_ip_adjusted using START_DT,END_DT; COMMIT;
    END;
    END CREATE_MEASURES_IND_RPT;
    /When I try and execute the procedure, I get the following error:
    ORA-00936: missing expression
    ORA-06512: at "CREATE_MEASURES_IND_RPT", line 36
    ORA-06512: at line 1The data table has date strings which need to be converted to dates using an "IS_DATE" function I've created which is while you'll see the is_date function used. The procedure works fine when I don't include the PGEO_DIMENSION_COLUMN as a parameter so I suspect that I haven't reference the name of the column properly. Essentially, I need my procedure to be able to specify a Column Name in the Postal Code table to use as a group by field.
    Any help would be appreciated.
    Thanks,
    Ed

    Hi,
    spalato76 wrote:
    Hi,
    I've successfully compiled the following procedure:
    CREATE OR REPLACE PROCEDURE CREATE_MEASURES_IND_RPT(
    pSTART_DT                                    IN date
    ,   pEND_DT                                         IN date  
    ,   PGEO_DIMENSION_COLUMN               IN VARCHAR2
    AUTHID CURRENT_USER IS
    BEGIN
    DECLARE
    START_DT Date      := pSTART_DT;
    END_DT     Date      := pEND_DT;
    text_ip_adjusted varchar2(10000):='
    select
    replace(fiscal_yr,''/'') as fiscal_year,
    NVL(f_quarter(is_date(disdate,''yyyymmdd'')),''Year'') AS TIME_PERIOD_TYPE,
    NVL('||PGEO_DIMENSION_COLUMN||',''Province'') as geo_desc
    from data_table A,
    postal_code_table B
    where POSTCODE = B.POSTALCODE
    AND (is_date(disdate,''yyyymmdd'') >= :1 and is_date(disdate,''yyyymmdd'') < :2)
    GROUP BY
    replace(fiscal_yr,''/''),
    ROLLUP(f_quarter(is_date(disdate,''yyyymmdd''))),
    ROLLUP('||PGEO_DIMENSION_COLUMN||');
    begin
    EXECUTE IMMEDIATE text_ip_adjusted using START_DT,END_DT; COMMIT;
    END;
    END CREATE_MEASURES_IND_RPT;
    /When I try and execute the procedure, I get the following error:
    ORA-00936: missing expression
    ORA-06512: at "CREATE_MEASURES_IND_RPT", line 36
    ORA-06512: at line 1The data table has date strings which need to be converted to dates using an "IS_DATE" function I've created which is while you'll see the is_date function used. The procedure works fine when I don't include the PGEO_DIMENSION_COLUMN as a parameter so I suspect that I haven't reference the name of the column properly. Essentially, I need my procedure to be able to specify a Column Name in the Postal Code table to use as a group by field.
    Any help would be appreciated.
    Thanks,
    EdIt l;ooks like you're missing a single-quote at the very end of the expression being assigned to text_ip_adjusted.
    ...       ROLLUP(' || PGEO_DIMENSION_COLUMN || ')';How will you handle the output from that dynamic query? Maybe you should be opening a cursor.

  • Using Column Name in a Second Table

    I have two tables in a sheet, Data and Report. Data contains a column named Hours. How can I write a sum function in the Report table that sums the values in the Hours column in Data? I'd like to use a named reference instead of a row/column letter/number range for when the Hours column gets longer.

    David Benman1 wrote:
    Thanks. I tried what you said, but initially it didn't work. I realized I needed to make the top row a header row, but that leads to a new question. All my columns now can be reference by name except the first column. Is there anything special I need to do to the first column? If the first column is "Hours", then when I type in "Hours" in my formula, the spreadsheet doesn't recognize it as a column name.
    Yes, you must read the User Guide which explains :
    Yvan KOENIG (VALLAURIS, France) 2 septembre 2010 12:06:03

  • How to get the initial name.

    public class asd{
    public static void main(String[] args){
    asd dkd =new asd();
    how to show the object's name(dkd)?

    Are you trying to obtain the reference variable name is?
    Here is an example:
    String str = new String("God is real!"); // "str" would be the reference variable nameIf you call the toString() method you will won't get "str". You would get "God is real!". Look at my example below:
    String str = new String("God is real!"); // "str" would be the reference variable name
    System.out.println(str.toString());OUTPUT:
    "God is real!"
    If you do a to string on like this:
    asd dkd = new asd();
    System.out.println(dkd.toString()); The Output would look like this:
    "asd@lfee6fc"
    I'm not clear on what you mean by object name, but using the toString() method wouldn't be how I would get it. If you mean the Class name you could use the getClass().toString() methods to obtain the Class name. That would give you "java.lang.String" for the first example and the second ouputput would be "class asd".

Maybe you are looking for

  • Idoc to idoc in bpm

    hi experts,     i am getting problem in idoc to idoc scenarios in confriguration part,how many businees system  i have to used in this scenarios.if any examples are there please help me.

  • How to fill canvas with lines

    <mx:Canvas id="b1" x="10" y="10" height="40" width="300" borderStyle="solid" borderColor="black"/> when i want to draw lines with 15 pixels gap to fill the entire canvas i wrote as follows                for(var i:int=b1.x+15;i<b1.x+b1.width;i=i+15)

  • Form display / format - end User

    Over the past 7-10 days I have experienced problems with the display of completed forms in both Test mode and from URL. The form does not diisplay with the same format that is in the design view and consequently won't complete correctly. This only ha

  • Crystal parameter starts with x

    Hello, I have a report which is using multiple parameters, and 2 of them start with 'x': xReportType and  xxxxxroundingxx. I can't find a formula where these parameters are used, but the have a green check next to them and I can't delete them. How ca

  • Linked widgets

    I'm experimenting with having a widget load another swf file during the widget edition process. That is, when you insert the widget on the stage, the widget panel opens up and I want to dynamically load another swf that will allow to customize the wi