Variable name calling css?

What is the variable name initialising the CSS in the HTML index file when publishing out with the HTML5 option?
Thanks,
Oliver

Not really sure what you are after, but the style sheet is loaded in the head when the html page loads. There are surely some inline styles being applied also. CSS as a whole is not put into a variable and CSS does not contain variables. You can use JavaScript to change styles though.
<link rel="stylesheet" type="text/css" href="captivate.css" />

Similar Messages

  • Actionscript variable name function call

    I'm attempting to call a function dynamically using a string variable.  I know that to normally do this, I would use code like the following:
         var functionName:String = "ii_" + currentItem.id;
         var myData:Array = this[functionName](parameter1, parameter2, parameter3);
    However, my function is actually in another flex directory/package called UploadApps.customUploadFunctions.  I've tried this sort of thing:
         var functionName:String = "ii_" + currentItem.id;
         var myData:Array = UploadApps.customUploadFunctions.this[functionName](parameter1, parameter2, parameter3);
    but this doesn't work.  Any ideas on how I go about calling a function with a variable name in another package?
    John

    Thanks Alex.  The function in the package is defined as:
             package UploadApps.customUploadApps
                  public function ii_000010(inputItem:InputItem, periodDates:Object, inputItemBox:VBox, branchId:int, uploadStatusData:ArrayCollection, validatorArray:Array):Array {
    with the file name being ii_000010.as, but when I call it as such:
             import UploadApps.customUploadApps.*;
              var functionName:String = "ii_" + currentItem.id;
              someArray = UploadApps.customUploadApps[functionName](currentItem, thisFieldDates, inputItemBox, BranchId, uploadStatusData, validatorArray);
    I get the errors:
             1120: Access of undefined property UploadApps.customUploadApps.
              1182: Package cannot be used as a value: UploadApps.customUploadApps.
    John

  • Problem with variable name in ZXRSRTOP include (virtual KF)

    Hi all,
    I am coding a routine to use a virtual key figure in the BEx.
    I have just a little problem with the name of a variable:
    as explained in the documentation, I created the variable with the prefix G_POS_, the name of the infocube and the name of the infoobject all together:
    DATA: G_POS_BC_ST_003_C_DIV__C_COMPAR   type i.
    The problem is that this variable name is longer than 30 characters, so the system doesn't accept it.
    Is there a workaround, other than changing the name of the infoobject (which is a navigational attribute)?
    Any help would be appreciated.
    Loï

    Hello Marc,
    I understand that I have to use a concatenate function and a dynamic call of the variable with (variable) instruction, but i do not understand how to implement it.
    the infocube name is BC_ST_003
    the characterisdtic name is C_DIV__COMPAR
    So, in the include ZXRSRTOP the statement
    DATA : G_POS_BC_ST_003_C_DIV__COMPAR
    does not work due a length problem (see first post)
    But in the same include the statement
    +DATA: l_global_name type c.
    concatenate 'GPOS' 'BC_ST_003' 'C_DIV__C_COMPAR' into l_global_name separated by '_'.+
    drives to the following error : statement is not accessible.
    Could u please provide me with an example of the code in the include ZXRSRTOP, and in the include ZXRSRZZZ for the use of this variable.
    Thanks in advance.
    Loï

  • Putting quote round a variable name to make a string

    Hi,
    Hopefully this is a fairly simple task.
    I would like to take a variable name, say Hyp, from my main program and call it in a class, captured in a variable called A and create a string with double quotes surrounding it... to give an answer of "Hyp" which can be used in my program for a further class call which needs the name in quotes.
    I've tried using
    String concat = """+A+""" but this results in an invalid AssignmentOperator
    If I use
    String concat = ""+A+"" I get Hyp with out the quotes - not what is required
    If I use
    String concat = "'"+A+"'" I get 'Hyp' which does not work with the further class which requires "Hyp"
    Can anyone help?

    Escape it with a \ like this:
    String concat = "\""+A+"\"";

  • Pass a variable name to a subroutine and use a method on it...

    How do I pass a variable name to a subroutine and then call a method on it?
    I have several swing text fields in a JForm. When someone enters a string in any of these fields, I want to check whether it is a number and, if now, clear that individual field and display a popup warning.
    So, I want to do something like....
    String stringcheck(String str, sometype variablename) {
            try {
                Integer.parseInt(str);
            } catch (NumberFormatException e) {
                JOptionPane.showMessageDialog(jPanel2, "These fields must be integer numbers.");
                variablename.setText("");
    }

    prometheuzz wrote:
    tsith wrote:
    prometheuzz wrote:
    NickSchurch wrote:
    thanks prometheuzz. I'm returning a string cos there are some other parts to the subroutine.Ah, now I understand.
    Well, good to hear you found a solution to it.You know, you really should have seen that from post 1.
    No offense, but seriously - does he have to draw you a picture?!
    I probably wouldn't understand the picture either: I'm not much of an art critic. Unless the OP is [Bob Ross|http://www.bobross.com/], his paintings, I understand.
    "I'm returning a string 'cos there's a happy tree over there, and I think I'll put a happy rock right here"

  • Dynamic variable name

    Hi for all.
    I'm need create a object with "dynamic" name. For example
    Object ABCi = new ...
    where i is a indice.
    Please, help-me

    >
    Object ABC[] = new Object [size];
    for (int i=0; i<size;i++) {
    ABC[i] = ....
    }if you do something like this. How do you call one of the instances. How do you know how many there are??
    >
    Dynamic variable name? You're just making problems for
    yourselfIs there a better way? Because sometimes you have to have something like the above. Why is it a big problem?
    Thanks
    Brian

  • Dynamic variable name generation

    Hi people,
    Is there any way of generating variable names dynamically in java in a loop? i.e.
    for(int i = 0; i<arrayLength; i++) {
    ArrayX.add(position, object)
    X++
    Where X is 0,1,2...etc. so i would have Array1 with something in it, Array2 with something in it, Array3 and so on.
    This is just a simple example but I've basically got an initial array of URL objects and then I want to call my getURL method on each link in my inital array and store the links associated to each initial URL in a different Array.
    Hope it makes sense, and i hope someone can help!
    Thanks in advance.

    Your example code is not clear to me (what is "position?"), and your description using URLs doesn't seem to need what you are asking for. I would be careful about using arrays - people sometimes use arrays when classes should be used.
    Anyway, I think you can get close to what you want by using a HashMap. You can use Strings as keys and the Strings would be "array01" "array02" etc.

  • Added dynamic text; How do I stop variable name from showing?

    I am creating a simple game for kids.  On the first page, I added an "input text" field for their first name.  I called the variable firstname.
    When they move to the next page, I used a "dyanamic text" field so I can call them by name on this page.  It works.  However, When I test the game, on the first page, where the firstname is input, it shows    _level0.firstname          instead of just a blank space for them to input their name.
    I know I fixed this in the past and it was something simple, but I can't remember how to do it.  I'd appreciate anyone's help!
    Thanks.

    Beginning with Flash MX (version 6), you assign the text field an instance name using the Property inspector. Although you can use the variable name method with dynamic text fields for backwards compatibility to Flash 5 and earlier versions, Macromedia doesn't recommend this, because you can't control other text field properties, or apply style sheet settings

  • Obtain string of IN variable name in PL/SQL

    Hi,
    Odd question. Is there a way to access an IN variable's object name in a procedure?
    eg.
    procedure (var1    IN VARCHAR2(6),
                    var2    IN VARCHAR2(6),
                    var3    IN VARCHAR2(6))
    IS....You run this procedure and pass in parameters of:
    var1 => 'abcdef',
    var2 => 'defghi',
    var3 => 'ghikjl';
    In the code, I want to access the number in the string of the +variable name: var1+
    In a naive sense,
    num_of_in_var := substr(var1, 4,1) would be what i was hoping to achieve, but,
    var1 is set to 'abcdef' so,
    num_of_in_var := substr(var1, 4,1) would return 'd'.
    Any thoughts?
    Thanks
    Edited by: chris001 on Nov 20, 2012 1:16 PM

    Here's an example of how (what you want to do using a procedure or function), can be done using a ADT/UDT (Advance/User Defined Type) in Oracle.
    This approach will not work for standard procedures and functions as this type of dynamic referencing of the code unit/object to itself, is not possible.
    SQL> create or replace type TSomeObject as object(
      2          name    varchar2(10),
      3          id      integer,
      4          day     date,
      5 
      6          member function PropertyByNumber( n integer ) return varchar2
      7  );
      8  /
    Type created.
    SQL>
    SQL> create or replace type body TSomeObject as
      2 
      3          member function PropertyByNumber( n integer ) return varchar2 is
      4                  PLSQL_PROP_GET  constant varchar2(1000) :=
      5                          'declare
      6                                  obj     TSomeObject;
      7                          begin
      8                                  obj := :1;
      9                                  :2 := to_char( obj.#PROPERTY# );
    10                          end;';
    11 
    12                  type            TStrings is table of varchar2(30);
    13                  property        TStrings;
    14                  dynamicBlock    varchar2(1000);
    15                  res             varchar2(4000);
    16          begin
    17                  select
    18                          a.attr_name bulk collect into property
    19                  from    user_type_attrs a
    20                  where   a.type_name = 'TSOMEOBJECT'
    21                  order by
    22                          a.attr_no;
    23 
    24                  dynamicBlock := replace( PLSQL_PROP_GET, '#PROPERTY#', property(n) );
    25                  execute immediate dynamicBlock
    26                  using   in self,
    27                          out res;
    28 
    29                  return( res );
    30          end;
    31 
    32  end;
    33  /
    Type body created.
    SQL>
    SQL> declare
      2          obj     TSomeObject;
      3  begin
      4          obj := new TSomeObject( 'John Doe', 123, trunc(sysdate) );
      5 
      6          for i in 1..3 loop
      7                  dbms_output.put_line( 'property '||i||'='||obj.PropertyByNumber(i) );
      8          end loop;
      9  end;
    10  /
    property 1=John Doe
    property 2=123
    property 3=2012/11/23 00:00:00
    PL/SQL procedure successfully completed.
    SQL> Simplistic example (the PropertyByNumber could be a static class method defined in the abstract parent class) - and one that requires the object to essentially duplicate itself via a bind variable call to dynamic code. Not really the best of approaches, but demonstrates the flexibility (to do even interestingly weird stuff) in PL/SQL.

  • Bug Report: PLSQL variable names

    Hello,
    I am using Oracle 10g Release 2 and have come across an issue that I think maybe a bug.
    I don't seem to be able to declare a PL/SQL variable using the %TYPE attribute where the variable name is the same as the table name.
    For example:
    CREATE TABLE week_day
    ( week_day_id NUMBER NOT NULL
    , week_day VARCHAR2(3) NOT NULL );
    DECLARE
    week_day week_day.week_day_id%TYPE;
    BEGIN
    NULL;
    END;
    Executing this block of PL/SQL gives the following error:
    ERROR at line 2:
    ORA-06550: line 2, column 12:
    PLS-00320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 2, column 12:
    PL/SQL: Item ignored
    Normally I would prefix my variables in PL/SQL with l_ (or whatever depending on scope), but I discovered this "feature" when declaring a field in a PLSQL record.
    Is this a known restriction? I looked in the PL/SQL User Guide & Reference and could not find any reference to this restriction.
    Kind Regards
    Andy

    You shouldn't call variables the same as table names.Just to plus one BluShadow...
    SQL> CREATE TABLE week_day
      2  ( week_day_id NUMBER NOT NULL
      3  , week_day VARCHAR2(3) NOT NULL );
    Table created.
    SQL> DECLARE
      2  week_day week_day.week_day_id%TYPE;
      3  BEGIN
      4  NULL;
      5  END;
      6  /
    week_day week_day.week_day_id%TYPE;
    ERROR at line 2:
    ORA-06550: line 2, column 10:
    PLS-00320: the declaration of the type of this expression is incomplete or
    malformed
    ORA-06550: line 2, column 10:
    PL/SQL: Item ignored
    SQL> drop  TABLE week_day;
    Table dropped.
    SQL> CREATE TABLE week_day
      2  ( w_day_id NUMBER NOT NULL
      3  , w_day VARCHAR2(3) NOT NULL );
    Table created.
    SQL> DECLARE
      2  week_day week_day.w_day_id%TYPE;
      3  BEGIN
      4  NULL;
      5  END;
      6  /
    week_day week_day.w_day_id%TYPE;
    ERROR at line 2:
    ORA-06550: line 2, column 10:
    PLS-00320: the declaration of the type of this expression is incomplete or
    malformed
    ORA-06550: line 2, column 10:
    PL/SQL: Item ignored
    SQL> drop  TABLE week_day;
    Table dropped.
    SQL> CREATE TABLE week_days
      2  ( week_day_id NUMBER NOT NULL
      3  , week_day VARCHAR2(3) NOT NULL );
    Table created.
    SQL> DECLARE
      2  week_day week_days.week_day_id%TYPE;
      3  BEGIN
      4  NULL;
      5  END;
      6  /
    PL/SQL procedure successfully completed.
    SQL> Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

  • LMS 4.2.3 variable name not show in drop-down list

    Hi all,
    I am trying to use performance threshold to trigger a script whild device CPU or Memory high.
    There is a default threshold template called "CPU Utilization" and "Memory Utilization".
    After I choose either one, there should be one or two variable name in drop down list.
    But I only see "Select MIB Variable" in the list.
    I try to create a template with exact the same variable but still got nothing in the list.
    The strange thing is that no all the default template has this problem.
    I can see variable name under some template like "Device Availability" or "Port Availability"
    And this is not browser problem because I try both IE and Firefox.
    Any one how to solve this?

    Thanks for your advice.
    Now all my devices are connected in Layer View [Devices View], but User Tracking still not shows me informations from several switches about hosts. Its works like randomizer. Now 5 devices form User Tracking  don't show me informations.[WS3550 2 devices and 2  WS-C2960S-48LPS-L]. In lists devices Acquisition Action i check acquisition for this 5 devices. After that acquisition complete, but User Tracking still empty ( all ports on this devices are active).
    SNMP, Credentials all is good.
    I try resolve this problem many days, but without results. Its semmes like a bug.
    ANy propositions?

  • Creating on the fly dynamic named bind variable names.

    I have an application process which gets called by a Dynamic action and Javascript.
    Everything is working great however I'm using it to drive dynamic charts.
    I could use IF statements at the end of the application process to decide what BIND vairable to fill with the information the process has collected however I'd prefer just to create the BIND variable from the
    name of the submitted information.
    So I have an application level variable called WHICHCHART. this gets populated with text upon calling the application process...so let's say 'chart1' is what it gets filled with.
    What I"d like to have at the end of the application process is just a bind variable waiting called :chart_1.
    So no matter what the value of WHICHCHART it will create an on the fly a bind variable with the same name.

    Ok. I guess this question was more how do you do this..then OH NO there are not other ways to do this.
    So I have a page with a chart region. this chart will have 3 Y Axes which prohibits the use of the default XML.
    So..
    I have the following Javscript:
    function getdata(whichchart) {
      var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=VM_XML_GENERATION',0);
            get.add('WHICHCHART',whichchart);
            gReturn = get.get('XML');
      get = null;
    Which is called when the page loads by a dynamic action:
    getdata('production');
    When the javascript is called as you can see it fires off:
    declare
       chart_series_data VARCHAR(32767);
       type array_cols is varray(7) of varchar2(100);
       array array_cols := array_cols('VM_HOSTS_NUM','VM_NUMBER','VM_PHYS_MEM','VM_VIRT_MEM','VM_CPU_COUNT', 'VM_TOTAL_DISK','VM_PROVISIONED_DISK');
    BEGIN
    --IF :WHICHCHART IS NULL THEN
    --RAISE_APPLICATION_ERROR(-20001,'Chart variable not set');
    --END IF;
    chart_series_data := null;
    chart_series_data := '      <data>'||chr(10);
    chart_series_data := chart_series_data||  '        <series name="Hosts Number" type="Line" color="0x1D8BD1" >'||chr(10);
    for c1 in (SELECT VM_REPORT_DATE LABEL,VM_HOSTS_NUM from TABLE where VM_REPORT_DATE between add_months(SYSDATE,-24) and SYSDATE and lower(VM_DCNAME)=lower(:WHICHCHART) )
    loop
    chart_series_data := chart_series_data || '<point name="'||c1.LABEL||'" ';
    chart_series_data := chart_series_data || 'y="'||c1.VM_HOSTS_NUM||'"></point> '||chr(10);
    end loop;
    chart_series_data := chart_series_data|| '      </series>'||chr(10)||'</data>';
    :PROD_DATA := chart_series_data;
    END;
    The : production variable at the end of this I want to change the name of based on the value I'm sending of WHICHCHART from the javascript. I hope this is clearer now.
    AGAIN this is not really a need. It is a want to be able to create dynamic bind variable names going forward.
    Thanks

  • How to check Variable Names

    Hi All,
    I am checking in CMOD include.  It has lot of code. Example:  When 'ZFISPER' . I think that is Variable Technical name. How to check that variable and in Which Query it is.
    Please let me know...
    Thanks in advance..
    KN

    Hello,
    You can go over into transaction code RSA1 and then on your left hand side you will be able to see lot of tabs in terms of Modeling, Administration, Transport Connection and so on.
    So go ahead and click on the tab "Transport Connection" and in the next screen you will be able to see all object types available in your environment.
    Please go ahead and open up the section "Query Elements", if you are not able to see the same, on the left under the transport connection you will see the folder "SAP Transport" and within that the option called "Object Types", just click on it once and all the object types which are available for transports will show up.
    Once you have selected Query Elements, under that you will be able to see different Query related objects and you will be having "Variable". When you drilldown on Variable folder you can double click "Select Objects" and select your appropriate variable name.
    One other way to proactively get a list of variables available in your system and to find out on which InfoObject they have been buill, please go into transaction se16 or se12 and then enter the table name RSZGLOBV.
    In this table you can get a list of all the variables along with the metadata without trying to parse through one by one variable.
    Thanks
    Dharma.

  • Error: Cannot find symbol: Variable Name

    Hi Guys,
    I'm having some trouble with a piece of code. The error that I'm getting is:
    program.java:17: cannot find symbol
    symbol : variable name
    location: class program
    name.CTI(names[0].charAt(0));
    ^
    My Code is shown here:
    import java.io.*;
    import java.lang.*;
    class program{
         public static void main(String[] args){
              String names [] = {"brian", "stu", "mouse"};
              program name = new program ();
              name.sortArrayStr(names);
              //name.CTI(names[0].charAt(0));
         public void sortArrayStr( String[] names ){
              name.CTI(names[0].charAt(0));
         public int CTI ( char letter ){
              char c = letter;
            int k = (int) c;
            System.out.println("ASCII  = "  + k + ".");
              return k;
    }What I'm trying to do is get the name.CTI method caled from within sortArrayStr. When i call name.CTI from main it works fine, (commented part) but when i try from sortArrayStr I get this problem.
    Anyone have any ideas?
    Many Thanks

    Variable name is a local variable defined in method main, so it can not be referenced by writing name in another method like sortArrayStr.
    The good news is, if you want to call CTI from sortArrayStr, just do it:
    public void sortArrayStr( String[] names ){
        CTI(names[0].charAt(0));
    }

  • Dynanmic variable name creation with loadMovie

    My error indicates that the dynamic variable name is being
    created OK... the right path to the movie to be loaded shows
    properly in the error message.., but the movie does not load it.
    :o(
    THE ERROR MESSAGE:
    Error opening URL
    "file:///C|/Documents%20and%20Settings/Bob%20Achgill/My%20Documents/Docs%20of%20Bob/Downl oad/hhr/Losha/1/InTheBeginningFeb08/eng_in1.swf
    THE SCRIPT:
    loadVariables("MyVar.txt", _root);
    //canvas_mc.loadMovie(this["wordSWF_" + count]); // This line
    gives error
    //canvas_mc.loadMovie(this["wordSWF_1"]); // This line gives
    error
    canvas_mc.loadMovie("eng_in1.swf"); // This line works!
    THE LOAD VARIABLE DATA FILE:
    MyVAR.txt contains...
    &wordSWF_1=eng_in1.swf
    &wordSWF_2=eng_the1.swf
    &wordSWF_3=eng_beginning1.swf

    This is a tricky bit about loading text in Flash. Look at
    your MyVAR.txt file and tell me what is at the end of each
    line…give up…look really hard…they are invisible,
    but they are there…don't hate them because they are
    invisible.
    Yup. There is a line return/enter at the end of each line. So
    I'm guessing you don't have a file called eng_in1.swf[invisible
    return] on your system? Notice how even in the error message the
    ending quote mark is down a line?
    The secret is to do your file like this:
    &wordSWF_1=eng_in1.swf&
    &wordSWF_2=eng_the1.swf&
    &wordSWF_3=eng_beginning1.swf&

Maybe you are looking for

  • Configuration of FRS 11.1.2

    Hi ALL i am installing hyperion 11.1.2 . I have install foundation ,essbase and FRS. i have configure essbase and everything is working fine . i am able to login to studio, EAS , shared services . Now i have configure FRS . i am not able to connect t

  • Itune 64-bit touble

    Hey so I tried to get music from my Itunes (on my computer) to my music on my Ipod touch. When I plug in my Ipod to sync it says "This Ipod cannot be used because the required software is not installed. Run the Itunes installer to remove Itunes, then

  • Something's wrong when I tried to edit calendar event in OS X Mountain Lion

    I created an event with my iPhone, and it synchronized automatically by iCloud. And then, I'd like to change the date of this event from the Calendar.app in my OS X 10.8.4 by typing the month I prefer, but the mini calendar shows wrong month. I also

  • Finance Interactive Chart is blank in Firefox (for both Google and Yahoo Finance)

    I've tried updating Java, Flash, Silverlight (it would really be nice to know for sure what Google and Yahoo Finance use). But they all were updated. I cleared my cache, tried restarting in safe mode (which is ironic because if the plugin isn't loade

  • Muse Anchor Issue -- Is This a Bug?

    When I name an anchor with a period in the name [ essay.anchor ] weird things happen; anchor fails, shifting elements. Is the period a restricted symbol? Anyone else experience this?