MouseOver StaticText to run Complex Function in class file (please Help!)

Hi, My current issue is this:
I have a Function called "utptab(x)", where x is an integer. The process of the function isn't too important and is complex (it populates the type of table in the Basic pallete with data from a stored procedure in MySQL based on the parameter passed to it. This all works fine).
Since the function is currently sitting in the main Java class (Page1.class) I can call it from anywhere in the main Java code successfully. For example, if I drag a button to the stage, then double click on it to get to actions and insert the line "utptab(2);" The function is successfully processed and the table (tbl_utp) is successfully populated with data.
My aim: I have 2 static text box's called "st_utp1" and "st_utp2", When I mouse over them, I would like the function "utptab(x)" to be called with the appropriate number, eg, if mouse over "st_utp1" I wish for the function to be called as "utptab(1)" when over "st_utp2" I wish for the fucntion to be called as "utptab(2)". I may have hundreds or thousands of "st_utpx" (they will be created and named dynamically later).
My Main issue: I can't call the function "utptab(x)" located currently in the Java side of "Page1.class" with a mouse over a static text event, does anybody know how?
Ontop of this, I would also like to make the table (tbl_utpx) to move to the x,y position of the cursor on the screen and also render visible on mouse over the static text box and hidden on mouse out. (I already know one method for hidden/visible method).
I would prefer to be able to handle mouse events in Java, not JSP or at least choose to hold my functions where ever I like and call them from where ever I like.
Just one other question, since I'm using JSC2, Where should this procedure lie for best security and performance? The table only needs to be read only, and the data only needs to be available while a mouse over event happens (to me seems like it should be in the request scope). Should it be a seperate class file? If u need I can post the code on request but didn't want to draw away from my main issue.
Cheers.
P.S. it took me a long time to find out how to populate the basic table with a stored proc from MySQL (2 months), I haven't seen any other code to do this nor to populate from a tabular file, am I the only one to do this or wanting to do this? Does everybody that want's to do more complex things than pretty web pages use a different IDE than Creator 2?
Once again looking forward to the response and sorry if I led away from the main question, which was: How to call a function that is located in a class file from another part of the program or another file?
Cheers, from 3Pc
Message was edited by:
3Pc

