Assigning a class to symbols

I'm just getting the hang of creating my own classes and
linking them to a symbol. But I've found that the resulting
instance has an undefined depth and doesn't respond to .swapDepth()
or .setDepthTo(). I've reduced the problem down to a very simple
demo situation. This is my class file, DemoClass.as:
class DemoClass{
public function DemoClass() {
trace("DemoClass: this = "+this);
This is my test file which has a symbol "demoClass" in the
library:
import mx.managers.DepthManager;
demo_mc = this.attachMovie("demoClass_id","demoMC",1);
trace("demo_mc.getDepth(): "+demo_mc.getDepth());
demo_mc.setDepthTo(DepthManager.kTop);
trace("demo_mc.getDepth(): "+demo_mc.getDepth());
When the symbol has NO link to DemoClass, the output is:
demo_mc.getDepth(): 1
demo_mc.getDepth(): 21
When the symbol is linked the output is:
DemoClass: this = _level0.demoMC
demo_mc.getDepth(): undefined
demo_mc.getDepth(): undefined
Is this what you'd expect or have I made an error
somewhere?

your DemoClass is not extending the MovieClip class and so
you're creating a DemoClass object that has no getDepth() (nor any
other movieclip method/property).

Similar Messages

  • The exception, which is assigned to class 'CX_SY_RANGE_OUT_OF_BOUNDS'

    Bom dia pessoal.
    Gostaria de saber se alguem já passou pelo o problema abaixo.?
    No ambiente de produção ao se criar um nota fiscal pela a J1B1N e ao começar a digitar alguns itens o sistema gerar o seguinte DUMP.
    Versão: SAP ECC 6.0
    The exception, which is assigned to class 'CX_SY_RANGE_OUT_OF_BOUNDS', was no
    caught in procedure "CHECK_NFENUM_NUMERIC" "(FORM)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the exception would occur, the current program is terminated.
    The reason for the exception is:
    In the executed program "SAPLJ1BB2", the system attempted to access the field "J_1BDYDOC-NFENUM" using the length 0.
    However, a partial field access with the length specification 0 is not allowed.
    Já analisei o forum abaixo e verifiquei na tabela J_1BAMV e não esta para o Field Group 77 como Display.
    A minha duvida é a seguinte realmente deve estar como Display ou existe uma nota da SAP a ser aplicada para resolver tal DUMP.?
    Att;
    Ângelo Junior
    Edited by: Angelo Marinho Teixeira Junior on May 6, 2011 6:04 PM

    Bom dia Angelo,
    O detalhe não é só direção (entrada/saída), mas emissão (sua ou de terceiro).
    Podemos emitir uma nota de entrada em nome de terceiro, neste caso é o ERP que deve numerar e enviar ao GRC/Sefaz... Sendo emissão de terceiro (saída ou entrada) é apenas para registro, basicamente esta a diferença.
    Atenciosamente, Fernando Da Ró

  • Assigning valuation class when creating Material

    Hi
    I want assign "3100 -Trading Goods valuation class" to my material which i am creating. in Tr.code MMH1
    In the accounting1 view, under the current valuation section, there are no options at all to select valuation class.
    please help me figure out how to get the 3100 option into my valuation class.
    i will send u a screen shot of my problem,if u need..gimme u r email id.
    i will assign points
    thanks

    hi
    u need to assign val classes to act cat ref.That act cat ref assign to mat type .
    then syst automatically will give option of val class when ur creating mat of that mat type.
    Log gen->mat master-> basic settings-> def att of mat type
    here u assign act cat ref to mat type.
    MM-> val & act assign ment -> act detr wth wizard-> def val class
    here u assign val classes to act cat ref.
    ok
    if its ok
    assign points
    nani

  • Assign several classes to multiple cells in a table?

    Hello,
    I've searched this forum and the Internet for hours, but haven't been able to find a solution for this very basic problem. I'm editing a large table with CSS class="basicTable" assigned to it. In my stylesheet there are two classes for cell properties:
    num for cells that contain a number
    alt for cells with an alternative background colour
    I would now like to assign both classes to a group of cells <td class="num alt">...</td>, but not to  the complete table. Is there any way to do this other than editing each individual cell? When I select one cell, I can edit the CSS class in the Tag Inspector. When I select multiple cells, all I see in the Tag Insector is the CSS class for the whole table, not for the cells I have selected. 
    I am editing several large tables each with up to 10 columns and 20 rows, some cells of which are merged. It is really time-consuming to go through each cell individually.
    Has anybody ever encountered this issue?

