Very new - basic site design help

I have created a basic site layout in Photoshop, was
wondering if someone could point me in the right direction for
adding functionality.
http://www.heroesmemorabilia.net/Final-Layout.jpg
This is how I would like the site to look, on the left hand
side are buttons to control the content that will be loaded into
the grey shaded section in the middle. Ideally when scrolling down
the left bar and top bar remain stationary.
Also I would like the images to change when rolled over, i.e.
the text becomes highlighted or something.
I am assuming all this is possible in DReamweaver but is it
the best program to use for this type of work? If not any
suggestions, if so any decvent tutorials you know of to help me?
Additionally the main content would be a catalgoue of
products with pictures and text, would like this to be easily
updatedable in a kind of database. Possible? Apologies for being
such a noob, any help would be appreciated!

On Sun, 23 Sep 2007 13:09:44 +0000 (UTC), "SuperFlyChris"
<[email protected]> wrote:
>I have created a basic site layout in Photoshop, was
wondering if someone could
>point me in the right direction for adding functionality.
>
>
http://www.heroesmemorabilia.net/Final-Layout.jpg
>
> This is how I would like the site to look, on the left
hand side are buttons
>to control the content that will be loaded into the grey
shaded section in the
>middle. Ideally when scrolling down the left bar and top
bar remain stationary.
>
> Also I would like the images to change when rolled over,
i.e. the text becomes
>highlighted or something.
>
> I am assuming all this is possible in DReamweaver but is
it the best program
>to use for this type of work? If not any suggestions, if
so any decvent
>tutorials you know of to help me?
>
> Additionally the main content would be a catalgoue of
products with pictures
>and text, would like this to be easily updatedable in a
kind of database.
>Possible? Apologies for being such a noob, any help would
be appreciated!
Hello, that looks nice. By your asking if DW is the best
program to
use, I would say that it is hands down. But since you
apparently have
zero knowledge about how web pages are built, I would not
recommend
your buying a $400 to see how it works.
On the other hand, I think Fireworks is worth its weight in
gold and I
urge you to download the trial.
NVU at
http://nvudev.com/ is free and would
be a good program to play
with.
It's way to early for you to be thinking about databases and
such.
Besides, you gave no reason why that would be needed.
Hope this helps.

