Help me with my Science Project

Hi, for my science project, Im making my own solar panel ipod recharger. I need to know whats the minimum amount of current a 5th gen Ipod requires. I know USB 2.0 has a max of 500ma but i would like to spend less money and try to buy solar panels wtih less current. So ill take any information that'll help, but be sure of the information. I wouldnt want to fry my 3 month old ipod X). Thnx

Nope, they wrote
Unfortunately licenses are only available to companies; we do not license individuals for these purposes. The standard iPod specifications are confidential and available only to our licensees. Best of luck with your project!
So if anyone else have any ideas please do tell.

Similar Messages

  • Please help me with this weird project.

    Dear all:
    I've got this project to make a chm file. The project consists of five child projects, and some topics within the master project itself. (see the first figure below) I didnt do anything to the project, just want to generate it. But after i generate the project and open the generated CHM file. It looks nothing like the TOC in the project. (see the second figure below). The CHM file has a bunch of contents that are not shown in the TOC, and none of the child projects are included.
    As i check those "bunch of contents", they are actually the topics in the master projects under the HTML files folder.
    So can anyone help me with these problems? I'm using RH8.
    p.s.
    1. The project seems like a combination of old version of RH and FM. Outside the folders of robohelp project files, there are some **.fm and **.book files.i'm not sure how they are related to what i need to do with the project.
    2. I open the project in the following weird way:
    a. Extract the rar file of the whole project files. Open the project by double clicking the "**.hhp" file.
    b. By doing this, I got the "**.xpj" file. But the original TOC becomes blank. The "HHC" file is 0kb.
    c. So i re-extract the files, the new HHC file replaces the blank one.
    d. Open the master project by doule clicking "**.hhp" file. And the TOC is shown, as in the figure above.
    Thanks!

    Thanks a lot for your reply.
    To answer your questions:
    1. "I am assuming there was no XPJ otherwise why use the HHP"
    Yes, i only see HHP file. Any consequence by opening the project with this? Well, the consequence so far i see is the blank TOC.
    2. "This was all done previously in RH? "
    I'm not sure and i dont think so. The following softwares are needed for the project before. So can you explain to me anything i have to pay attention to?
    - Adobe FrameMaker 7.0
    - WebWorks Publisher 7.05
    - Microsoft HTML Help Workshop 1.3
    - Adobe Acrobat 4.05 or later
    - Microsoft FrontPage 98 or later
    3. "Maybe you have generated to other folders and not placed copies all in one folder."
    I did what you say, and get the right result.
    One thing that i'm quite curious is that besides the child projects, there are some topics in the parent project that are not shown in the project TOC but in the generated CHM file, like "Apperance" shown in the figure within my first post.

  • Help Needed with Computer Science Java Project!

    Hi everyone, im in my final year at uni, im implementing a board game in java. I've started programming it, but have the main part yet to do, which is the actual game play. I need someone to look at my code and give me a few pointers, or even better do it for me, all this of course after you read the game description and the project specification. Whoever maybe able to help please send me your email, and i will send you all that i have, i.e. the project proposal, game description, project specification, and the java files. Anyones help will be much appreciated and rewarded, i have only 3 - 4 weeks to complete this project and need to get a first for it. Therefore i need help urgently! You can email me at [email protected], many thanks!
    Mace

    Hi everyone, im in my final year at uni, im
    implementing a board game in java. I've started
    programming it, but have the main part yet to do,
    which is the actual game play. So, you're in your final year, and yet you still think the correct approach is to just sit down and start writing code without first figuring out what the major pieces will be and how they'll fit together. You haven't learned much then.
    I need someone to look
    at my code and give me a few pointers, or even better
    do it for me, Ah, you're one of those vile, disgusting, lowlife shitbuckets who thinks it's okay to take credit for others' work and phuck over your classmates in the process.
    I mean this sincerely: I hope you die soon. Before you have the chance to breed.

  • Help needed with layers and project files....

    Hello
    I am new to after effects so this might be a simple issue for most. I am having an issue with my layers not matching the files in my project window. I accidently deleted a comp file the other day so I had to remake a few layers but they are not showing up in the project window/solids folder. I have 5 layers on my timeline and only 4 files in the project/solids folder. Some of the files names do not match the ones in the timeline. Is there a way to create a new comp with the files that I have open in my timeline or to replace the ones in the project window?  I started a project a few days ago, Im trying to make a few partical orbs dancing on there own path then they will come together and then creates a few smaller ones. Im at the point where I want to copy one comp to another or copy the layers over but the particals follow one light instead of the original light from its own comp. I think the file names in the project window might be the issue but I really don't know. Any help or comments would greatly be appreciated
                                                     Thanks a million
                                                                   Adam                                                                                                                                                              
    Using trapcode particular and AE CS6
    Windows system

    Layers on the timeline are just instances of the source footage. If you rename them on the timeline, that won't affect the number or naming of the sources in the project window. Toggle the column header in the TL to see which laywer uses which source.
    Mylenium

  • Urgent help needed with a CSC2310 project!

    Hello everyone. I have a project due tomorrow and it is not working correctly. I am not getting any errors but the output isnt right. The main problem arises when I open 2 accounts and then deposit an amount. I think my array setup is incorrect. The main program is called Bank3 and there is also a class called BankAccount which I havent posted in this message. I dont have any arrays declared in BankAccount and that might be a problem. Could anybody please tell me what to do to fix it? I would really appreciate help from you guys. Thanks a lot and here is my program:
    public class Bank3 {
        public static void main(String[] args) {
         int numaccount = 0;
         int currentacc=0;
         String[] currentaccount = new String[100];
         currentaccount[0] = "None selected";
         String[] accountnumber = new String[100];
         double[] accountbalance = new double[100];
         BankAccount  yourAccount = new BankAccount();
         while(true) {
              System.out.println();
              System.out.println("--------------------------------------------------------------");
              System.out.println("| Commands:   o  -  Open account         c  -  Close account |");
              System.out.println("|             d  -  Deposit              w  -  Withdraw      |");
              System.out.println("|             s  -  Select account       q  -  Quit          |");
              System.out.println("--------------------------------------------------------------");
              System.out.println();
              System.out.println("Current account :  " + currentaccount[currentacc] + "   Balance: $"
    + accountbalance [currentacc]);
              System.out.println();
              SimpleIO.prompt("Enter command: ");
              String command = SimpleIO.readLine();
              System.out.println();
         if(command.equalsIgnoreCase("o")) {
              SimpleIO.prompt("Enter new account number: ");
              String newaccnum = SimpleIO.readLine();
              accountnumber [numaccount] = newaccnum;
              currentaccount[numaccount] = accountnumber[numaccount];
              SimpleIO.prompt("Enter initial balance: ");
              String newaccbal = SimpleIO.readLine();
              double newbal = Convert.toDouble(newaccbal);
              yourAccount.deposit(newbal);
              accountbalance [numaccount] = yourAccount.getbalance();
              numaccount++;
              currentacc = numaccount-1;
         else if(command.equalsIgnoreCase("c")) {
              if(numaccount == 0)
                   System.out.println("Please select an account");
              else {
                   currentaccount[numaccount] = "None selected";
                   numaccount--;
              numaccount--;
         else if(command.equalsIgnoreCase("d")) {
              if(numaccount == 0)
                   System.out.println("Please select an account");
              else {
                   SimpleIO.prompt("Enter amount to deposit: ");
                   String depos = SimpleIO.readLine();
                   double amount = Convert.toDouble(depos);
                       yourAccount.deposit(amount);
                   accountbalance [numaccount] = yourAccount.getbalance();
         else if(command.equalsIgnoreCase("w")) {
              if(numaccount == 0)
                   System.out.println("Please select an account");
              else {
                   SimpleIO.prompt("Enter amount to withdraw: ");
                   String with = SimpleIO.readLine();
                   double amt = Convert.toDouble(with);                                        
                       yourAccount.withdraw(amt);               
                   accountbalance [numaccount] = yourAccount.getbalance();
         else if(command.equalsIgnoreCase("s")) {
              SimpleIO.prompt("Enter account number: ");
              String search = SimpleIO.readLine();
              int i;
              for(i=0; i<numaccount; i++) {
                   accountnumber = yourAccount.getnumber();
                   if(accountnumber.equals(search))
                        break; }
              if(i><numaccount)
                   currentaccount[numaccount] = accountnumber;
         else if(command.equalsIgnoreCase("q")) {
              break;
         else {
              System.out.println("Command was not recognized; please try again.");
              System.out.println();

    What would this replace or what effect does this have on the program?Your approach in using parallel arrays works. But it is not object oriented programming, which I am guessing is the whole point of the exercise.
    Replacing the multiple arrays with one array of bank account objects that makes your code simpler.
    Currently you have a seperate array for the accountnumber, and amount in it. You are using the arrays "in parallel" because accountNumber[x] has amount[x] in it.
    Simpler:
    - You only have one array to deal with rather than 3.
    - You can deal with the concept of a "BankAccount" on its own.
    Currently all your operations affect arrays.
    However deposit/withdraw should only worry about the currently selected account.
    If you only wanted to affect one account, you can pass that BankAccount object as a parameter. Right now you would have to pass all your arrays, plus the index into the array to specify which to use.
    So when you open an account
    1 - create a new BankAccount object
    2 - set its values
    3 - assign it into the next empty place in the array
    What happens if I try to open a new account with a number that already exists?
    if(command.equalsIgnoreCase("o")) {
    // read in the required info:
      SimpleIO.prompt("Enter new account number: ");
      String newaccnum = SimpleIO.readLine();
      accountnumber [numaccount] = newaccnum;
      SimpleIO.prompt("Enter initial balance: ");
      String newaccbal = SimpleIO.readLine();
      double newbal = Convert.toDouble(newaccbal);
      // create a new BankAccount
      currentSelectedAccount = new BankAccount();
      // set its values  -  maybe use a constructor for this?
      currentSelectedAccount .setAccountNumber(newaccnum);
      currentSelectedAccount.deposit(newaccbal);
      // add it to the array of entries:
      bankAccounts[numAccount] = currentSelectedAccount;
      numAccount++;
    }Don't you agree this is simpler dealing with one object than with multiple arrays?

  • Help me with a flex project... how do i use it ?!?

    i have this entire project and i don't know how to use it... what should i do with it ?!?
    Any help ?

    In Flex Builder menubar:
    File - Import - Flex Project - Import project from - Archive file      and navigate to the file.
    If this post answers your question or helps, please mark it as such.

  • Can anyone help me with a 3D project?

    I'm using Photoshop CS4 for a project and whenever i try to pop up the 3D widget to resize the shape, it never shows up. I need a professional's help.

    View --> Show --> 3D axis. Then click on it to expand it to ugly mode...
    Mylenium

  • Help with photos in project???!!

    Hello,
    I just bought an iMac about a month ago so that I could edit home movies and create DVD's of family vacations/events to share with my family. I have done this in the past on the PC with Pinnacle Movie Studio Software but it was buggy and more of a pain than it was worth.
    So far pretty impressed with the iMac and FCE seems like it has potential. However I keep having problems with still photos in my video.
    Here is what I have done - created a new project using the NTSC 48k template (not at my desktop now so I'm working off memory as far as naming). I captured all of my Sony Mini DV footage to the PC and dropped it into my timeline and edited it. Went smoothly. At the end of my movie I want to insert a "recap of the trip" using the still photos that I took with my digital camera and use the ken burns effect and transitions with music playing. My plan is to render and burn to DVD with iDVD for playback on a 1080p 60 inch plasma.
    My photos are jpegs saved on my hard drive. I cropped them and adjusted color, etc in CS2. I didn't do anything as far as re-sizing them etc in photo shop as this is a little new to me and I didn't want to mess them up. Do I need to resize them for FCE? Seems like the program does this? If I need to resize them what size should I make them? Remember I want to be able to zoom in by creating the burns effect.
    I have taken the photos and imported them into FCE. I drop them on the timeline and push play and everything looks great. When I start adding transitions with and applying the ken burns effect with key points the image plays fine by itself in the viewer window. However, when I watch the project play back in the canvas the stills appear very jumpy - not like a frame is missing in the render - the still literally looks like it jumps up and then settles back down. This is driving me nuts! FCE has to be able to do this smoothly. Can anyone provide me with a simple step by step on what settings I should be using for my sequences, etc to make this work. The settings really mess me up and I must be missing something.
    I do have Tom's book but I can't find anything to help me with this issue. It is driving me nuts. Thank you in adavnce!

    Thank you for the link. I went there and read the information. I still have questions:
    Assuming I am using just still photos (let's keep it easy at first and assume no video) - what settings do I use for FCE under easy set up and for the sequence? Photos are jpg images shot with a digital camera that have been saved on my computer for a few years. I want to output my contents to DVD using iDVD and play back on a 1080p plasma tv.
    Do I have to edit or resize the photos in photoshop first? It sounds like I can just import them into FCE and that it should work. I am not working with advanced photoshop images - just simple jpg images - no layers. The chart on page 2 of the link above says for 1080i - rectangular size N/A and square size 1920x1080. What does this mean? Is this telling me to resize my images to 1920x1080 before I import into FCE? If I want to use the Ken Burns effect and zoom should I double this to 3840x2160?
    If someone can tell me step by step what they would do with the settings for FCE if they wanted to create a still photo slideshow with music, transitions and pan and zoom I would appreciate it. Again - source material is jpg images and I want to output to DVD using iDVD to display on a 1080p plasma tv. Also assuming that you had a standard landscape photo shot with a 4 megapixel camera what steps would you go through to prep it for FCE in Photoshop - if any?
    Sorry that I am asking for a detailed example but I learn much better that way - after I am able to get one photo into an acceptable format for FCE the rest will be easy.
    Has anyone actually created a successful slide show in FCE using transitions and the Ken Burns effect or do they get jitters in their photos as well - the image doesn't appear to flow smoothly.

  • Help with binary conversion project

    hey my assignment was to make a program that would say the binary representation of an int. i got my program working and im pretty sure it works for all negatives and 0. my question is can you guys help me with a way to do the same steps with for( or while( ? it seems like i went the long way doing this project and even tho it works theres probably a much simpler way of going about it. theres no interface or anything we just change the value of N and recompile it and run from command prompt so far in our class. thanks for the help
    class binary {
    public static void main(String[]args){
         int N = -264;
         int M = N*-1;
         int A;
         int A1;
         int B;
         int B1;
         int C;
         int C1;
         int D;
         int D1;
         int E;
         int E1;
         int F;
         int F1;
         int G;
         int G1;
         int H;
         int H1;
         int I;
         int I1;
         if(N==0) {
              System.out.println("The Binary reresentation of "+N+" is = 0");
         if(N<0) {
              A=M/2;
              A1=M%2;
              B = A/2;
              B1 = A%2;
              C = B/2;
              C1 = B%2;
              D = C/2;
              D1 = C%2;
              E = D/2;
              E1 = D%2;
              F = E/2;
              F1 = E%2;
              G = F/2;
              G1 = F%2;
              H = G/2;
              H1 = G%2;
              I = H/2;
              I1 = H%2;
         else {
              A= N/2;
              A1 = N%2;
              B = A/2;
              B1 = A%2;
              C = B/2;
              C1 = B%2;
              D = C/2;
              D1 = C%2;
              E = D/2;
              E1 = D%2;
              F = E/2;
              F1 = E%2;
              G = F/2;
              G1 = F%2;
              H = G/2;
              H1 = G%2;
              I = H/2;
              I1 = H%2;
         if(A1==1 && N<0){
         B1=B1-1;
         C1=C1-1;
         D1=D1-1;
         E1=E1-1;
         F1=F1-1;
         G1=G1-1;
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==1 && N<0){
         C1=C1-1;
         D1=D1-1;
         E1=E1-1;
         F1=F1-1;
         G1=G1-1;
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==0 && C1==1 && N<0){
         D1=D1-1;
         E1=E1-1;
         F1=F1-1;
         G1=G1-1;
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==0 && C1==0 && D1==1 && N<0){
         E1=E1-1;
         F1=F1-1;
         G1=G1-1;
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==0 && C1==0 && D1==0 && E1==1 && N<0){
         F1=F1-1;
         G1=G1-1;
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==0 && C1==0 && D1==0 && E1==0 && F1==1 && N<0){
         G1=G1-1;
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==0 && C1==0 && D1==0 && E1==0 && F1==0 && G1==1 && N<0){
         H1=H1-1;
         I1=I1-1;
         if(A1==0 && B1==0 && C1==0 && D1==0 && E1==0 && F1==0 && G1==0 && H1==1 && N<0){
         I1=I1-1;
         if(A1==-1){
         A1=A1*-1;
         if(B1==-1){
         B1=B1*-1;
         if(C1==-1){
         C1=C1*-1;
         if(D1==-1){
         D1=D1*-1;
         if(E1==-1){
         E1=E1*-1;
         if(F1==-1){
         F1=F1*-1;
         if(G1==-1){
         G1=G1*-1;
         if(H1==-1){
         H1=H1*-1;
         if(I1==-1){
         I1=I1*-1;
         if(A==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+A1);
         else if(B==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+B1+A1);
         else if(C==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+C1+B1+A1);
         else if(D==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+D1+C1+B1+A1);
         else if(E==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+E1+D1+C1+B1+A1);
         else if(F==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+F1+E1+D1+C1+B1+A1);
         else if(G==0 && N<0){
              System.out.println("The Binary reresentation of "+N+" is = 1"+G1+F1+E1+D1+C1+B1+A1);
         else if(H==0 && N<0){     
              System.out.println("The Binary reresentation of "+N+" is = 1"+H1+G1+F1+E1+D1+C1+B1+A1);
         else if(I==0 && N<0){     
              System.out.println("The Binary reresentation of "+N+" is = 1"+I1+H1+G1+F1+E1+D1+C1+B1+A1);
         if(A==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+A1);
         else if(B==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+B1+A1);
         else if(C==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+C1+B1+A1);
         else if(D==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+D1+C1+B1+A1);
         else if(E==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+E1+D1+C1+B1+A1);
         else if(F==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+F1+E1+D1+C1+B1+A1);
         else if(G==0 && N>0){
              System.out.println("The Binary reresentation of "+N+" is = 0"+G1+F1+E1+D1+C1+B1+A1);
         else if(H==0 && N>0){     
              System.out.println("The Binary reresentation of "+N+" is = 0"+H1+G1+F1+E1+D1+C1+B1+A1);
         else if(I==0 && N>0){     
              System.out.println("The Binary reresentation of "+N+" is = 0"+I1+H1+G1+F1+E1+D1+C1+B1+A1);
    }

    String intAsBinaryString(int n){
      String res = "";
      for(int i = 1; i!=0; i *=2){
        res = ((n & i != 0)?"1":"0") + res;
      return res;
    }Pete is right, in order to understand this you need to know how integers are stored.

  • Captivate 4 crashes while working with Power Builder projects..Can anyone help to solve this issue??

    Captivate 4 crashes while working with Power Builder projects..Can anyone help to solve this issue??

    Yes but there's no point doing it here. As the Terms of Use make quite clear this is a User to User forum. It's Users like you talking to other Users. It's not a channel to communicate with Apple.
    Regards
    TD

  • Help Configuring PHP Server with new Flex project.

    Hi,
    I'm curious if someone can help me with a frustrating problem.
    While creating a new flex project, I can't seem to validate the configuration of the php server. I keep getting the message: "Cannot access the web server. The server may not be running, or the web root folder or root URL may be invalid."
    I'm running MySQL, PHP and Apache 2.2. These program have worked indepentally without flex, so I know the program isn't with the install of the stack.
    For my web root I entered: "C:\Program Files\Apache Software Foundation\Apache2.2\htdocs" the location where I installed Apache
    And for root url I'm using "http://localhost"
    The other wierd part of this is that even though Flex would not validate this connection, I went ahead and started the project anyway and made a succesful connection to mysql, obviously though when I tried to launch the project it couldn't connect to the server.
    Any suggestions would be much appreciated because flex is pretty much useless to me unless I can figure out how to connect with php and mysql.
    Steve

    hey ya
    you were responding to like a real old post
    what exactly is your problem perhaps i can help

  • I just got a Dell m110 projector which can do wireless projection. however I cannot project with my ipad...can anyone help me with this?

    I just got a Dell m110 projector which can do wireless projection. however I cannot project with my ipad...can anyone help me with this?

    u might need to download this app: mobishow-pro for dell projector
    http://itunes.apple.com/au/app/mobishow-pro-for-dell-projector/id459389736?mt=8

  • PE4 with MF6 + trial version, help with Blu-Ray project

    Is there a work flow I can read up on to accomplish this. I have a Canon HV20 HDV media. Use HD Split import M2T files into PE4 preset 1080i 30, render than save to desktop as same. The file is 1440x1080. I'm trying to make a high definition disk to playback on our Pioneer Blu-Ray player. Using Movie Factory 6+ trial version. Thank you.

    Thanks for the reply Paul I appreciate that. Let me go back over what I've done so far as my last post was incorrect. Moved M2T clips from HDsplit into PE4 with a new project setting of NTSC-HDV 1080i 30. Saved to computer with a select MPEG pre-set HD 1080i 30. The short clip plays fine with WMP and properties is at 1920x1080. Using MF6+ I would like to burn my high definition movie clips to a standard DVD to be played back in our Blu-Ray player. Are these the right steps so far to import the clip into MF6+? I just recently downloaded the trial version but last night I found a help/info section in MF6+ so I plan on reading through that to get acquainted with their terminology.
    Will I be burning a data disk to make this work? Maybe a couple of cliff notes to get me started so I can better understand how to do this. Your advice and suggestions are welcome.
    Jake

  • Help needed with permissions problem in new Aperture 3.5.1

    Hello and thank you for helping me with my first question to this wonderful support center. I have been using Aperture for many years. I recently upgraded my Mac to Mavericks, now running 10.9.2. and then upgraded (by necessity) to Aperture 3.5.1. I am working on a big project for a client and have an assistant in another city. I live outside the US so mailed  my library to my asst. on an external drive. She updated to 10.9.2 or .3 and Aperture 3.5.1. No problems. She modified the library and sent the library to the client in another city in the US on an external drive who has also upgraded to  Mavericks and is running Aperture 3.5.1.  So we are all in Mavericks with recent Apertures. When client tried to open the sent library client got a message that stated:
    "Aperture cannot access this library. To use this library, make sure its file permissions are set correctly.”
    Clientʻs Tech assistant at her office is a PC specialist but apparently did try on Friday and did try to repair permissions but I am told that it did not work. I wish I had more specific info on what Tech assistant did but I do not at this time.
    On Monday I would like to give them very specific instructions about what to do to open the library
    For recent discussions I have found only this
    https://discussions.apple.com/message/23600132#23600132
    Oct 30, 2013 3:35 PM by Frank Caggiano
    about repairing permissions.
    I am sure that we are all running Mavericks and new Aperture, that does not seem to be at the root of  the immediate problem. As we are in two different countries and three different cities and communication is hard, please tell me if this is a common problem with an easy fix and if it should be fixed by Repairing Permissions, please tell me exactly what I should tell them to do on Monday. They can at least see this discussion from their city!
    Many thanks!! This is an urgent project so I very much appreciate your help.

    Have your collegues check the file system of the drive and the "Ignore Ownership on this volume" flag.
    To check the filesystem and "Ignore ownership" flag select the drive in the Finder and use the command "File > Get Info ⌘i"
    In the panel unlock the padlock in the "Sharing & Permissions" brick and set the "Ignore ownership" flag at the bottom of the panel.
    Also, check the "General" brick of the panel. The format should be showing as "Mac OS Extended (Journaled)". Aperture checks for the correct formating before opening a library and may refuse to open a library on a drive formatted for Windows.
    If the format is wrong, it would be best to move the library to a different drive with the correct formatting.
    Once the "Ignore ownership" flag is set, try again to repair the permissions and see, ifyou now can open the library.

  • Project Server 2010 - Error 20010 with a master project and 3 sub-projects during publication

    Hi,
    Here is the situation :
    One master project with three sub projects.
    Sub projects are really similar (Same ressources and nearly same tasks but only the first contain real work for now).
    Sub projects got no sub projects nor links between projects.
    The owner of the master project got read rights through projects permissions on sub projects.
    Sub projects are link in "read only".
    We applied Project Server 2010 SP2 last week end and the issue appeared monday.
    Here are the symptoms :
    When we link only one sub project (Doesn't matter which one), the owner can publish, no problems.
    With 2 sub projects, the error may occur.
    With 3 sub projects, the error always occurs.
    With admin rights, the error doesn't occur.
    Here is the error :
    ID : 20010 (0x4E2A)
    Description : You don't have required permissions to perform the action (Average traduction)
    Detail : <detail><errinfo><general><class name="Project"><error id="20010" name="GeneralSecurityAccessDenied" uid="19515c1d-2624-466f-953a-b7fc67337b81"/></class></general></errinfo></detail>
    I'm unable to determine which sub project is the culprit, if there is one, as it's working when I link only one of them.
    Thanks for your time !

    Fylim --
    If the project manager in question does not need to edit any of the three projects, the PM does not need to have Read/Write access to any of the three projects.  Because you said that the PM needs to set links in all three projects, this means that
    the PM will be editing all three projects.  In order to edit the three projects, the PM must have Read/Write access to all three.  Setting cross-project links constitutes editing of the projects, which is why the PM must have Read/Write permission. 
    Make sense?
    Regarding SP2, I am not aware that this would change anything, but I could be wrong.  The reality is that regardless of which SP you have applied to Microsoft Project and Project Server 2010, the PM in this situation MUST have Read/Write access to the
    projects that he/she needs to edit with cross-project links.  Hope this helps.
    Dale A. Howard [MVP]

Maybe you are looking for

  • How to Change the Apple ID on an iPhone?

    I have two iPhones, and they are unfortunately using the same Apple ID.  Calendar and Contacts on the two iPhones are different, and they shall remain so.  How do I change the Apple ID on one of the iPhones (iPhone 5) without any resetting is done. I

  • Make parent appear ABOVE the child members (in fact as the outline order is)

    Hi all, Is ther a way to make SV open nodes in a way the the parent appears ABOVE it's child members (in fact as the outline order is) There is an option under "Smart View ->options->Member Options->General -> Ancestor Position". However this seems t

  • Error V0104 in BAPI_SALESORDER_SIMULATE

    Hello, While executing BAPI BAPI_SALESORDER_SIMULATE I end up with error V0104 and processing terminates. This has got to do with the screen sequence and entries are missing in table T185D. Is it not that this table has to be maintained using transac

  • How can I add a client wireless usig Airport Utility 6.0?

    In menu airport of firmware 6.0 there is not window "Add a wireless client". I'm using Mac Os lion with Airport Utility6.0, how can I add a client wireless with this firmware)?

  • Email a Friend

    Hello, I am trying to figure out how to properly incorporate an "email a friend" script into my website.  I have been able to get the link onto a website but have not been able to figure out how to track this information.  Basically I want to know wh