    CSS styled Table Columns
    http://alt-web.com/DEMOS/CSS-3-color-table.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How to assign a class for different colored links

    Hi. I'm new to CSS and HTML and Dreamweaver. I'm trying to
    get links to be different colors within the same page. I have a
    navbar with a CSS style that I've assigned colors to all my links
    there. They work. But if I attempt to change the links in the main
    content it screws up the navbar links.
    So, now, I'm trying to assign the different colors to the
    links in the main content. I have the link color down but I can't
    seem to get the visited, hover, active to work.
    So, I read somewhere you have to assign a class to be able to
    have different colors for your links on the same page. There is a
    class assigned to the links I want to change but it only assigns
    the link color, not the visit,hover,active colors. I don't know
    where I am supposed to put the code so that only the main content
    links are changed. Here is what I came up with from reading and
    studying. Can somebody tell me what's wrong with it and where I am
    supposed to put what in each page? This is just a CSS style page I
    made and I have no idea if I even did that right. Then, I can't
    figure out how to tell each page to include it for that class only.
    Thanks.
    @charset "utf-8";
    /* CSS Document */
    <class="style49"
    <style type="text/css">
    a:link {color: #3333FF}
    a:visited {color: #009900}
    a:hover {color: #6600CC}
    a:active {color: #FF0000}
    </style> </class>

    Pseudo-classes and container styles are what you need - here
    are some
    tutorials.
    http://www.thepattysite.com/linkstyles1.cfm
    http://www.projectseven.com/tutorials/pseudoclasses/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Newbie744" <[email protected]> wrote in
    message
    news:fn3***$m6q$[email protected]..
    > Hi. I'm new to CSS and HTML and Dreamweaver. I'm trying
    to get links to
    > be
    > different colors within the same page. I have a navbar
    with a CSS style
    > that
    > I've assigned colors to all my links there. They work.
    But if I attempt
    > to
    > change the links in the main content it screws up the
    navbar links.
    >
    > So, now, I'm trying to assign the different colors to
    the links in the
    > main
    > content. I have the link color down but I can't seem to
    get the visited,
    > hover,
    > active to work.
    >
    > So, I read somewhere you have to assign a class to be
    able to have
    > different
    > colors for your links on the same page. There is a class
    assigned to the
    > links
    > I want to change but it only assigns the link color, not
    the
    > visit,hover,active
    > colors. I don't know where I am supposed to put the code
    so that only
    > the
    > main content links are changed. Here is what I came up
    with from reading
    > and
    > studying. Can somebody tell me what's wrong with it and
    where I am
    > supposed to
    > put what in each page? This is just a CSS style page I
    made and I have no
    > idea
    > if I even did that right. Then, I can't figure out how
    to tell each page
    > to
    > include it for that class only.
    >
    > Thanks.
    >
    > @charset "utf-8";
    > /* CSS Document */
    > <class="style49"
    > <style type="text/css">
    > a:link {color: #3333FF}
    > a:visited {color: #009900}
    > a:hover {color: #6600CC}
    > a:active {color: #FF0000}
    > </style> </class>
    >
    >
    >

  • Assign Valuation Class to Company Code

    Hi Gurus...
    Quick Question: we are migrating from R3 to ECC 6. One of Treasury Management config points is Valuation Class definition. R3 used to have a config point in IMG called Assign Valuation Class to Company Code/Transaction Type. But I cannot find same in ECC6. Even CTRL-F does not help. Did it get moved and renamed?
    Thanks,
    JS

    Hi,
    Don't know the IMG path but what you can try:
    1. Go to the required IMG transaction in R/3 and look up the table / view (click on a field in the IMG transaction / push F1 / click icon Technical Information)
    2. In ECC 6 go to transaction SM30, fill in the table / view name from step 1
    3. Click icon Customizing
    4. In pop-up click Continue w/o Specifying Project
    5. An overview appears with IMG config points where the specified table / view is maintained. Choose the appropiate one by double clicking.
    Prerequisite is the existence of an IMG activity exists for object maintenance.
    Regards,
    Andre

  • FM/BAPI for assigning a class and value instead of manualy doing in IE02

    hi guys,
    i need a FM/BAPI which will allow me to take input as equipment number and assign the class and value for it as done manually in IE02.
    Input should be equipment number.
    POINTS will be given.

    Hi
    I hope this thread can help you
    Characteristic Value
    Re: Equipment Characteristic Value
    Change Equipment Using Transaction IE02
    Regards
    pavan

  • FI-AA: Assignment asset class to chart of depreciation

    Hi all,
    does anybody know whether it's possible to assign asset classes to a specific chart of depreciation (or let's say to delete this assignment)?
    The background of the question is the following: Some asset classes should not be used in some company codes. All these company codes use the same chart of depreciation, so I thought there must be a possibility to delete the assignment of this asset class to this chart of depreciation. Unfortunately, I haven't found this setting in the IMG.
    The SAP Message no. AC 012 tells for example, that there is an assignment "asset class to chart of depreciation". This is the message:
    In order to be able to assign chart-of-depreciation-dependent data to asset class 120204, the following conditions have to be met. You have to have already
    1. Defined at least two active charts of depreciation
    2. Assigned asset class 120204 to more than one chart of depreciation
    However, at the moment this asset class is only assigned to chart of depreciation 1.
    As we have definitely more than one active chart of depreciation, there must be this assignment, but how can I change it?
    I've seen that I can set a block for an asset class in a chart of depreciation in transaction OAYZ (ANKB-XSPEB / Indicator: Block asset class chart of depreciation-specifc). But I think that I will still see the asset class in the match code search (F4) when I set this indicator.
    Does anybody know how I can delete an asset class form a chart of depreciation so that it won't be found via match code search? I've checked almost the whole FI-AA tree but haven't found a solution...
    Thank you very much!
    Regards,
    Peter

    Hi Eric,
    thanks for your answer. As far as I can see, the option "chart of depreciation only" in transaction AM05 has the same effect than the parameter "chart of depreciation" in transaction OAYZ.
    As I receive a transport request via transaction AM05, it seems that this changes the same customizing table.
    Fortunately, all company codes in this chart of depreciation need the same settings, so a validation rule seems not to be necessary.
    It's just strange that there is no possibility to edit the assignment asset class to chart of depreciation in customizing (I think the assignment to all asset classes in the system will be created automatically when I copy the chart of depreciation). I think the only possibility would be to edit the respective tables manually (what I definitely won't do).
    Another strange thing I see in the system: There are 2 asset classes 120203 and 120204, which are both set up equally. When I try to block these in AM05, I'll receive the error message AA 111 for asset class 120204, while the asset class 120203 can be blocked without problems. When I use matchcode search F4, I can see 120203 while 120204 is not found.
    Message AA111 is the following:
    Chart of dep. 100 does not exist in class 120204 (Create chart of deprec.)
    Diagnosis
    Chart of depreciation 100 does not exist in class 120204.
    Procedure
    Create the chart of depreciation 100 for asset class 120204 using the transaction 'Create asset class' and the function 'Create chart of dep.'.
    There is the assignment asset class to chart of depreciation.
    When I check asset class 120204 in OAYZ (Determine Depreciation Areas in the Asset Class) I'll get the following message (I don't get this message when I check 120203):
    Deprec. area 50 was changed and deactivated. Please check.
    Message no. AC 631
    Diagnosis
    Depreciation area 50 was added to asset class 120204 because this depreciation area was newly created in Customizing.
    System Response
    The system adds the new depreciation area to the asset class, but its status is 'deactivated.'
    Procedure
    Check if this action by the system is correct. Maintain the depreciation areas in the asset class, and remove the 'deactivated' indicator there, if you choose.
    For sure, depreciation area 50 was not newly created in customizing (as stated in the error message), as this depreciation are is in production for years! There must be another reason for this.
    However, this says to me that the assignment asset class to chart of depreciation is created by SAP automatically and this can't be influenced.
    Therefore I'll just block the asset class in the chart of depreciation with the disadvantage, that I'll see this asset class when I use the matchcode search F4 (e.g. in AS01). This seems to be the only solution.
    Thanks again for your help (you got some points for that ;-).
    Regards,
    Peter

  • Assigning of Classes to superior classes Using SXDA_Tools...Urgent

    Hi All,
    I have a requirement in which i have to create classes(Material classes, CL01) and subclasses for them. In the second step i will have to assign the created sub classes to their respective superior classes.
    I could create classes using batch input program "RCCLBI01" and object type BUS1003 from transaction SDXA_TOOLS.
    However i am not sure how to assign the created classes to their respective superior class. Does anyone know any direct input program or batch input programs to assign a class to its superior class ??

    See [http://forums.sun.com/thread.jspa?threadID=5333060&tstart=0]. In general, if you use third-party libraries in your code, you should include these libraries in Javadoc's classpath option when generating documentation.

  • Is it Possible to assign Valuation class without accounting view in MM

    Hi all,
    I have check my client system for materials having without accounting view while checking in table mbew for this material having valuation class.can anyelse say is it possible to assign valuation class without having  accounting view.
    Advance thanks,
    raraja

    Hello ,
    It is not possible to have a valuation class without accounting view.
    There is some mistake that you are possibly making . pls check the same .Pls check if u r viewing the material master at the correct plant level .Also if you say that in MBEW valuation class exists , find out l the corresponding valuation level, the see the material master at the same level . You will definitely find the accounting view.
    Regards
    Anis

  • Assign Batch Class to Material - Using Upload

    Hi All,
    I have a requirement to assign batch class to material master (MM01 / MM02) - Classification view - Batch Class (022).
    This assignment has to be done through a upload program (BDC / LSMW / BAPI). Can someone please suggest me the best possible option.
    Note:
    1. I don't want to assign batch characteristics values. Just wanted to assign batch class to material.
    2. I have already created LSMW to load material master using LSMW direct input approach.
    Thanks,
    Somu

    Hi Dev,
    My existing LSMW was created using direct input approach which has no option to assign Batch Class to material.
    So my thought is to create a separate program (LSMW / BDC / BAPI) to assign batch class to material.
    Any best possible option please?
    Thanks,
    Somu

  • How to assign a class to the material through ABAP code

    Hi,
    I am working on a transaction in ABAP which takes material name, material description and a class from the user. Now, after this much input I create the material, its configuration profile through the ABAP code. For this I know I have to make relevant entries in tables MARA, MAKT, CUCO.. and also check for the existence of the class in the table KLAH.
    Now the point where I am stuck is that I am not able to get how to assign the class to the material through the code. I am able to get the internal class id from the table KLAH but I am not able to figure how the internal material number is being generated in the table INOB and i need this number as well as the internal class id number to insert a record in the table KSSK to show proper assignment.
    Can anyone please suggest me some solutions?
    Thanks....

    Hi,
    I tried using BAPI_OBJCL_CREATE. In order to understand it functioning better I created a material and class (of type 300) through transactions MM01 and cl01 respectively. Then i  created a report and called the FM BAPI_OBJCL_CREATE, gave the material name as the material above, table as MARA, class as the one i created above and class type 300. I even analysed the message of the table return (return-message) after executing the report. The messahe said assignment done. But when I checked mnaually in cl20n there was no assignment done to the required material. There was also no entry for the required material in the table INOB which I need.
    Can anyoene tell me that where am i going wrong? Please do help.

  • Assign asset class to company code

    Hi All
    Where to assign asset class to particular company code.
    Thanx in advance
    prasad

    Hi,
    1. IMG-FA-Asset Acc-Account Class
    - Specify Account Determination
    -Create Screen layout rules
    -Define no range
    -Define asset class
    2. IMG-FA-Asset Acc-Integration of asset acc and GL
    -assign GL acc
    regards,
    Sridevi
    <i><b>Award points, if useful</b></i>

  • Assigning Multiple Class to ID

    How do I assign multiple classes to an ID? Let's say I've
    created a class called Background and then a separate class called
    RedFont. How would assign those two to an ID called ID1?

    Oops - Thierry read better than I did.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Thierry | www.TJKDesign.com" <[email protected]>
    wrote in message
    news:evm61q$3l7$[email protected]..
    > rmiman wrote:
    >> How do I assign multiple classes to an ID? Let's say
    I've created a
    >> class called Background and then a separate class
    called RedFont.
    >> How would assign those two to an ID called ID1?
    >
    > id="ID1" class="Background RedFont"
    >
    > --
    > Thierry
    > Articles and Tutorials:
    http://www.TJKDesign.com/go/?0
    > The perfect FAQ page:
    http://www.TJKDesign.com/go/?9
    > CSS-P Templates:
    http://www.TJKDesign.com/go/?1
    > CSS Tab Menu:
    http://www.TJKDesign.com/go/?3
    >
    >

  • How to assign style class to page fragment?

    Hi,
    I try to assign CSS style classes to a page fragment, but there is no way to assign style classes from the default stylesheet.css.
    What do I miss here?
    Stephan

    Hi Tor,
    you will recognize that I made some changes, but it didn't solve the problem. As I mentioned everything is rendering fine on Linux and Firefox, also on Windows and Netscape 7.2, but not with IE. In particular the hyperlinks in the page fragment are centered, but on IE they are moved to the right. I also recognized that on all my jsp with the page fragment on it there is a space of about 10 px left on the right side of the window in IE. Following is the source view from IE:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xml:lang="en-US" lang="en-US"><head><meta http-equiv="Cache-Control" content="no-cache"/><meta http-equiv="Pragma" content="no-cache"/><title>Login Page</title><link type="text/css" rel="stylesheet" href="resources/stylesheet.css"/></head><body style="background-color: rgb(204, 204, 255); -rave-layout: grid"><form id="form1" method="post" action="/bardubitzki/faces/Login.jsp;jsessionid=B26CD4F0ED76D8E672FE93643B549E1C" enctype="application/x-www-form-urlencoded">
    "left: 0px; top: 0px; position: absolute; width: 100%"><?xml version="1.0" encoding="UTF-8"?>
    "CENTER" style="-rave-layout: grid" xmlns:h="http://java.sun.com/jsf/html"> <table id="form1:headerGridPanel1" border="0" cellpadding="0" cellspacing="0" style="background-image: url(resources/BarduBanner.png); height: 80px; position: absolute; background-repeat: no-repeat; width: 100%; left: 0px; top: 0px"> <tbody> <tr> <td class="tableColumnCenter">"form1:bsheaderImage1" src="resources/Clear.gif;jsessionid=B26CD4F0ED76D8E672FE93643B549E1C" alt="" /></td> </tr> </tbody> </table> <table id="form1:headerGridPanel2" border="0" cellpadding="0" cellspacing="0" style="text-align: center; width: 100%; left: 0px; background-image: url(resources/BarduBanner4.png); background-position: center; position: absolute; background-repeat: no-repeat; top: 80px; height: 20px"> <tbody> <tr> <td class="tableColumnCenter"><table id="form1:headerGridPanel3" border="0" cellpadding="0" cellspacing="0" style="height: 18px; position: relative; bottom: 3px; font-family: serif; right: 25%; width: 50%; left: 25%; top: 1px"> <tbody> <tr> <td>"form1:headerHyperlink1" href="faces/Index.jsp;jsessionid=B26CD4F0ED76D8E672FE93643B549E1C" class="menu">"form1:headerHyperlink1Text">Home</td> <td>"form1:headerHyperlink2" href="faces/DSSCreditCardDebt.jsp;jsessionid=B26CD4F0ED76D8E672FE93643B549E1C" class="menu">"form1:headerHyperlink2Text">Products</td> <td>"form1:headerHyperlink3" href="faces/Services.jsp;jsessionid=B26CD4F0ED76D8E672FE93643B549E1C" class="menu">"form1:headerHyperlink3Text">Services</td> <td>"form1:headerHyperlink4" href="faces/AboutUs.jsp;jsessionid=B26CD4F0ED76D8E672FE93643B549E1C" class="menu">"form1:headerHyperlink4Text">About Us</td> </tr> </tbody> </table> </td> </tr> </tbody> </table>
    <table id="form1:loginGridPanel1" style="position: absolute; width: 100%; left: 0px; top: 100px">
    <tbody>
    <tr>
    <td><table id="form1:loginGridPanel2" style="width: 100%">
    <tbody>
    <tr class="tableRow">
    <td class="tableColumn1"><table id="form1:loginGridPanel4" style="margin-left: 10px; margin-right: 10px; font-family: serif; width: 100%; margin-top: 50px">
    <tbody>
    <tr>
    <td>"form1:loginHyperlink1" href="faces/DSSCreditCardDebt.jsp;jsessionid=B26CD4F0ED76D8E672FE93643B549E1C" class="link">"form1:loginHyperlink1Text">DSS CreditCardDebt</td>
    </tr>
    </tbody>
    </table>
    </td>
    <td class="tableColumn2"><table id="form1:loginGridPanel5" style="width: 100%">
    <tbody>
    <tr>
    <td><table id="form1:loginGridPanel6" style="width: 100%; margin-top: 20px">
    <tbody>
    <tr>
    <td class="tableColumnCenter">"form1:image2" src="resources/DSS.png;jsessionid=B26CD4F0ED76D8E672FE93643B549E1C" alt="" /></td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    <tr>
    <td><table id="form1:loginGridPanel11" style="color: rgb(102, 0, 102); font-family: serif; width: 100%; font-size: 18px">
    <tbody>
    <tr>
    <td class="tableColumnJustify">"form1:outputText1">We have confirmed your request. You are allowed to WebStart DSS CreditCardDebt again. Please enter your Transaction ID you received from PayPal via email.</td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    <tr>
    <td><table id="form1:loginGridPanel14" style="font-family: serif; width: 100%">
    <tbody>
    <tr>
    <td><table id="form1:loginGridPanel7" style="width: 100%">
    <tbody>
    <tr>
    <td class="tableColumnCenter"></td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    <tr>
    <td><table id="form1:loginGridPanel8" style="width: 100%">
    <tbody>
    <tr>
    <td><table id="form1:loginGridPanel10" style="width: 100%; margin-top: 40px">
    <tbody>
    <tr>
    <td class="tableColumnRight"><label id="form1:loginComponentLabel1" style="color: rgb(102, 0, 102); font-size: 14px" class="tableColumnJustify">
    "form1:loginComponentLabel1Text">PayPal Transaction ID: </label></td>
    <td class="tableColumnLeft"><input id="form1:loginTextField1" type="text" name="form1:loginTextField1" maxlength="17" style="" /></td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    <tr>
    <td><table id="form1:loginGridPanel9" style="width: 100%; margin-top: 40px">
    <tbody>
    <tr>
    <td class="tableColumnCenter"><input id="form1:loginButton1" type="image" src="resources/Login.png" name="form1:loginButton1" /></td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    </tbody>
    </table>
    </td>
    <td class="tableColumn3"><table id="form1:loginGridPanel13" style="width: 100%">
    <tbody>
    </tbody>
    </table>
    </td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    <tr>
    <td><table id="form1:loginGridPanel3" style="font-family: serif; width: 100%; margin-top: 50px">
    <tbody>
    <tr>
    <td class="tableColumnCenter">"form1:loginOutputText1" style="color: rgb(153, 153, 255); font-weight: bold; font-size: 10px">Copyright(c) 2005 BARDUBITZKI Software</td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    </tbody>
    </table>
    <input type="hidden" name="form1" value="form1" /></form></body></html>
    Hope that will help.
    Stephan

Maybe you are looking for

  • Address book entries lost

    I noticed on a parallel topic that no one had answered. I just started a new Macbook. I transfered address book via fire wire. It tranfered fine. I used it. I shut down my computer and then re opened it. All address book entries disappeared. Also, th

  • Number of Rows in RowSet, function?

    Is there a fucntion call that returns the number of rows in a RowSet? thanks -nat

  • Last payment not paid.

    My last payment was not paid due to a change in credit card. When i load up Photoshop it tell me it will shut down in about 20 days and gives me a link to my account. i have changed the credit card on my account but nothing has happened. It says next

  • Planned Order for stock and planned order for customer requirement

    Hello everybody I want to make a different, in MD04,   between the planned order for stock and the planned order created for a customer requirement Thank for your help

  • DEAUTHORIZING COMPUTERS

    I recently had a computer meltdown. Fortunately, I had all my ITUNES music backed up so I could restore it. UN fortunately, I had to DEauthorize all of my computers (I only have one) and every time I try to play different songs it keeps asking me to