Similar Messages

  • Very New to Graphic Design and Printing

    Hi - I have recently gotten into graphic design for print...invitations, etc, and I purchased an Epson R1900 for my studio.  This is my first printer purchase and I am also very new to CS5 (self-teaching over the last 2-3 months).  So, you can only imagine my printer frustrations...first I had color management issues (still do, but much closer than before due to online research) and now I am trying to load custom paper and print from Illustrator (also using Mac with OSX 10.5.8).  I keep getting a message saying "The source selected in the printer driver is not appropriate for the paper that is loaded in the printer."  What is going on?  I can't have printer issues every time I go to print something!!!  Please help me! 

    In your Applications folder there should be an Epson Printer Utility. You need to change to the custom size there at the driver level and then again in your print dialog when printing the file.
    Many problems with Epson Printer Drivers. In my case I could never get the printer utility to show up on my Mac (even after updating drivers, resetting my printers, troubleshooting with Epson, etc). I finally gave up and started using my PC to print to this printer, so I could change to custom size and roll fed.
    Good luck.

  • Very new to java please help

    i'm very new to java and i'm getting an error in my application. i took 4 applications that compiled and worked separatly and i tried to combine them into one application. i'm getting the error: unreported exception java.io.IOException; must be caught or declared to be thrown, in lines 73,78,83,88,120,146,149,152,155 in the and it points at the keyboard.readLine() but everything i've tried just gives me more errors. please help anything and everything will be greatly appreciated. here it is, sorry about format i dunno how to straighten it in here:
    // ^ ^
    //               (0)(0) A Happy Piggy Application
    // Problems: 2.6,2.8,2.9,2.12 (oo)
    // An application finds the total number of hours, minutes, & seconds, finds the distance
    // between two points, finds the volume and surface area of a sphere, and adds up the change
    // in a jar. First, the total hours, minutes, and seconds problem.
    import java.io.*;
    import java.text.DecimalFormat;
    import java.text.NumberFormat;
    public class twoptsix
         static BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in));
         static PrintWriter screen = new PrintWriter(System.out, true);
         public static void main (String[] args) throws IOException
              double hoursa, minutesa, secondsa;
              String hours;
              System.out.print ("Please enter a number of hours: ");
    hours = keyboard.readLine();
    hoursa = Double.parseDouble(hours); //asks programmer friendly user to enter hours
    String minutes;
    System.out.print ("Please enter a number of minutes: ");
    minutes=keyboard.readLine();
    minutesa = Double.parseDouble(minutes); //asks programmer friendly user to enter minutes
    String seconds;
    System.out.print ("Pretty please enter a number of seconds: ");
    seconds = keyboard.readLine();
    secondsa = Double.parseDouble(seconds); //asks programmer friendly user to enter seconds
    double allseconds;
    allseconds = (hoursa * 3600) + (minutesa * 60) + secondsa; //adds up all the seconds of the time entered
    System.out.println ("You have: " + hours + " hours..."); //displays hours
    System.out.println ("" + minutes + " minutes..."); //displays minutes
    System.out.println ("and " + seconds + " seconds..."); //displays seconds
              System.out.println ("to get whatever you need to done!"); //witty attempt at humor
    System.out.println ("The total amount of seconds is: " + allseconds + " seconds."); //displays total seconds
    // An application that finds the distance between two points when the points
    // are given by the user.
              double x1, x2, y1, y2, total, distance;
              String xa;
              System.out.print ("Please enter the 'x' coordinate of first point: ");
              xa = keyboard.readLine();
              x1 = Double.parseDouble(xa); //asks programmer friendly user to enter first x value
              String ya;
              System.out.print ("...also need the 'y' coordinate of first point: ");
              ya = keyboard.readLine();
              y1= Double.parseDouble(ya); //asks programmer friendly user to enter first y value
              String xb;
              System.out.print ("...and the 'x' coordinate of the second point: ");
              xb = keyboard.readLine();
              x2 = Double.parseDouble(xb); //asks programmer friendly user to enter second x value
              String yb;
              System.out.print ("...don't forget the 'y' coordinate of the second point: ");
              yb = keyboard.readLine();
              y2 = Double.parseDouble(yb); //asks programmer friendly user to enter second y value
              total = Math.pow(x2 - x1, 2.0) + Math.pow(y2 - y1, 2.0); //squares the differences of values
              distance = Math.sqrt(total); //finds the square root of the sum of the differences of the values
              System.out.print ("E=mc^2...oh and,");
              System.out.print ("the distance between point (" + xa +"," + ya +") and point("+
              xb + "," + yb + ") is : " + distance);
    // An application that takes the radius of a sphere and finds and prints
    // the spheres volume and surface area.
              double radius,volume,area;
              String rad;
              System.out.print("Please enter the radius of a sphere: ");
              rad = keyboard.readLine();
              radius = Double.parseDouble(rad); //asks programmer friendly user to enter the radius of a sphere
    DecimalFormat fmt = new DecimalFormat ("0.####");
              volume = ((4 * Math.PI * Math.pow(radius,3.0)) / 3) ;
              System.out.println (" The sphere has a volume of:" + fmt.format(volume)); //finds and displays volume
              area = ( 4 * Math.PI * Math.pow(radius, 2.0)) ;
              System.out.print (" The Surface Area of the sphere is: " + fmt.format(area)); //finds and displays surface area
    // An application that finds the total, in dollars and cents, of a number of quarters,
    // nickels, dimes, and pennies in your piggy bank.
              int pennies, nickels, dimes, quarters;
              double money1;
              screen.println("Empty your piggy bank and count the change, how many quarters ya have?: ");
              int q = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of quarters
              screen.println("How many dimes?: ");
              int d = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of dimes
              screen.println("How many nickels?: ");
              int n = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of nickels
              screen.println("How many pennies?: ");
              int p = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of pennies
              NumberFormat money = NumberFormat.getCurrencyInstance();
              money1 = (.25 * q) + (.1 * d) + (.05 * n) + (.01 * p);
              screen.println("You're rich! Total, you've got: " + money.format(money1));//finds and displays total money

    Ok here is the working code as one long function:
    // ^ ^
    // (0)(0) A Happy Piggy Application
    // Problems: 2.6,2.8,2.9,2.12 (oo)
    // An application finds the total number of hours, minutes, & seconds, finds the distance
    // between two points, finds the volume and surface area of a sphere, and adds up the change
    // in a jar. First, the total hours, minutes, and seconds problem.
    import java.io.*;
    import java.text.DecimalFormat;
    import java.text.NumberFormat;
    public class twoptsix
        static BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in));
        static PrintWriter screen = new PrintWriter(System.out, true);
        public static void main (String[] args) throws IOException
    double hoursa, minutesa, secondsa;
    String hours;
    System.out.print ("Please enter a number of hours: ");
    hours = keyboard.readLine();
    hoursa = Double.parseDouble(hours); //asks programmer friendly user to enter hours
    String minutes;
    System.out.print ("Please enter a number of minutes: ");
    minutes=keyboard.readLine();
    minutesa = Double.parseDouble(minutes); //asks programmer friendly user to enter minutes
    String seconds;
    System.out.print ("Pretty please enter a number of seconds: ");
    seconds = keyboard.readLine();
    secondsa = Double.parseDouble(seconds); //asks programmer friendly user to enter seconds
    double allseconds;
    allseconds = (hoursa * 3600) + (minutesa * 60) + secondsa; //adds up all the seconds of the time entered
    System.out.println ("You have: " + hours + " hours..."); //displays hours
    System.out.println ("" + minutes + " minutes..."); //displays minutes
    System.out.println ("and " + seconds + " seconds..."); //displays seconds
    System.out.println ("to get whatever you need to done!"); //witty attempt at humor
    System.out.println ("The total amount of seconds is: " + allseconds + " seconds."); //displays total seconds
    // }  <----- MAIN FUNCTION USED TO END HERE!!!
    //but we want to keep going so remove the bracket!
    // An application that finds the distance between two points when the points
    // are given by the user.
    // {  <-- other function used to start here, but now it continues
    double x1, x2, y1, y2, total, distance;
    String xa;
    System.out.print ("Please enter the 'x' coordinate of first point: ");
    xa = keyboard.readLine();
    x1 = Double.parseDouble(xa); //asks programmer friendly user to enter first x value
    String ya;
    System.out.print ("...also need the 'y' coordinate of first point: ");
    ya = keyboard.readLine();
    y1= Double.parseDouble(ya); //asks programmer friendly user to enter first y value
    String xb;
    System.out.print ("...and the 'x' coordinate of the second point: ");
    xb = keyboard.readLine();
    x2 = Double.parseDouble(xb); //asks programmer friendly user to enter second x value
    String yb;
    System.out.print ("...don't forget the 'y' coordinate of the second point: ");
    yb = keyboard.readLine();
    y2 = Double.parseDouble(yb); //asks programmer friendly user to enter second y value
    total = Math.pow(x2 - x1, 2.0) + Math.pow(y2 - y1, 2.0); //squares the differences of values
    distance = Math.sqrt(total); //finds the square root of the sum of the differences of the values
    System.out.print ("E=mc^2...oh and,");
    System.out.print ("the distance between point (" + xa +"," + ya +") and point("+
         xb + "," + yb + ") is : " + distance);
    //second function used to end here...
    //} <--- COMMENT OUT BRACKET SO WE CONTINUE
    // An application that takes the radius of a sphere and finds and prints
    // the spheres volume and surface area.
    //{ <--- ANOTHER ONE TO COMMENT OUT
    double radius,volume,area;
    String rad;
    System.out.print("Please enter the radius of a sphere: ");
    rad = keyboard.readLine();
    radius = Double.parseDouble(rad); //asks programmer friendly user to enter the radius of a sphere
    DecimalFormat fmt = new DecimalFormat ("0.####");
    volume = ((4 * Math.PI * Math.pow(radius,3.0)) / 3) ;
    System.out.println (" The sphere has a volume of:" + fmt.format(volume)); //finds and displays volume
    area = ( 4 * Math.PI * Math.pow(radius, 2.0)) ;
    System.out.print (" The Surface Area of the sphere is: " + fmt.format(area)); //finds and displays surface area
    // } <----- COMMENTED OUT FOR THE SAME REASON
    // An application that finds the total, in dollars and cents, of a number of quarters,
    // nickels, dimes, and pennies in your piggy bank.
    //{ <----AND ANOTHER
    int pennies, nickels, dimes, quarters;
    double money1;
    screen.println("Empty your piggy bank and count the change, how many quarters ya have?: ");
    int q = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of quarters
    screen.println("How many dimes?: ");
    int d = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of dimes
    screen.println("How many nickels?: ");
    int n = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of nickels
    screen.println("How many pennies?: ");
    int p = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of pennies
    NumberFormat money = NumberFormat.getCurrencyInstance();
    money1 = (.25 * q) + (.1 * d) + (.05 * n) + (.01 * p);
    screen.println("You're rich! Total, you've got: " + money.format(money1));//finds and displays total money
    }P.S. To make the code formatted better put [ code ] before and [ /code ] after. It's not perfect, but a little better...

  • I am very new to web design

    Hi, this is a little embarrassing because it's so basic, but
    what is the best way to start the layout for your design? I don't
    really know how to use CSS so I am starting out with general
    tables. I want to insert a .swf navigation bar up top (center) and
    a panel on the left side for other links = the very basic
    upside-down L.
    I began with a table set for 100%, then nested another table
    inside. I began nesting tables within that nested table but it
    turned into a big mess where things became misaligned the more
    content i inserted.
    Any help would be appreciated!
    J.

    The best way to start is with Notepad/Text Edit and a basic
    book on HTML.
    Don't even think of touching DW until you understand as much
    as you can
    tolerate about page structure and the HTML tags involved.
    Move to the same
    kind of book on CSS. Then you will be ready for DW....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "jeannette villarreal" <[email protected]>
    wrote in message
    news:f857i2$35s$[email protected]..
    > Hi, this is a little embarrassing because it's so basic,
    but what is the
    > best
    > way to start the layout for your design? I don't really
    know how to use
    > CSS so
    > I am starting out with general tables. I want to insert
    a .swf navigation
    > bar
    > up top (center) and a panel on the left side for other
    links = the very
    > basic
    > upside-down L.
    > I began with a table set for 100%, then nested another
    table inside. I
    > began
    > nesting tables within that nested table but it turned
    into a big mess
    > where
    > things became misaligned the more content i inserted.
    > Any help would be appreciated!
    > J.
    >

  • A very new user needs some help and advice....

    Hi,
    I have just taken the bold leap into Indesign and this is the first day of my 30 day trial.
    I need help and advice from you good poeple...please.
    I have been successfully creating A5 booklets (folded A4) using MS Word and printing to a desktop printer. MS Word sorted out my page order for me at printing time so the correct pages were put together.
    I have been reading as much information as I could find but I am still unable to do the same in Indesign.
    I'm looking forward to using the advanced layout features and having control over what I do but, I need to work out this basic step before I go any further.
    I hope what I have explained makes sense.
    Regards
    John

    So presumably you create a new document, A5 portrait, facing pages. Make sure your ducument page count is a multiple of 4.
    Create, type, tweak, ponder, edit, smile, save.
    To create you booklet using InDesign, from the file menu select Print Booklet.
    You will probably need to jump back and forth from the Print Settings button adjusting Paper Size, Orientation, Color, and from the Print Booklet tab set for 2-up Saddle Stitch.
    Much has been posted on this topic, these are the basics, Print Booklet is not the best module Adobe ever wrote, IMO

  • Very new in Java pls help!!!!!!

    hello,
    i just started to learn java and trying to do my first program, but dont know why i cant do that! it asking me to set my PATH in sdk bin folder with jdk and i dont know how to do that, couse i install it in diferent folders! im trying to set c:\jdk1.6\bin;%PATH% but writing "environment variable c:jdk1.6\bin;C:\windows\system32;C:\windows;C:\windowasystem32\wbem;C;\program files\cyberlink\power2Go\C:\sun\SDK\bin not defined" help me please!!!

    - Right click 'my computer', select 'properties'.
    - Click the 'advanced' tab.
    - click the 'environmental variables' button
    Here you will find the PATH environmental variable, most likely under system variables. Add the path to the JDK bin directory here.
    Note: If you have a command prompt open while you are doing this, open a new one as the old one will not see the changes you make. To make sure the PATH is valid, open a command prompt and type:
    echo %PATH%

  • Just purchased Mac Book,   VERY  new to Mac world,   "ouch",,  I am looking to design my own website,,  is there a program built in that will allow this,  if so,, what is it called, and where can I find it???   Thanks,

    Just purchased Mac Book,   VERY  new to Mac world,   "ouch",,  I am looking to design my own website,,  is there a program built in that will allow this,  if so,, what is it called, and where can I find it???   Thanks,

    There are many ways and applications that you can use to build a web site. Which will be best for you will depend on the site you want to build and your level of expertise. Many experienced web developers just use a text editor, often one with specialized features for web programming (BBEdit, for example), but there are programs that can offer additional help, up to and including "drag and drop". Without knowing more about your needs, it's difficult to offer specific advice, but here are some possibilities:
    iWeb - came with your Mac. Easy to build but rather limiting in what you can do.
    RapidWeaver - more flexible and capable than iWeb but harder to use; sort of an "inbetweener" application
    Dreamweaver - powerful but expensive and a steep learning curve
    There are of course a number of other options. If you can provide more detail about what you wish to build and your level of experience, someone can probably make more targeted recommendations.
    Regards.

  • I am new to mac please help me basic tips an trick to use mac

    i am new to mac please help me basic tips an trick to use mac its very frustrating for any thing i have to call apple help line
    any acesserious to macbook air 13 like any silicon case or carry case or some acesserious
    i have delete contains of master folder of phothos still i can see phothos in my mac so how can i delete it

    Apple has a site for new users. Use it. Also, David Pogue is an excellent tech writer who has penned a series called the Missing Manual. I assume you've come to the Mac from the Windows world and he's written one especially for switchers. I've linked to the version for Mavericks (10.9) but if you have an earlier version of the Mac OS he's written a similar book for them as well.

  • I am very new to mac products, I have a Mac Pro 13" I  need to learn how to use it ? looking video courses any will helpI

    I am very new to mac products, I have a Mac Pro 13" I  need to learn how to use it ? looking video courses any will help .....

    Go to www.apple.com for a start. See, also, Mac Basics.

  • New iWeb User needs help regarding multiple sites

    As a new user please excuse me if this has an obvious answer.
    I have 4 web site, very simple, that I have used Frontpage with for years.
    I want to make new websites with iWeb but I am worried I may screw something up.
    I have already created one new iWeb Site and it comes up in the left hand pane as SITE 1.
    I have used that for ages and use a seperate FTP program to publish to my independent Server with no problem. I usually publish to a folder first then use the FTP software to publish to the Server and its fine
    The trouble I have now is probably becasue I don't know how to use iWeb properly but I'll try to explain.
    I made another website and it creates SITE 2 in the left hand pane and I have produced a few pages for that site.
    My problem is that when i go to publish to a folder for the 2nd site, it automatically does the first site as well ?
    In most other programs (like Frontpage) you have to open the individual sites on their own so you can keep everything seperate but iWeb seems to put them all together.
    I now have a folder (on my Apple) with SITE 1 and all its files and in another seperate folder (which I made just for SITE 2) have SITE 1 and SITE 2 and I'm scared to delete the copy of SITE 1 in case it deletes all of it !!
    I wish there was a simple 'OPEN SITE' command in iWeb where you cna pick the opne you want to work on but it doesn't seem to be there.
    If I am missing something obvious I'd be grateful of some advice becasue I really would like to get the other sites made up.
    Message was edited by: russfaefyvie
    Message was edited by: russfaefyvie

    I'll try to make this simple!
    Lets say that you have a website already and you named the site Family.
    You decide you want to create another website for example, My Pets.
    First create a 2 folders a place them where you will remember where they are.
    One of the new folders will be called (Family) (of course both folders are empty at this time. The second folder you created you will name (MY PETS)Ok you with me so far?
    Now lets suppose you have the iweb open to the (Family) website. Quit iweb...
    Go to users/Library/Application Support/iweb. You will see a iweb icon that will say (Domain.Sites2. Drag the domain.sites2 to the (family) folder you just created. Now for your new site that you want to start. (MY PETS) OPEN iweb. You should now be prompted to choose a template. That's because you removed the domain.sites2 out and put it into another folder.
    iweb thinks your are starting a new project and prompts you to choose a template as described earlier. Any pictures you add you should keep them in the separate folder in case you need edit or if you accidentally delete them. For example on the (my Pets site) any pictures you have there you will have in the same folder as the my pets folder you created. What I do is I make additional folders within the site folder I created so I can find things faster. Pets,I would have a pets folder and so on. Do the same for the other folder.(Family)
    Now you created your new website (MY PETS) and you decide you want to go back and work on the (Family) website. Quit iweb. and then go to User/Library/Application Support/iweb... REMOVE the Domain.sites2 (MY PETS) and go to other folder(Family) and drag that Domain.site2 where you previously removed the other domain.sites2.. Open iweb and there it is.
    Tip: When you place a Domain.sites2 into one of the folders you created it is always good to copy the domain.site2 and paste it into the same folder.When you copy and paste a Domain.sites2 the copy of it will say (Domain copy.sites2) This is a good practice to make because if you forget to close a iweb and drag a domain.sites2 out and replace it with another site. iweb will overwrite it when you save and quit. If that happens Just go the the copy you made and drag it to the: users/Library/Application Support/iweb.
    once you drag it to iweb folder click on it once and press enter. You will see the text Domain Copy highlighted. Just delete the word (COPY) make sure it looks like this when your done... Domain.sites2
    Open iweb and there it is.
    Sorry about all the detail as this is a bad habit of mine, but I hope it helps.

  • Having problems accessing any apps on my iCloud. Set up and signed in successfully but then when I click on an app it just says there's a problem but doesn't say how to fix it. Please help, am very new to this!

    Hi
    I am very new to updating my iPod touch and this is the first time I've used the iCloud. However, I am having problems accessing any apps on my iCloud such as photos, reminders etc. I've set it up on my iPod touch successfully and I can sign in on my PC. However, when I try to access any of the apps it says there was a problem. It doesn't tell me how to fix it or what the problem is.
    Is anyone able to help?

    It is working now. I no longer get the message about the item not being available in the US and I can access the store.

  • I have a 2010 Macbook Pro and am a very new user to Mac community. My Mac is just hanging and I am unable to shut it down or do anything at all.  I left it for 2.5 days hoping the battery will run flat but it is not working. Pls help! I am desperate. Tx

    I have a 2010 Macbook Pro and am a very new user to Mac community only started to use this PC a few weeks ago.
    My Mac is just hanging and I am unable to shut it down or do anything at all.  I left it for 2.5 days hoping the battery will run flat but it is not working. Pls help! I am desperate. Tx

    In order to resolve the issue if it occurs again, more info would be helpful as to what occurred prior to the "hang." One potential fix would be to try a Safe Boot:
    After the Mac is completely shut down, push the power button and immediately after the startup tone, hold down the Shift key. The Shift key should be held as soon as possible after the startup tone but not before.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    There should be a message that says "SafeBoot." After the Mac is completely booted, try restarting and see if the issue is gone.

  • PLZ help me out i'm very new and confused to java

    Hi~
    I'm very new to java and I just brought a phone (Nokia 6670). It's capable of J2ME, as it says in the instrusction book, but I'm not so sure which Java to download. (THERE ARE SO MANY). Please help me out, I'm not sure what to do, since I'm putting games in Java.

    you want to develop your own game or just want to have some games on your new device?
    your phone has java runtime already, and that's all you need to run java games .. you can download them from several locations
    if you want to develop your own game then download Sun's J2ME Wireless Toolkit; also have a look at Nokia Developer's Suite and emulator for your device...

  • HT1947 Help!  I'm very new to my iphone and i think i might have accidentally deleted Facetime from my phone I dont have the icon anymore but my settings tell me  have it.  What do I do to get it back on my phone?  Thank you!

    Help!  I'm very new to my iphone and i think i might have accidentally deleted my Facetime although my settings tell me I have it.  How do i get it back on my phone?  Thank you.

    Built-in apps cannot be deleted. However, there never was a FaceTime icon on the iPhone. FaceTime is accessed by selecting a contact in the Contacts app, and then selecting FaceTime. The same can be done from the Contacts tab in the Phone app.

  • I   just  got  a  new iPone 4S and  would  like  to  change  my ringtone  to  an  Allen  Jackson  song .  I  already  download iTunes . I'm  very  new  to this  and  need  help ????..please

    I just  got  a  new iPhone 4S . I  would  like  to  change my  ringtone to an Alan Jackson  song .  I already download i Tunes .  but  i don't  know  how  to  do it . i'm  very  new  to this  and  would  like to know if someone  can help me with this ? Thanks

    Your past purchases are not on the computer.   By choosing download all, those purchases will download to the computer. 
    Once authorized to your iTunes account you can control the computer.
    When syncing the iPad the first time you will get the warning " this iPad is synced with another computer, syncing will erase all contents and replace with the contents of this computer"
    Say yes, this is what you wan to do. 

Maybe you are looking for