Cheers for the response, Tried that, couldn't get it to work, do u place taht code in the staticText onMouseOver property?
Here is the basic code in the Java.class (what u get when you usually click the Java button)
* Page1.java
package a1;
import    ...
public class Page1 extends AbstractPageBean {
    public String utptab(int utp) {
        FieldKey[] fk = new FieldKey[0];
        RowKey[] rk = new RowKey[0];
        CallableStatement stmt = null;
        Connection conn = null;
        ResultSet resultSet = null;
        try {
            Class.forName("com.mysql.jdbc.Driver").newInstance();           
            conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/corrovu?user=root&password=Glancino");         
            stmt = conn.prepareCall("{call utpn(?)}");         
            stmt.setInt(1, utp);         
            stmt.execute();         
            resultSet = stmt.getResultSet();
            CachedRowSetImpl crs = new CachedRowSetImpl();
            getSessionBean1().setCrs(crs);
            getSessionBean1().getCrs().populate(resultSet);
            conn.close();
            getTableRowGroup2().getChildren().clear();
            getCachedRowSetDataProvider1().setCachedRowSet(getSessionBean1().getCrs());
            fk = getCachedRowSetDataProvider1().getFieldKeys();
            rk = getCachedRowSetDataProvider1().getAllRows();
            FacesContext ctx = FacesContext.getCurrentInstance();
            Application app = ctx.getApplication();
            ValueBinding vb = app.createValueBinding("#{currentRow.value['"+fk[0].getFieldId()+"']}");
            ValueBinding vb2 = app.createValueBinding("#{currentRow.value['"+fk[1].getFieldId()+"']}");
            getStaticText4().setValueBinding("text", vb);
            getStaticText5().setValueBinding("text", vb2);
        } catch (SQLException se) {
        } catch (Exception e) {
        return null;
    public String button1_action() {
        utptab(2);
        return null;
    public String button2_action() {
        utptab(1);
        return null;
}You also need to add a property to SessionBean1 called crs, it be of type cachedRowSetImpl, now you need to drop in a cachedRowSetDataProvider, bind it to "crs" and have this as the data provider for the table, You will have to create at lest one column for it to register. (Creating Columns dynamically will be my next chanllenge after this).
The JSP source is as follows:
<?xml version="1.0" encoding="UTF-8"?>
<jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view>
        <ui:page binding="#{Page1.page1}" id="page1">
            <ui:html binding="#{Page1.html1}" id="html1">
                <ui:head binding="#{Page1.head1}" id="head1">
                    <ui:link binding="#{Page1.link1}" id="link1" url="/resources/stylesheet.css"/>
                </ui:head>
                <ui:body binding="#{Page1.body1}" id="body1" style="-rave-layout: grid">
                    <ui:form binding="#{Page1.form1}" id="form1">
                        <ui:button action="#{Page1.button1_action}" binding="#{Page1.button1}" id="button1" onMouseOver="form1.button1.click();"
                            style="left: 239px; top: 192px; position: absolute" text="Button"/>
                        <ui:button action="#{Page1.button2_action}" binding="#{Page1.button2}" id="button2" style="left: 47px; top: 192px; position: absolute" text="Button"/>
                        <ui:table augmentTitle="false" binding="#{Page1.table2}" id="table2" style="left: 72px; top: 216px; position: absolute; width: 360px"
                            title="Table" width="0">
                            <script....</script>
                            <ui:tableRowGroup binding="#{Page1.tableRowGroup2}" id="tableRowGroup2" rows="10" sourceData="#{Page1.cachedRowSetDataProvider1}" sourceVar="currentRow">
                                <ui:tableColumn binding="#{Page1.tableColumn4}" headerText="tableColumn1" id="tableColumn4">
                                    <ui:staticText binding="#{Page1.staticText4}" id="staticText4"/>
                                </ui:tableColumn>
                                <ui:tableColumn binding="#{Page1.tableColumn5}" headerText="tableColumn2" id="tableColumn5">
                                    <ui:staticText binding="#{Page1.staticText5}" id="staticText5"/>
                                </ui:tableColumn>
                            </ui:tableRowGroup>
                        </ui:table>
                        <ui:staticText binding="#{Page1.utp1t}" id="utp1t" onMouseOver="form1.button1.click();"
                            style="position: absolute; left: 72px; top: 72px" text="1"/>
                        <ui:staticText binding="#{Page1.utp2t}" id="utp2t" style="position: absolute; left: 168px; top: 72px" text="2"/>
                    </ui:form>
                </ui:body>
            </ui:html>
        </ui:page>
    </f:view>
</jsp:root>So I want when the Mouse is Over "utp1t" the Function "utptab(1);" to execute.
Any Suggestions, it currently works correctly with button1 & button2.
Cheers.

Similar Messages

  • Line number in a *.class file, please help, advanced language guys

    dear all,
    i use c++ to open a *.class file and try to read line number of code in the file, i have 2 questions:
    1. i read line number in a method successfully, but i can not understand the meaning of start_pc, following are one of those data, please explain:
    s = start_pc,n = line_number
    s , n
    0 , 123
    8 , 125
    23 , 126
    29 , 127
    34 , 129
    38 , 130
    2. i can not find where the class's line number are, i.e. class start line and class end line, or field's line number.
    does these info exist inside a *.class file?
    thx for any light

    jdb gets line number of fields from class file, not
    source file definitely.I'm not really sure how you tested this, but here's my test, and JDB definitely gets its listing from the source file.
    First, I created and compiled class Tester:
    public class Tester
        public static void main( String[] argv )
        throws Exception
            Tester x = new Tester();
            System.out.println(x.toString());
        int     x;
        int     y;
        private Tester()
            x = 0;
            y = 1;
    }Then, I ran this in JDB. Note lines 16 and 17 in the output from "list":
    H:\Workspace>jdb Tester
    Initializing jdb ...
    stop in Tester.mainDeferring breakpoint Tester.main.
    It will be set after the class is loaded.
    runrun Tester
    Set uncaught java.lang.Throwable
    Set deferred uncaught java.lang.Throwable
    >
    VM Started: Set deferred breakpoint Tester.main
    Breakpoint hit: "thread=main", Tester.main(), line=12 bci=0
    12            Tester x = new Tester();
    main[1] list
    8    {
    9        public static void main( String[] argv )
    10        throws Exception
    11        {
    12 =>         Tester x = new Tester();
    13            System.out.println(x.toString());
    14        }
    15
    16        int     x;
    17        int     y;
    main[1] quit
    Tester@b82368Then I edited the source file. Again, look at lines 16 and 17:
    H:\Workspace>jdb Tester
    Initializing jdb ...
    stop in Tester.mainDeferring breakpoint Tester.main.
    It will be set after the class is loaded.
    runrun Tester
    Set uncaught java.lang.Throwable
    Set deferred uncaught java.lang.Throwable
    >
    VM Started: Set deferred breakpoint Tester.main
    Breakpoint hit: "thread=main", Tester.main(), line=12 bci=0
    12            Tester x = new Tester();
    main[1] list
    8    {
    9        public static void main( String[] argv )
    10        throws Exception
    11        {
    12 =>         Tester x = new Tester();
    13            System.out.println(x.toString());
    14        }
    15
    16        int     a;
    17        int     b;
    main[1]

  • My iPad 4 tried to open application but repeatedly iCloud asked for login with apple id password. I put my apple id password correct,even i reset it again but still it does not accept in iPad .i am bored with this 3rd class application.please help

    My iPad 4 tried to open application but repeatedly iCloud asked for login with apple id password. I put my apple id password correctly,even i reset it again but still it does not accepted in iPad .i am bored with this  class application.please help.After every 1 second icloud logoin asked.

    Find Apple ID
    https://iforgot.apple.com/applied
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/TS3694
    If you can’t update or restore your iOS device
    http://support.apple.com/kb/ht1808
     Cheers, Tom

  • What is the syntax for calling function from class file by jsp

    does anyone here knows what is the syntax of how to call a function from java class file by javascript code or any way to call it?
    and where should i put the calling function code? because the function is called depend on the user click.
    for example
    <%=pc.functionName(a,b)%>
    for the variable a and b, how can i get the value from html textbox and put it in a and b...
    urgent needed...
    thx

    Jsp's are executed before the Html forms are created and loaded. Dont try to use a java code function calling on a javascript click. You'll have to explicitly redirect it into a servlet where in you can call the function you want.
    Well! another way could be using AJAX. That seems to be powerfull enough and it might also serve your purpose.
    Hope this helps

  • My Function is not working (Please help)

    var myDialog = new Window('dialog',"MyTool");
    buildWindow();
    myDialog.show();
    function buildWindow(){
    myDialog.alignChildren = "left";
    // Properties for myReportFolder
    myDialog.preferredSize.width=300
    var myReportFolder=myDialog.add('panel',undefined,"Choose folder to save report:", {borderStyle:'raised'});
    myReportFolder.orientation="row"
    // Properties for mySelectedFolder
    // var mySelectedFolder = myReportFolder.add('group',undefined);
    // Properties for mySelectedPath
    var mySelectedPath = myReportFolder.add('edittext',undefined,"~/Report path");
    mySelectedPath.preferredSize.width = 275;
    // Properties for myBrowseFolder
    var myBrowseFolder = myReportFolder.add('button',undefined,"Choose");
    myBrowseFolder.onClick = function ()
    var myfilePath=Folder.selectDialog ("Choose a Report Folder");
    if(myfilePath != null)mySelectedPath.text=myfilePath.fsName;
    var myPanel1 = myDialog.add('statictext',undefined,"Select Document Language:");
    var theLanguages = app.languagesWithVendors.everyItem().name;
    // Properties for myPanel1.dropDownList
    var dropDownList = myDialog.add('dropdownlist',undefined,undefined,{items:theLanguages}) ;
    dropDownList.selection = 1;
    // Properties for myChoice
    var myChoice = myDialog.add('panel',undefined,"Select your option", {borderStyle:'raised'});
    myChoice.alignChildren = "left";
    // Properties for searchDoubleSpace
    // Properties for searchWrongLanguage
    var searchWrongLanguage = myChoice.add('checkbox',undefined,"Find Languages other than above selected Language");
    searchWrongLanguage.value = false;
    var searchDoubleSpace = myChoice.add('checkbox',undefined,"Find Double Spaces");
    searchDoubleSpace.value = false;
    var unusedParaStyle = myChoice.add('checkbox',undefined,"Find Unused Paragraph Styles");
    unusedParaStyle.value = false;
    var myBleed = myChoice.add('checkbox',undefined,"Check Bleed Value");
    myBleed.value = false;
    // Properties for myDialog.myPanel3
    var myPanel4= myDialog.add('panel',undefined,undefined, {borderStyle:'raised'});
    // Properties for myPanel4.closeButton
    myPanel4.orientation="row"
    myPanel4.closeButton = myPanel4.add('button',undefined,"Close",{name:'cancel'});//tan:add name cancel
    // Properties for myPanel4.goButton
    myPanel4.goButton = myPanel4.add('button',undefined,"RUN",{name:'ok'});//tan: add name ok
    myPanel4.goButton.onClick = function (){
    //Bleed
    var myDocName=app.activeDocument.name;
    var myFilePath1=mySelectedPath.text + "/" + myDocName + ".txt";
    var myTextFile = new File(myFilePath1);
    if ( myTextFile.exists )
    myTextFile.remove(myTextFile);
    flag=false;
    if (myBleed.value == true){//running succesfully
    myDoc=app.activeDocument.documentPreferences
    if ((myDoc.documentBleedTopOffset)!=9){
    write("Document TOP Bleed is not correct "+myDoc.documentBleedTopOffset);
    if ((myDoc.documentBleedBottomOffset)!=9){
    write("Document BOTTOM Bleed is not correct "+myDoc.documentBleedBottomOffset);
    if ((myDoc.documentBleedInsideOrLeftOffset)!=9){
    write("Document INSIDE/LEFT Bleed is not correct "+myDoc.documentBleedInsideOrLeftOffset);
    if ((myDoc.documentBleedOutsideOrRightOffset)!=9){
    write("Document OUTSIDE/RIGHT Bleed is not correct "+myDoc.documentBleedOutsideOrRightOffset);
    }//close if
    //Unused Paragraph style
    if (unusedParaStyle.value == true){
    var myDoc = app.activeDocument;
    var myParStyles = myDoc.paragraphStyles;
    for (j = myParStyles.length-1; j >= 2; j-- ) {
    removeUnusedParaStyle(myParStyles[j]);
    function removeUnusedParaStyle(myPaStyle) {
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    app.findTextPreferences.appliedParagraphStyle = myPaStyle;
    var myFoundStyles = myDoc.findText();
    if (myFoundStyles == 0) {
    write(myPaStyle.name);
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    }//close if
    //Search for Double Spaces
    if (searchDoubleSpace.value == true){
    app.findGrepPreferences = NothingEnum.nothing;
    app.changeGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences.findWhat = " ";
    var result = Number(app.activeDocument.findGrep().length);
    if (result>=1){
    write("Double space found in this document " + result);
    }//close if
    //Search for Wrong Language
    if (searchWrongLanguage.value == true){
    //working
    langList = [];
    for (s=0; s<app.activeDocument.stories.length; s++)
    tr = app.activeDocument.stories[s].textStyleRanges;
    for (t=0; t<tr.length; t++)
    if (!inArray (langList, tr[t].appliedLanguage.name))
    langList.push (tr[t].appliedLanguage.name);
    write ("Number of languages: "+langList.length+"\r(And they are: "+langList.join(", ")+")");
    function inArray (arr, items)
    var check;
    for (check=0; check<arr.length; check++)
    if (arr[check] == items)
    return true;
    return false;
    }//close if
    else (searchWrongLanguage.value == false){
    }//close else if
    }//close onClick function
    }//end buildWindow
    //*****Browse Report Folder and Writing file
    function write(text){
    var myDocument=app.activeDocument;
    var myFilePath1=myDocument.filePath + "/" + "myDocument_Report" + ".txt";
    var myTextFile = new File(myFilePath1);
    if ( myTextFile.exists )
    myTextFile.open("e");
    myTextFile.seek(0, 2);
    else {
    myTextFile.open("w");
    myTextFile.write(text+"\r");
    myTextFile.close()
    myTextFile.execute()
    }Hi All,
    I have created below script. But there is some problem which I am unable to find.
    My two check boxes 1) Find double Spaces and 2) Find Unused Paragraph Styles is not running in this script. When I run this script on ESTK it gives error "Cannot handle the request because a modal dialog or alert is active."
    But every function is working fine as a single script. Please check.
    Thanks in advance for your effort on this.
    Tan
    See my script code below. Its messy but working.

    Thanks for your answer.
    I have tried but couldn't succes.
    Couldn't anybody please help me to run my script successfully.
    Please help. Its urgent.
    Tan

  • Complex JavaBean Mapping in iBatis [Please help!]

    hi,
    i m new to IBatis, i got some mapping problems, and there are not too many tutorials out there, please help me, thanks.
    For example, i have 2 beans:
    // This is the Company bean public class Company {   private long pkId;   private String name;   private List employees;   ...... } // The Employee bean public class Employee {   private long pkId;   private String firstname;   private Company parentCompany; }
    In the Employee class, 'parentCompany' is of type 'Company', but in the Database, the corresponding column 'parent_company' stores a 'long' value, which is the company's pkId.
    In the mapping file, i am ok with 'Select' to either get 'Company' from an 'Employee', or get a list of employees from a 'Company'
    But there are problems when i m trying to save/update the 'Employee' object, i don't know how to write the Mapping for this, there's always a TypeHandler exception. Here's my mapping file for the employee:
    <update id="update_employee_by_pkid" parameterClass="java.util.HashMap"> UPDATE ido_user SET <isPropertyAvailable property="firstname"> firstname = #firstname# </isPropertyAvailable> <isPropertyAvailable property="lastname"> lastname = #lastname# </isPropertyAvailable> <isPropertyAvailable property="email"> email = #email# </isPropertyAvailable> <isPropertyAvailable property="role"> role = #role# </isPropertyAvailable> <isPropertyAvailable property="parent_company"> parent_company=#parent_company# </isPropertyAvailable> WHERE pk_user_id = #pkid# </update>
    when i call this query, i pass in a Map, in the map, there might be one or more entries, e.g.
        map.put("pkid", 20);     map.put("firstname", "John");     map.put("lastname", "Smith");     map.put("parent_company", parentCompany);  // in here, the 'parentCompany is an instance of Object Company, which is retrieved from the DB
    As the map contains a 'parentCompany', but the DB actually needs a long, so in the DAO class, i grab the id of the 'parentCompany', put it into the map, and replace the parentCompany like this:
        map.put("parent_company", new Long(parentCompany.getPkId()));
    But this gives me a NullPointerException, it happens at the point that i call: sqlMap.update("update_employee", map);
    Another question is about mapping design between JavaBean, like those 2 classes i gave above, do you think the design is good? By doing so, i can get the company from a given Employee, on the other hand, i can get a list of Employees of a given company. How would you do for such requirements?
    Anyone has idea about it?
    Thanks for your help!
    Best regards

    I'll give this one more shot to see if anyone can help me.
    I'm also willing to pay for this. I would do all the Flash design
    work, provide the database, and all the graphics. I just need the
    coding done. I'll write out in English what I need it to do, and
    hopefully someone might be willing to translate into actionscript.
    1. A user selects what category of connector they want to add
    by clicking a button.
    2. When the button is clicked, a list of connector names
    appears. This list is populated from an Access database using ASP.
    3. A user selects a connector by clicking on it's name. The
    draggable movie clip associated with that connector appears and is
    ready to drag.
    4. If the user drops it in the wall plate "drop zone," the
    connector stays there, and the price of the connector (also
    specified in the database) is added to the cost form.
    5. If the user drops it outside the "drop zone," it snaps
    back into original position.
    6. Once dropped in the "drop zone," the user can click and
    drag the connector around any way they want within the drop zone
    without the price being added again. If the user drags the
    connector outside the drop zone to a "trash can," the connector
    disappears and the price is reduced from the total.
    7. Once the user is finished building their plate, they can
    click a "finished" button and be taken to a form to submit their
    email address and comments. The details of the wall plate order,
    the cost, and the user submitted form are then emailed to our sales
    team.
    That's the project in a nutshell. I have drag functionality
    working, and the price adding up, but I don't know how to tie in
    the database. Once again, I'm willing to pay someone who might be
    able to do the coding on this. If you're interested, please send me
    an email at [email protected] and I can provide the most current
    FLA and additional details. Thanks!

  • Need to import my java class. Please help

    Dear all.
    I made a java class named GetOS which contains a method that return th OS name. Then I deployed this class to a Jar file called tarek.jar.
    now I need to import this jar file in my form
    i'm using forms9i release2
    I did the following:
    I copied "tarek.jar" to \\developerhome\forms90\java\
    then I opend the forms builder - program-import java class but my jar file "tarek" doesn't exist in the list.
    please help.

    Dear all
    I solved this problem. I editing the class path of the system control panel>system>advanced and it works fine
    Now i can import my class easly without any problems
    But when the forms builder imported my class , it generates a pl/sql package which contains a function with the same name of the method i did in my class.The problem is I do not know how to call this function
    Function getOSname( obj ora_java.jobject)
    return varchar2 is
    begin
    cls := jni.get

  • My macbook pro run slowed after upgrade to Yosemite, please help!

    Why my mac slowed after I upgrade to Yosemite, Please help!

    You might want to update your profile. Helps people trying to help you.
    Activity Monitor - Mavericks  also Yosemite
    Activity Monitor in Mavericks has significant changes
    Performance Guide
    Why is my computer slow
    Why your Mac runs slower than it should
    Slow Mac After Mavericks
    Things you can do to resolve slowdowns  see post by Kappy
    Try running this program and then copy and paste the output in a reply. The program was created by Etresoft, a frequent contributor.  Please use copy and paste as screen shots can be hard to read.
    Etrecheck – System Information

  • On plugging my iPod to the iMac, all the songs got deleted on the iPod. Now it doesn't sync to iTunes and it shows that 'mac os can't repair the device'. How can I get my iPod to start functioning normally again? Please help!

    Hey! I plugged my 80 gb ipod classic to my imac, but had to switch it off when itunes hung. The ipod wasn't switching on , and when it did, all the data, including all my songs were deleted. Now, when I try syncing it to the mac, it doesn't connect to the itunes and I keep getting an alert saying ' Mac osx can't repair the device'. Now, althought all the data is gone, the ipod still shows 30 gb free. What will happen if I partiton my ipod? How do I get it to start functioning again? Please help!

    Try a low level reformat of the iPod's hard drive to possibly try and repair some of its damage. Use the instructions in this article to walk you through the process.
    http://www.methodshop.com/gadgets/ipodsupport/erase/
    B-rock

  • Have a New MBP with Lion preinstalled. Need Snow Leopard instead. Have time machine from old computer running Snow Leopard as well. PLEASE HELP!!

    I have a brand new Macbook Pro with Lion preinstalled. I haven't even turned it on yet. I desperately need Snow Leopard because my music software is not Lion compatible yet. I also have a Time Machine backup from my old Macbook that is currently running Snow Leopard 10.6.8. How can I get Snow Leopard on my new Macbook Pro? Also, will Time Machine replace the applications on the new Macbook Pro with the older versions I have in the backup or how exactly does that work? I've been staring at the box for 2 days now worried I won't be able to use any of my software. PLEASE HELP ME!

    It depends on the build of your machine; normally, no Mac can ever boot from a system older than what it came with. However, there are exceptions: right around the time the new OS is released, there may be some machines which will be able to run both OS's.  Here is some information on software builds:
    http://support.apple.com/kb/HT1159
    You may have to call Apple to figure out if you can use SL on yours or not.

  • I am unable to get itunes to run on my powerbook g4. Please help!

    My sister gave me her old powerbook g4. She erased the hard drive and relaoded the software. I cant get itunes to open or run. It said i needed quicktime so I downlaoded it from the apple site but it still will not run. Am I doing something wrong? Is there a different download that I need? Please help. I am new to apple computers so please be paitcent with me.

    Your computer may need a series of updates to bring it up to speed with the last versions of software supported by 10.4  Note that these will themselves be several years old since Apple hasn't supported Tiger for several years.  In particular you cannot upgrade to the newest iTunes or use any brand new i-devices on a computer running 10.4
    One way to do updates is to run Software Update.  Do the updates one by one since trying to do many at one time often results in problems.  Use Disk Utility to repair permissions before and after.
    For general Tiger update questions I suggest you post on the Tiger 10.4 forum.  As for iTunes, the newest version you can run is 9.2.1 available at
    iTunes 9.2.1 (the newest that will run under Tiger) - http://support.apple.com/kb/dl1056

  • HT4293 just downloaded the update but it requires that i be running a LION, where as i am running now Mountain Lion... please HELP!!

    can some one please help....
    i have a MBP 17" MID 2009 model...
    i just got myself a Apple 27" LED display... now when i connect it and want to lower the brightness i cant... it simply does not have that option... also i got the update from apple site for LED display and it says i need to be running a MAC OS X 10.6
    can please someone help me... i love this monitor but **** its BRIGHT!!

    hi i have Mountain Lion and i connected the display with USB cable attached... and still cant control brighness...
    the software i am looking for is supposed to update the firmware of the display, but as i picked up perhaps an old stock piece this firmware was not on the display itself.

  • ITunes will not run. Several error codes. Please help

    A couple months ago I tried updating iTunes and received the error "Could not open key:
    UNKNOWN\Components\69413F169B198734FA40BC8B73511DB0\108B43C0CEA676640B35306AE7D2 4051.
    Verify that you have sufficient access to that key, or contact your support personnel." (take note my key is different than the one above thats just for an example.) So I read and read and finally figured out that my problem came down to permissions for that key. I changed the permissions and voila it installed properly! But now I just tried updating again because I want to get iOS5 on my iPhone4. I received the same error again, "Could not open key..." so I thought heck this is an easy fix and I changed the permissions again and this time it did not work. So then I uninstalled Quicktime, iTunes, and all other Apple software from my computer (which is running Windows 7 btw). I tried to reinstall iTunes and then it went through the install and finally comes to a screen that says "iTunes has successfully been installed on your computer." So I closed that window, restarted my computer, clicked on the iTunes icon and I get a completely different error now. This error is a two-part pop up. The first error window that pops up says:
    "The procedure entry point kCMByteStreamNotification_AvailableLengthChanged could not be located in the dynamic link library CoreMedia.dll."
    I click OK.
    Then I get:
    "iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 127)"
    I've tried reinstalling it again and I get the same error. I tried stuff from this thread ( https://discussions.apple.com/thread/2262389?start=0&tstart=0 ) and it doesnt seem to be working. Can someone please help me work through this. I would appreciate it very much, and please explain everything in computer-illiterate terms as I'm not the greatest with computers these days.
    Thank you,
    Max

    OK, so iTunes opens OK in another account so it is a user specific problem.
    Just to be absolutely clear, have you carried out the all the user specific steps:
    Remobe plugins
    Remove preference files
    Recreate Library
    Check for Content files with issues.
    One of those steps usually solves user specific issues.
    Something else that you could try is to create a new iTunes library elsewhere on your disk.
    Hold down the shift key and start iTunes. Keep holding the shift key until you are prompted to choose or create a library. Select "Create" and create a new library somewhere way from the your music folder eg in Documents - so it is completely separate from your existing iTunes.
    Does iTunes Open like this?
    If so go do Edit>>Preferences>>Advanced and Un-check "Copy to iTunes Music folder when adding to library". This is to stop iTunes copying your music files when you add to you new library.
    Now try adding music from your original iTunes Music folder in stages as in the "Content files with issues" section.
    This approach has worked for someone else although they did not say if they stuck with their test library or if they ever found the problem with the original one.

  • Multiple .class files! Help!

    Hey!
    Im reletively new at programming in java so forgive me if this problem seems a little basic to you!!
    Basically im creating an application using JDBC and all seems to be going well except im somehow creating multiple copies of my class files in my project folder... so for example, i have a Main.class and in the folder i now have Main.class, Main$1.class, Main$2.class, Main$3.class etc all the way to Main$8.class. This is happening to all my classes! Any suggestions on what im doing wrong?? Thanks for your time!

    You're not doing anything wrong; all those XXX$i.class thingies, where
    XXX is your class and i is any non-negative number are the compiled
    versions of the anonymous inner classes you used in your XXX class.
    Most likely they're ActionListeners, MouseListeners etc.
    kind regards,
    Jos

  • Can't run Hardware Test at all. PLEASE HELP!

    When hold 'D' during startup, nothing happens.
    When I insert my installation DVD and perform the same task, my MBP ejects the DVD.
    When I try and use the option + D command, and try and connect to my network, the password isn't correct.  This password has worked for everything else I've ever used over said network. 
    I'm officially out of options, can someone please help?

    I'm using a disc that I got from the Apple Strore because I lost my original.
    Retail installation DVD & the System DVD are 2 different types of discs.  The System DVD is machine specific which what you need to run AHT.  Per the KB Article I linked:  "If you updated your Mac to OS X v10.8.4 or later, use the system software disc or USB flash drive that came with your Mac."
    You can get replacement System Install & Restore CD/DVDs from Apple's Customer Support - in the US, (800) 767-2775 - for a nominal S&H fee. You'll need to have the model and/or serial number of your Mac available. 
    If you're not in the US, you may need to go through the regional Apple Store that serves your location to find the contact number. Here's a list of links to all of those - http://store.apple.com/Catalog/US/Images/intlstoreroutingpage.html Another resource:  International Support Phone #s.

Maybe you are looking for

  • How to create a proper ePub Zip file on the Mac

    I need to zip my iBook content with two critical requirements: 1) the first file must be the "mimetype" file (my ZipIt utility wants to reorder files, alpha, by name, rather than retaining the order that files are added into the archive). 2) that fir

  • Creating an XLS file and Zip it

    Hi All, we have a requirement where in we have to create an XLS file from internal table. This xls file then has to be zipped and mailed. If anyone knows how to create an xls file and zip it in WebDynpro, without using OPEN, CLOSE DATA SET etc, Pleas

  • Is this a bug in ArrayList or is it intended?

    Hi all, During past weekend, I was participating in a programming contest, where I found a bug in Java ArrayList class. When I added a string to the ArrayList (I used ArrayList<String>, of course), the added string's first letter was automatically ca

  • Overall very slow leopard 10.5.5 function

    I have recently bought a 2.6 Ghz core 2 duo, 4 GB Ram macbook pro... I thought this should be a very fast machine but it turned out to be as as fast as my old 1.6 Ghz core duo, 1 GB ram...all the applications takes ages to launch and the wheel always

  • Open one than more file from Lightroom to photoshop at the same time

    Hi, i'm a PS Elements-User and i have a question. Is it possible to open more than 1 file from lightroom into photoshop with one click? Thank you in advance for helping me. SH