JSPDynPage component

I developed an application involving JSPDynPage component. when i run the application it gives an error "Error occurs during the rendering of jsp component.
Exception id: 02:25_15/12/06_0053_9973750. I didn't understand it.So can anybody help me regarding the same & how that error can be resolved.

Hi Kedar,
    here is the JSPDyn page code
package com.lti.portal;
//import bean.myBean;
import com.lti.portal.FirstBean;
import com.sapportals.htmlb.*;
import com.sapportals.htmlb.enum.*;
import com.sapportals.htmlb.event.*;
import com.sapportals.htmlb.page.*;
import com.sapportals.portal.htmlb.page.*;
//import com.sap.htmlb.page.PageException;
import com.sapportals.portal.prt.component.*;
public class Practs_JSPcomp extends PageProcessorComponent {
  public DynPage getPage(){
    return new Practs_JSPcompDynPage();
  public static class Practs_JSPcompDynPage extends JSPDynPage{
     private final static int INITIAL_STATE = 0;
        private final static int WELCOME_STATE = 1;
        private int state = INITIAL_STATE;
        private String name;
    private FirstBean myBean = null;
    public Practs_JSPcompDynPage()
          this.setTitle("Start");
    public void doInitialization(){
      IPortalComponentRequest request= (IPortalComponentRequest) this.getRequest();
       IPortalComponentContext myContext = request.getComponentContext();
      IPortalComponentProfile myProfile = myContext.getProfile();
      //new bean object
       FirstBean UserNameContainer= new FirstBean();
       //Set name
       UserNameContainer.setName("UNKNOWN USER");
       //Store bean in profile for JSP
       myProfile.putValue("myBean",UserNameContainer);
       //setting the state.
       state= INITIAL_STATE;
    public void doProcessAfterInput() throws PageException {
         //get the input from JSP
          InputField myInputField = (InputField) getComponentByName("user_name_input");
          if (myInputField != null) {
               this.name = myInputField.getValueAsDataType().toString();
          IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
          IPortalComponentContext myContext = request.getComponentContext();
          IPortalComponentProfile myProfile = myContext.getProfile();
          FirstBean myNameContainer = (FirstBean) myProfile.getValue("MyNameBean");
          myNameContainer.setName(name);
    public void doProcessBeforeOutput() throws PageException {
          switch (state) {
                         case WELCOME_STATE :
                                   this.setJspName("Practs_JSPFile.jsp");
                    break;
                    default :
                              this.setJspName("Practs_JSPFile.jsp");
                         break;
     public void onSendButtonClicked(Event event) throws PageException {
                state = WELCOME_STATE;
& here is d JSP code
<hbj:content
     id="myContext" >
       <hbj:page
            title="Start">
             <hbj:form
                  id="myFormId" >
               <%Declaration Of Bean%>
               <jsp:useBean
               id="myBean"
               scope="application"
               class="bean.FirstBean" />
                   <hbj:textView
                id="welcome_message"
                design="HEADER1">
                <%
                  welcome_message.setText
                  ("May the force be with you "+myBean.getName());
                %>
              </hbj:textView>
            <br>
            <br>
            <hbj:label
                id="label_input"
                text="Your name please"
                design="LABEL"
                required="TRUE"
                labelFor="user_name_input"
                />
   <%-- inputfield to allow userinput - the inputfield has the id --%>
   <%-- "user_name_input" which is used in the JSP DynPage to     --%>
   <%-- access the input field and retrieve the input of the user --%>
            <hbj:inputField
                id="user_name_input"
                type="STRING"
                design="STANDARD"
                width="250"
                maxlength="30"
             />
             <hbj:button
                id="Send_Button"
                text="Send"
                tooltip="Sends my name"
                onClick="onSendButtonClicked"
                width="100"
                design="EMPHASIZED">
                <%
                    myFormId.setDefaultButton(Send_Button);
                %>
               </hbj:button>
             </hbj:form>
       </hbj:page>
</hbj:content>
Following is the error statement
An exception occurred while processing a request for :
iView : N/A
Component Name : N/A
Error occurs during the rendering of jsp component.
Exception id: 02:25_15/12/06_0053_9973750
Message was edited by:
        Chetan Deshpande
Message was edited by:
        Chetan Deshpande
Message was edited by:
        Chetan Deshpande

Similar Messages

  • Error in JSPDYNpage component

    Hello everyone,
                          I am developing an application which involves a JSPDYNpage component and 2JSP files.......when i run the application i am gettting the error as follows
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Error occurs during the rendering of jsp component.
    Exception id: 04:58_05/01/07_0012_9973750
    See the details for the exception ID in the log file
    can anybody help me in resolving this problem
    Thanks,
    Chetan

    Hi Suresh,
    This is the code of the first JSP
    <%@ taglib uri= "tagLib" prefix="hbj" %>
    <hbj:content
         id="myContext">
              <hbj:page
                   title="PageTitle">
                           <hbj:form
                                id="myFormId">
                                  <hbj:label
                                       id=name_lable
                                       text="Enter your name"
                                       design="LABEL"
                                   required="TRUE"
                                   labelFor="user_name_input"
                              />
                                  <hbj:inputField
                                   id="user_name_input"
                                   type="STRING"
                                   design="STANDARD"
                                   width="250"
                                   maxlength="30"
                              />     
                               <hbj:button
                                   id="Display_Button"
                                   text="Display"
                                   tooltip="Display name"
                                   onClick="onDisplayButtonClicked"
                                   width="100"
                                   design="EMPHASIZED">
                                      <%
                                       myFormId.setDefaultButton(Display_Button);
                                   %>
                                  </hbj:button>
                           </hbj:form>
                </hbj:page>
    </hbj:content>
    <%@ taglib uri= "tagLib" prefix="hbj" %>
    <hbj:content
         id="myContext" >
                <hbj:page
                     title="PageTitle">
                          <hbj:form
                                id="myFormId" >
                                  <hbj:textView
                                       id="Welcome_message"
                                       design="HEADER1">
         <%
                                       welcome_message.setText("Hello"+Value);
                   %>
                                  </hbj:textView>
                           </hbj:form>
                </hbj:page>
    </hbj:content>
    This is the code of second JSP

  • Accessing image from dist/imgaes folder inside JSPDynpage Component

    Hi,
    I have a sceanario where I want to access JPG image stored in dist/images folder inside JSPDynpage Component java file.
    It is ok if I get it in the form of a byte array (byte[]).
    Any idea how to achieve it?
    Please help.
    Thanks and regards,
    Amey Mogare

    >
    Amey Mogare wrote:
    > Hi Clemens,
    >
    > Thank you. It worked.
    >
    > For my surprise, Isolation mode of iView is Embedded, but still it wasn't working for me!
    >
    > I tried your code and it worked!
    >
    >        IResource res = request.getResource(IResource.IMAGE, "images/draft.jpg");           
    >      String myServerPrefix = "http://mytest.com";
    >      String url = myServerPrefix + res.getResourceInformation().getURL(request);     
    >
    >
    > Now, can you tell me how to I get rid of this hard-coding server URL?
    >
    > Thanks and regards,
    > Amey Mogare
    Hi Arney,
    maybe you should first also give the suggestion of ram another chance, because you can also use it in your class code:
    String url = request.getWebResourcePath() + "/images/draft.jpg";
    Otherwise to avoid the hardcoding you can either perform configuration in your portalapp.xml with the server prefix and read it out, or write a little method that retrieves your server name. This is however not as trivial as it might look like. I personally have a method like follows:
    public String getBasePortalUrl(IPortalComponentRequest request) {
         StringBuffer requestURL = request.getServletRequest().getRequestURL();
         //Parse the server name,port etc. out of this request url, depending on your system environment
         //Normally you parse till you get to /irj

  • How to add more than one JSP file for a single JSPDYNPage component

    Hello Everyone,
                           I am creating one portal application which involves JSPDYNPage component, while creating this component one JSP file is also created. But i want one more JSP file for my application ...i.e- for the same JSPDYNPage component. can anybody tell me how to create one more JSP for the same component.
    Thanks
    Chetan Deshpande

    Hi Pooja,
                 I tried the way u said, but when i try to create it(i.e- right click on pagelet folder & then new---> other......the way u said.) it asks for JSP file name but finish button is disabled even after entering the JSP file name.....is it that i am doing something wrong....please guide me for this & one more thing it asks for folder name also ...where to store that file....but when i try to enter anything.It doesn't show or doesn't allow me to do so
    Thanks
    Chetan

  • Execute Interactive form with JSPDynPage component

    Hi all,
    I need to use interactive forms in my project.
    Can i use interactive forms in my JSPDynpage components?
    Regards
    Gabriel García.

    Hi,
    A Presentation from tech ed
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/26e9dc90-0201-0010-a790-a7048c8bba95
    A blog
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/88e7ea34-0501-0010-95b0-ed14cfbeb85a
    Adobe Online Interactive Forms Integration into Web Dynpro for Java Applications - Webinar Details
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cf8dc795-0801-0010-ae97-af93a0795b3f
    Regards
    Ayyapparaj

  • Error while using jsp scriptlet or expression with JSPDynpage default jsp

    Hi everyone,
    I am getting the following error while trying to use any kind of jsp scriptlet or expression within the default jsp page that is created with JSPDynpage application:
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : Navroz_JSPDynPage_JCo_BAPI_FLCUST.FlightCustJSP
    Component Name : Navroz_JSPDynPage_JCo_BAPI_FLCUST.FlightCustJSP
    Error occurs during the rendering of jsp component.
    Exception id: 08:50_05/10/06_0032_17543050
    See the details for the exception ID in the log file
    For example if I try to use even simple syntax like:
    <% if(true) { %>
    display htmlb tableviewcomponent
    <% } %>
    or
    <hbj:tableView
         id="myTableView"
         model="flightCustomer.model"
         design="ALTERNATING"
         headerVisible="true"
         footerVisible="true"
         fillUpEmptyRows="true"
         navigationMode="BYLINE"
         selectionMode="SINGLESELECT"
         headerText="Flight Customer List"
         onNavigate="Navigate"
         visibleFirstRow="<%=flightCustomer.getVisibleFirstRow()%>"
         visibleRowCount="5"
         rowCount="16"
         width="500 px"
         />
    here also the <%=flightCustomer.getVisibleFirstRow()%> line gives the above mentioned error. If I remove such scriptlets or expression then it works fine.
    What could be the problem. Are jsp scriptlets or expressions incompatible with portal applications?

    hi Navroz,
    check this
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90e8e837-cc15-2a10-8db1-a87e2d29e9c9
    Re: Defining HTMLB tags in jsp file of JspDynPage component
    Re: JSPDynPage does not work in EP6.0
    bit more
    JspDynPage with Client Side Eventing and Database
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b3c1af90-0201-0010-c0ac-c8d802d264f0
    let me know u need any further info
    bvr

  • Accessing the bean in JSPDynPage of PAI event

    Hi friends,
       In the PAI event of JSPDynpage component iam accessing the bean thru the following stmt.
      dynpagebean myNameContainer=(dynpagebean)myProfile.getValue("MyNameBean");
    What string have to pass in the getValue() method?
    Iam giving the input in the first page.and storing this value in bean.accessing the value stored in bean to display it in the second page.but its giving error while requesting the second page.can anybody please help me?
    with regards
    sireesha.

    Hi
    dynpagebean myNameContainer=(dynpagebean)myProfile.getValue("MyNameBean");
    Here the string to be passed in getValue method shoild be the id of the bean that you see in jsp:useBean tag.
    you can set the attributes of the bean using its setter methods:
    e.g.I have a setter method which sets the attribute Name in my bean with type as string.
    myNameContainer.setName("ABC");
    now I put the bean in profile as follows:
    myProfile.putValue("myBean",myNameContainer);
    Now you can access the bean in both the JSPs by using jsp:useBean tag.
    Here you will have to remove
    <property name="ComponentType" value="jspnative"/>
    <property name="JSP" value="pagelet/<jspname>.jsp"/>
    properties in component config in order to be able to access both the JSPs.
    You can also use IPortalComponentContext instead of IPortalComponentProfile since the getValue and putValue methods of IPortalComponentProfile are depricated.
    Regards,
    Ajay

  • Using Flex with JSPDynPage

    Hi,
    Can we develop a JSPDynPage component, using Adobe Flex as the UI instead of using HTMLB? (by embedding flex components in the jsp file). Is it possible to call methods in other java files from a flex application?
    Did anyone try to develop a JSPDynPage component this way?
    Regards,
    Sudhir

    Hi,
    Pls check out these links below for this info -
    Adobe Flex with RFC - 
    Binding Data through function module in adobe to display charts
    How to connect to SAP Database from a Adobe flex application?
    Adobe flex and Sap
    Adobe Flex within SAP NetWeaver Developer
    Regards
    Lekha

  • How to Call a JSPDynPage with Anther JSPDynPage

    Hi All,
    Iam new to Netweaver.
    I have got stuck up with a problem.
    The problem is I have two JSPDynPages in Paglet folder in Portal Compnent Project.
    I need to call one JSPDynPge with Another ,So that the content in one JSP Dynpage gets displayed in another JSPDynPage
    plzz help mee
    Thanks in Advance,,,,

    Hi,
    There are two cases, either there are two JSPs in the pagelet folder in the same component or there are two separate JSPDynPage components. If there are two JSP files in the same component and invoke them through the JSPDynPage component class using the 'this.setJspName("<filename>.jsp");' you can use the Bean to store values (on click of the button where you want to include the second JSP , raise an event and call the second JSP).
    Hope that I understand your correct and it helps.
    Avi.

  • Adding component to Navigation Panel -

    Hi,
    I have developed a JSPDynPage Component. After developing the component I need to add that component to my Navigational panel using an iView. Unfortunately I am not able to achieve this.
    Can anybody please suggest me how to add a JSPDynPage component to Navigational panel?
    Thanks in advance for your responses!!!!
    --Vishal

    Vishal,
    Unfortunately, this is not an easy task. Have you worked with the Default Framework Page before?
    Read the following links;
    Default Framework Page
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b4/771158e4cb4bf6af9974380948db86/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/97/d4ee3d6434445ae10000000a11405a/frameset.htm
    Regards,
    James

  • How to execute.... method in JSPDynPage using a href

    Hi
    I need your confirmation, if we can execute a method in JSPDynPage component using a Href on click event?
    Regards,
    Sushil Jain

    Ok, as per the message JSPDynpage createRequestEvent
    Please help me knowing, how to call the event by clicking a hyperlink.
    I am looking for the syntax that will
    Override the method (BELOW) in JSP page.
    doProcessCurrentEvent(Event theEvent) {
       IPortalRequestEvent lastEvent = request.getRequestEvent();
            if (lastEvent != null && lastEvent .getName().equals("compute")) {
                //implement your logic
    Many Thanks,
    SK

  • Url link not invoking a dynpage component

    hi all,
    I have a jspdynpage component(A) and an iview(AIview) for it..
    I have a url link with argument "targerURL" in that iview(AIview) to invoke another dynpage component(B)..
    url is
    http://amsdc2-s-917.europe.shell.com/irj/servlet/prt/portal/prtroot/<Component B>.default?id=0&targetURL=http%3A%2F%2Fsww-jen.shell.com/
    But on click of that url , component B is not getting invoked...
    I tried forming the url like ...
    <PAR name>.<component B>.default?id=..
    but this too doesnt invoke component B(dynpage component) which actually processs the request object and gets the "targetURL" argument in the url.....
    Anyone tell me where i m going wrong ..?
    Thanks and Regards,
    Siva

    Hi siva,
    <a href='Projectname.Componentname'>Click here</a>
    This is how I browsed to another component in the same project. It was in APC hope u can try the same in Dynpage also.
    Regards
    gEorgE

  • JSPDynPage : Cannot find the tag library descriptor for tagLib

    Hi,
    I'm working JSPDynPage and i have error in IDE at design time.
    i just created one JSPDynPage component. and an error is shown at the uri="tagLib"
    <%@ taglib uri="tagLib" prefix="hbj" %>
    The problem is that the word 'tagLib' is marked and has the hoovering text "Cannot find the tag library descriptor for tagLib". Why is this? Do I have to do add some dc dependency ? Or is there another cause for this problem?
    I am working with CE 7.2 .
    portalapp.xml
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="SharingReference" value="com.sap.portal.htmlb"/>
      </application-config>
      <components>
        <component name="GCPPURLJSP">
          <component-config>
            <property name="ClassName" value="com.cts.gc.GCPPURLJSP"/>
            <property name="SecurityZone" value="com.cts.gc/low_safety"/>
          </component-config>
          <component-profile>
            <property name="tagLib" value="/SERVICE/com.sap.portal.htmlb/taglib/htmlb.tld"/>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>
    Best regards
    Pavan

    Hi Pavan,
    For using htmlb, you can use another tag library. Use the below code in your jsp
    <%@ taglib uri = "prt:taglib:tlhtmlb" prefix="hbj" %>
    And in portalapp.xml, replace the <property> of <component-profile> with the below line.
    <property name="tlhtmlb" value="/SERVICE/com.sap.portal.htmlb/taglib/htmlb.tld">
    Also, you may need to add the import statement for htmlb, if not done earlier -
    <%@ page import = "com.sapportals.htmlb.*" %>

  • JSPDynPage unable to debugging in NWDS?

    Hi, I'm using EP 6 SP9 sneak preview edition to develop and test portal components.  I'm running SAP J2EE engine in debug mode and I have successfully debugged AbstractPortalComponent. 
    I recently created a JSPDynPage component but unable to debug, I don't know why.  When I copied the code from JSPDynPage and created a new AbstractPortalComponent, set some breakpoints debug seems to work but not working for JSPDynPage, any reason?  Am I missing anything here?
    Another question here is can we debug JSP as well?
    FYI: I was able to debug JSPDynPage component when I exported EP5 JSPDynPage component into NWDS, it then created EP6 portal component structure and deployed into EP6.
    Appreciate your help.
    Thanks
    Siva
    Message was edited by: SV

    Thanks Ganesh,
    One of the link you provided had resolved my issue with debugging.  All I did is remove the below two entries from portalapp.xml file
    <property name="ComponentType" value="jspnative"/>
    <property name="JSP" value="pagelet/InitialPage.jsp"/>
    These 2 entries are created by default for JSPDynPage components by the wizard in NWDS SP9.  I don't know if this is same in later releases.
    I can debug now.
    Thanks
    Siva

  • Intercommunication between two jspdynpage

    i have two jspdynpage component in the same par file.
    in an event in one jsp in first jspdynpage ..i hav to call the second jspdynpage.
    i am using the following code
    data is my bean class
    public void onCellSelect(Event event) {
    IPortalComponentResponse response =
    (IPortalComponentResponse) this.getResponse();
    IPortalComponentRequest request =
    (IPortalComponentRequest) this.getRequest();
    TableCellClickEvent tcce = (TableCellClickEvent) event;
    int rowIndex = tcce.getVisibleRowIndex();
    int colIndex = tcce.getVisibleColIndex();
    String info = data.setvalue(rowIndex, colIndex);
    IPortalComponentURI compURI = request.createPortalComponentURI();
    compURI.setContextName("pcd:portal_content/bidyut/first_second_comp");
    String Url = compURI.toString();
    response.write("<script language='JavaScript'>");
    response.write("alert('" + Url + "');");
    response.write("</script>");
    response.write(
    "<form id=\"redirform\" method=\"post\" target=\"_parent\" action="
    + Url
    + ">");
    response.write("</form>");
    response.write(
    "<script>document.getElementById(\"redirform\").submit();</script>");
    now i am able to open the second component..but i also need to pass a info variable as an argument to the second jspdynpage..
    please tell the code to proceed .
    looking forward for ur response.
    thanks
    bidyut dutta

    Try this code and let me know the results.
    EPCF1.java(producer of event)
    ===============================
    package com.epcf;
    import com.sapportals.htmlb.page.DynPage;
    import com.sapportals.htmlb.page.PageException;
    import com.sapportals.portal.htmlb.page.JSPDynPage;
    import com.sapportals.portal.htmlb.page.PageProcessorComponent ;
    public class EPCF1 extends PageProcessorComponent {
    public DynPage getPage(){
    return new EPCF1DynPage();
    public static class EPCF1DynPage extends JSPDynPage{
    public void doInitialization(){
    public void doProcessAfterInput() throws PageException {
    public void doProcessBeforeOutput() throws PageException {
    this.setJspName("EPCFProducer.jsp");
    EPCF2.java(consumer of the event)
    ===================================
    package com.epcf;
    import com.sapportals.htmlb.page.DynPage;
    import com.sapportals.htmlb.page.PageException;
    import com.sapportals.portal.htmlb.page.JSPDynPage;
    import com.sapportals.portal.htmlb.page.PageProcessorComponent ;
    public class EPCF2 extends PageProcessorComponent {
    public DynPage getPage(){
    return new EPCF2DynPage();
    public static class EPCF2DynPage extends JSPDynPage{
    public void doInitialization(){
    public void doProcessAfterInput() throws PageException {
    public void doProcessBeforeOutput() throws PageException {
    this.setJspName("EPCFConsumer.jsp");
    EPCFProducer.jsp
    ================
    <%@ taglib uri = "tagLib" prefix = "hbj" %>
    <hbj:content id="myContext" >
    <hbj:page title="PageTitle">
    <script>
    function buttonClick()
    var name = 'hi';
    alert('hi');
    EPCM.raiseEvent("urn:com.epcf.EPCFProducer", "clickEvent", name);
    alert('hi');
    </script>
    <hbj:form id="myFormId" >
    <hbj:button
    id="myButton"
    text="click"
    width="125px"
    tooltip="click here"
    onClientClick="JavaScript:buttonClick();"
    />
    </hbj:form>
    </hbj:page>
    </hbj:content>
    EPCFConsumer.jsp
    =================
    <%@ taglib uri = "tagLib" prefix = "hbj" %>
    <hbj:content id="myContext" >
    <hbj:page title="PageTitle">
    <script>
    function eventHandler(event)
    myFormId.data.value=event.dataObject;
    EPCM.subscribeEvent("urn:com.epcf.EPCFProducer", "clickEvent", eventHandler);
    </script>
    <form id="myFormId" >
    The string passed is:
    <input type="text" value="" name="data"/>
    </form>
    </hbj:page>
    </hbj:content>
    portalapp.xml
    ================
    <?xml version="1.0" encoding="utf-8"?>
    <application>
    <application-config>
    <property name="SharingReference" value="com.sap.portal.htmlb"/>
    </application-config>
    <components>
    <component name="EPCF1">
    <component-config>
    <property name="ClassName" value="com.epcf.EPCF1"/>
    </component-config>
    <component-profile>
    <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
    </component-profile>
    </component>
    <component name="EPCF2">
    <component-config>
    <property name="ClassName" value="com.epcf.EPCF2"/>
    </component-config>
    <component-profile>
    <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
    </component-profile>
    </component>
    </components>
    <services/>
    </application>

Maybe you are looking for

  • How to get the owner name for the file in ftp using abap ?

    Hi folks , How to get the owner name for the file in ftp using abap ? please help me very ugernt . I tried with all standard FTP commands but doest work out me . Helping in this regard highly appreciated ... Thanks and regards, Swarupa Vanarchi

  • Extracting text to Unicode (Korean, Japanese, ...)

    Hi, I am using the PDFWordFinder to extract text from PDFs in Unicode. This works fine for a lot of documents, even with Japanese, Korean, Chinese ones. But, I have some documents, using Korean fonts, which do not seem to be 'compatible' with the PDF

  • Sql in jsp

    can n e 1 tell me where i am going wrong i am trying to use sql in a jsp to try to take out specific tuples from a table in my db but it is not working. i have been looking at the code for ages and can't figure out where i'm going wrong. please help!

  • How do I convert images to whatever icon MAc uses?

    Client: Mac OS 10.6.6 Hi All, I am coming from the Linux side. In Linux, if I an find an Image I like, I can use it on my desktop Icons. Format is not an issue. Questions: 1) in Mac, I have found it wants a particular format. How do I convert Images

  • Adding objects to other objects

    I would like to add a object to another object, Also, can i throw strings into a stack?? Cobbweb