HT1338 I need some help for my iMac and cannot get it as am out of USA?

My iMac is slowing down and cannot empty my trash specially for the locked items, and do not know why they are locked essentially?
Thanks for help.

Hi, thanks for helping me, most of the files are Music Type, MP4 that I deleted and need to empty the trash from them.
And I need to delete all.
Thanks.

Similar Messages

  • I need some help for an explanation. Loop for 1 minute.

              int minute=1;
              long currentTime=System.currentTimeMillis();          
              long stoppingTime = currentTime + (minute * 60 * 1000);
              while (currentTime<stoppingTime) {
                   // do x;
                   currentTime=System.currentTimeMillis();
              }I want to have the loop to run for 1 minute. It does not seem to work.
    What did I miss? I need some help for an explanation.

    Ran:
    class PrintTimeAsProcess {
      public static void main(String[] argv)  throws Exception {
        int minute=1;
        long currentTime=System.currentTimeMillis();
        long stoppingTime = currentTime + (minute * 15 * 1000);
        System.out.println("START Time: "+currentTime);
        while (currentTime<stoppingTime) {
          currentTime=System.currentTimeMillis();
        System.out.println("END Time: "+currentTime);
    }Got:
    START Time: 1149278202718
    END Time: 1149278217718
    1149278217718
    -1149278202718
    15000

  • Need some help! My iPhone 4 cannot play music through it's built in speaker, only with headphones. I also cannot adjust volume, it only shows "ringer". I really do not know when it starts. I already clean the jack and dock,reset it. Update it to IOS 7.1.1

    Need some help! My iPhone 4 cannot play music through it's built in speaker, only with headphones. I also cannot adjust volume, it only shows "ringer". I really do not know when it starts. I already clean the jack and dock,reset it and still cannot be fixed. I updated it to IOS 7.1.1 recently only, does it have connection with the inconvenience I am experiencing right now? What should I do? Thanks!

    Hi Melomane1024,
    If you are still having issues with your iPhone’s speaker, you may want to look at the steps in this article -
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/TS5180
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • TS3999 I have a new imac and cannot get my ical to show up on the new imac via icloud.  Every time i go to system preferences and activate the calender it freezes.  I have restarted the computer mutiple times.

    I have a new imac and cannot get the ical to show all of my calenders.  I have gone to system prefrences and clicked the calendar setting and it freezes and i have to force quit.  I have restarted the computer multiple times.  Any suggestions?

    Hello JETaylor2015,
    Congratulations on your new iPod nano!  I would be concerned too if my iPod was not recognized by iTunes or my computer.  I recommend reviewing this article for steps to take when your iPod is not recognized:
    iPod not appearing in iTunes
    http://support.apple.com/kb/TS3716
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • TS1702 I have purchased sky sports for my ipad and cannot get it set up

    I have just purchased sky sports for the ipad and cannot get it set up, the only thing I manage to see is sky sports news, can anyone help please

    Try restarting the iPad (the red "swipe to power off", then power back on). That may get the movie to appear in the Videos app. If not, go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store.
    Regards.

  • I need some help , for create some paper on air

    Hi everyone
    I need some help , i work in a static sequence from Tehran street (1 frame), i paint damages on this frame in Photoshop because i need war atmosphere, then i add some smoke and cloud with particular .
    but i think this sequence is not realistic yet
    now i want add some moving paper in air and on street
    do u have any solution for how can i make this paper and moving those
    Thanks a lot
    and pardon me for bad English
    Ali Molavi

    The best tool to add this kind of particle is After Effects.
    If you have the Creative Cloud then I recommend you download that.
    Slightly annoying voice over, but here is a youtube tutorial you can follow top make floating particals. You can adjust it to make it look exactly as you want.
    http://www.youtube.com/watch?v=dq2op6yqvFk&noredirect=1

  • Need some help for this code.

    Hi Everyone,
    I've test codes for east region and west region.
    I've a requirement to replace the west test id with east test id.
    That mapping has been done by the onshore team, I've got the mapping doc.
    But updating these details is a tricky part. It's nothing like direct update and replace those test codes.
    As per the mapping if it's
    In case of one to one (East - West) mapping which going to affect only a single row, I’ll have to update there,directly.
    In case of one – many (East - West) mapping and which is going to affect multiple rows, I’ll have to update the latest one and rest will be deleted only in that group. To identify the latest we have to check the latest order detail for that test.
    Suppose I've a west code named W123 and it has to be replaced with E123, in this case direct update.
    But now I've a transaction table where a patient has ordered multiple tests, In this case suppose the
    patiend id is P123 and ordered tests are W123, W234, W345; I'll have to update W123 as E123 and rest
    should not be deleted.
    But if I'll get multiple west code mapped towards single east code, the latest record as per the order detail needs
    to be updated and rest needs to be deleted if mapped with multiple west test codes, for single record and group record as well. Some thing like this.
    E123 - W123, W234 so I'll have to find out the latest and update there accordingly for single record and now
    patient has orderd multiple tests and the group record is like P123(patient) -----has orederd for W123, W234, W345.
    Now only the lastest test code suppose W234 has to be replaced with E123 and W123 has be deleted and W345
    should be there with E123.
    Now please see the code.
    CREATE OR REPLACE
    PROCEDURE P_UPDATE_TEST_ID AS
    V_EAST_TEST_ID            TEST_CODE_CONVERSION.EAST_TEST_ID%TYPE;
    V_ARRAY                   VARCHAR2(4000);
    V_COUNT                   NUMBER := 0;
    BEGIN
      FOR I IN (SELECT EAST_TEST_ID
                      ,STRAGG(WEST_TEST_ID) AS V_STRING
                FROM TEST_CODE_CONVERSION
                GROUP BY EAST_TEST_ID)
      LOOP
        V_EAST_TEST_ID            := I.EAST_TEST_ID;
        V_ARRAY                   := I.V_STRING;
        V_COUNT                   := V_COUNT+1;
        DBMS_OUTPUT.PUT_LINE('EAST_TEST_ID = ' ||V_EAST_TEST_ID|| ' || '||
                             'WEST_TEST_ID = ' ||v_array);
        Now after this I need to segregate the string values and check individual record
        and group record as well, for update. Now If I'll add the regexp_substr, then how
        to map those extracted values for checking.
      END LOOP;
      DBMS_OUTPUT.PUT_LINE('v_count = ' ||V_COUNT);
    END P_UPDATE_TEST_ID;Please suggest something.
    Regards,
    BS2012.
    Edited by: BS2012 on May 23, 2013 4:40 PM

    Hi Bawer,
    Thanks for your interest, but I've done that yesterday.
    Bawer wrote:
    Sorry, but
    >
    Here I'll have to check which one is the latest and update that with relative east test id ...
    >how do you describe the *'latest'* and *'relative east'* ?We have one more template table where we'll have to take the max of template_test_id to figure out "which one is the latest?" To identify the relative east we have a parent table named "test" from there we can find the relative test ids by the column name called East_west_ind (indicator); as per the mapping.
    and depending to this,
    >
    ... rest one has to be deleted and other should be untouched.
    >which one is here, in your sample to be deleted and which should be untouched?
    (maybe a sample after-update output?)If you see the patient id 93, we have number of tests has been ordered. But 3257, 3515 test ids are same as per the mapping. So we need to check the max of template_test_id to figure out "which one is the latest?" as we have one entry in template table always for a new order. In terms of that I'll have to update 3257 as it's the latest entry and 3515 has to be deleted and rest of the test ids should be untouched. I did it yesterday, but i couldn't respond you. Thanks once again for your interest.

  • Need some help using CSS Rules and Positioning Image Place Holders

    Evening all,
    I need to get this done by tomorrow so some speedy help would be very much appreicated!
    I'm doing a website for an IT company, and as you may/may not know, support for XP and Office 2003 is dropped tomorrow - they want a button in the header of their site which basically says 'click here for upgrade advice' and when you click on it you're taken to a page telling you the benefits of upgrading. They want it to look like the mock up below:
    I've had a right old job even getting the button (it's in PNG format) to go above the BrownTech logo. I inserted a placeholder, linked it to the PNG file, and then I made a custom CSS rule/class called '.header_fltrt' to put the image in and position it in that place, directly above the BrownTech logo.
    To get the upgrade button in the desired position, here are the 'Box' CSS properties I used for the .header_fltrt CSS rule.
    It's worth noting that the dimensions for the header itself are 960x235px, and the BrownTech logo is the background image for the header class (and is 960x235 in dimensions).
    The problem I am having is that when I view the page in Design Mode in Dreamweaver, it looks fine, but when I view it in Live View or in a web browser, it looks like this:
    As you can see, the upgrade button is not even visible!
    Furthermore, when I go back into design mode on Dw, when I click on the upgrade button, I don't get any placeholder properties like I do when I click on green logo in the top left (which by the way is just a link back to the index page).
    I'm not sure why this is but I cannot find any way to resolve it. I've even tried putting the BrownTech logo on a transparent background thinking that the block white background may be covering the upgrade button, but that's not the case.
    Sorry if I haven't explained it very clearly. Hopefully you can see my problem.
    Any help in etting the upgrade button to preview in the correct place would be very much appreciated!

    Try this in place of what you have now.
    .header {
        background-color: #FFFFFF;
        min-height: 335px; /**adjust as needed**/
        width: 960px;
        background: url(../assets/banner2.png) no-repeat;
    .header_fltrt {
    /**no floats or positioning required**/
        width: 552px;
    Nancy O.

  • Help I bought a used imac and cannot get passed the password

    The support tech said that I could probably get assistance from someone here. I bought the computer from the goodwill two days ago and it is password protected with two user names. Ever time I turn on the computer it goes to choose user and enter password. I don't know how to get beyond this point and the support tech said that since the computer is a 2000 model and passed the warrinty period It would cost me $49.00. I don't have the money for this, that is the reason I went and bought a used computer. So if you could help me out that would be greatly appreciated. I didn't know which board to post this on so if in in the wrong one I apologize.

    Hi, Rhonda.
    Dale has answered your question, but for future reference, if your computer was made in 2000 it must be a G3 imac and you'll find more people who know about your computer in the CRT iMac forums. This forum is for the flat-panel imac, which came out in 2002.

  • Help bought a used imac and cannot get past the passwords.

    The support tech said that I could probably get assistance from someone here. I bought the computer from the goodwill two days ago and it is password protected with two user names. Ever time I turn on the computer it goes to choose user and enter password. I don't know how to get beyond this point and the support tech said that since the computer is a 2000 model and passed the warrinty period It would cost me $49.00. I don't have the money for this, that is the reason I went and bought a used computer. So if you could help me out that would be greatly appreciated. I didn't know which board to post this on so if in in the wrong one I apologize.

    Hi Rhonda,
    You must first find exactly what type of computer you own, running which OS.
    If your Mac is a 2000 model, your original install CDs should be Mac OS 8.6 or Mac OS 9.0.4.
    It's possible though, that you have a version of Mac OS X installed.
    You'll find a better help in the iMac G3 or the PowerMac G4 forums.
    Good luck!
    Axl

  • Cannot download Firefox only get a necessay permission box asking for a password and cannot get beyond this.

    I needed to restart my computer from scratch (system restore to the beginning) and lost everything including Firefox and am now
    trying to download again. I keep getting this box click ok and
    nothing further happens. I tried tools, security, exceptions but
    tools has no exceptions tab. Both on explorer and google, same
    problem.

    Try signing out and then back in again by going into Settings>Store>Apple ID:>Sign Out>

  • Need some help for checkbox

    Hi and Evening to Everybody,
    I have a Scenario where i need to select an entire row using the check box. Let me first define the Situation. I created a Simple Sql-report where the first column is a Simple Checkbox and the second column is a display only name and followed by the rest 5 columns as a checkbox.
    my table structure is :
    **create table satt (SELECT_ALL VARCHAR2(10), Name VARCHAR2(50), Object1 VARCHAR2(10), Object2 VARCHAR2(10), Object3 VARCHAR2(10), Object4 VARCHAR2(10), Object5 VARCHAR2(10));**
    Now i had a requirement where i need to Check All or Uncheck All Checkbox by clicking SELECT_ALL column header and i made it using
    simple java-script :
    "<input type="Checkbox" onclick="$f_CheckFirstColumn(this)">"
    Now i need to Check all checkbox in a row by clicking any of the SELECT_ALL check boxes. (Say i have 5 checkboxes in SELECT_ALL column and if i click 3rd checkbox... i need the entire 3rd row checkbox to be checked on click of that 3rd check box).
    I hope i was clear with my question. i did my best. Please help me out with this... Im eagerly lookin for the solutions.
    Thanks & Regards,
    - The Beginner.
    Edited by: 854477 on Jul 18, 2011 1:50 AM

    Dear BEGINNER..
    Assuming that you're using a standard table based layout for the report, what you need to do is add some code in the HTML attributes of the checkbox in the first column..
    The following javascript would set all other checkboxes in the same ROW as the first checkbox to the same state as it is.
    onclick="if (this.checked) {$f_CheckAll(this.parentNode.parentNode, true);} else {$f_CheckAll(this.parentNode.parentNode, true);}"NOTE: that this will only fire if the first checkbox on the row is actually clicked by the mouse. It won't fire if the first checkbox in the row is set by the CHECK_ALL in the column header.
    Hope this helps.
    Doug gault
    www.sumneva.com

  • Need some help for error message

    Procedures of package Portal30.wwv_builder do not seem to work anymore. When I want to create any database object, or even to modify some application components (call wwwv-builder.accept or wwv_builder. show) here is the message displayed :
    Mon, 23 Apr 2001 14:59:00 GMT
    ORA-03113: fin de fichier sur canal de communication
    DAD name: portal30
    PROCEDURE : PORTAL30.wwv_builder.accept
    URL : http://demo:80/pls/portal30/PORTAL30.wwv_builder.accept
    PARAMETERS :
    ============
    P_AL1:
    <HTML>
    <HEAD>
    <TITLE>Example</TITLE>
    </HEAD>
    Can anyone help me ?...
    null

    Which versions of the database and portal are you using?

  • I need some help for GreenScreenShader in Unity.

    Hello.
    I want to add Shadow in GreenScreenShader with the GreenScreen Unity3d Sample.
    I have tried to modify GreenScreen Shader file and I can cut off the green color.
    But, when I try to use the GreenScreen object to cast a shadow on ground, I found it hard to me.
    So many ShaderLab directive is undocument in Unity. I can't write only Vertex and Fragment Shaders to CAST a shadow in SM5.0. There is not Sample to use Vertex and Fragment Shaders implement  SHADOW on Unity official document .
    Thanks.

    Hello.
    The Kinect for Unity Plugin created by Microsoft Official. It's amaze.
    I have no idea. Some Shader directive in 'GreenScreenShader.shader' is undocument in Unity. I know that is DX11 hlsl, but I am confuse with ShaderLab cg/hlsl. Especially the Fragment Shader in 'GreenScreenShader.shader'.

  • I need some help for my code,  I lost my way

    Hi, all, I got a little problem when I try to compile my project(jdk1.6/winXP pro),
    I try to get the current file path by the following code(I know this is not the correct way to do it) . The wired thing is that:
    When I try to run these code with my Eclipse(or just run this single class file), it works.
    when I jar this class into jar file and try to run the jar file, then it doesn't, and reported the error "java.lang.NullPointerException at Test1.main".
    Is there any friend can help me to explain why this happened?
    its really appreciated.
    public class Test1
    public static void main (String[] args)
         String user_directory = null;
         try
         user_directory = Test1.class.getResource(".").getPath();
         user_directory = java.net.URLDecoder.decode(user_directory,"UTF-8");
    System.out.println("\n >>> " + user_directory + "\n" );
         catch (Exception e)
         e.printStackTrace();
    }

    I already know how to get the path of the class file.
    I just want to know {color:#ff0000}why I can run the the code in a single class file rather than run it inside a jar file{color}?
    Thank you
    Edited by: willnzy_cn on Oct 2, 2007 3:24 AM

Maybe you are looking for

  • Timesheet error (Only for one user on one task): This Web Part was unable to load

    Hi, We have a weird problem with Project server 2013. We are on the latest March CU 2015 update on MS Project and Project server. Problem: A resource(user) is being assigned to a task. When opening the Project with the MS Project client, you can see

  • Standard costing in Process order for external operation

    Hi SAP - PP gurus, Need your expert suggestion on the current scenario. We are having a sequence of operations in a process order. One specific operation is used to trigger subcontracting activity for completion of some services. while calculating th

  • Terrified I'm going to be cut off :(

    Hi, I recently recieved a letter saying my bills woudl be combined into a single bill and thought great only one bill to worry about instead of one for broadband and one for phone. However I recieved a letter yesterday, it was dated the 13th but I re

  • Sentinel 7/LM: events sub-queries, DB queries...

    Hi, Im using Sentinel 7 but I think that SLM works at the same way. I have an IDM workflow with tree forms: request, approval1 and approval2. I need show all the history based on my activities, ie: Activity0: requested by user1, date, request text; A

  • T400: Ati driver causes freezing screen - help please

    i have a t400 with win 7 64 bit ..but when i finsh the  instalation of ATI driver i got a freezed screen ..does it a driver problem or the ATI itself damaged?? if not how i can fix this problem ?? i  tried all the possible ways of instaltion the driv