Ok i need help with the moving part below

basically i am drawing an arc with four small squares (pizza and topping) one s crollbar (x) moves it side ways, and the other scrollbar (y) increase the arc to make it a circle ie a pizza! i have applied border layout etc and now the drawing is gone! i cant see it!
my thinking is that its because the borderlayouts are on "top" of that so it is tehre but i cant see it!
help please??
import java.awt.*;
import java.applet.Applet;
import java.awt.event.*;
import java.text.DecimalFormat;
//creating a service outlet called PizzaExpress
public class PizzaExpress extends Applet
     implements ItemListener, AdjustmentListener {
//creating a group for radio buttons
CheckboxGroup pizzaOptions;
//creating panels
Panel p1,p2,p3,p4,p5;
//creating a field to output the price
TextField Total;
//creating the 4 options for pizzas and 5 toppings
Checkbox A1, A2, A3, A4;
Checkbox N1, N2, N3, N4, N5;
Label L1;
//creating double to store the price for pizza option and toppings
double P = 0;
double Op = 0;
double Total1;
//scrollbars to move the logo
Scrollbar x,y;
//variables that will take scrollbar values
int xVal = 10, deg = 60;
public void init() {
     setLayout(new BorderLayout());
     p1 = new Panel();
     p2 = new Panel();
     p3 = new Panel();
     p4 = new Panel();
     p5 = new Panel();
     //putting the scrolbars
     y = new Scrollbar(Scrollbar.VERTICAL,60,1,60,375);
     y.addAdjustmentListener(this);
     x = new Scrollbar(Scrollbar.HORIZONTAL,10,5,10,430);
     x.addAdjustmentListener(this);
     add("South", x);
     add("East", y);
     //label for the Title
     L1 = new Label ("                                                    Welcome to Pizza Express                                        ");
     p1.add(L1);
     //saying that there are radio buttons in a group rather then checkboxes
     pizzaOptions = new CheckboxGroup();
//initialising and adding the four diff options to panel2
A1 = new Checkbox("cheese",false,pizzaOptions);
p3.add(A1);
A1.addItemListener(this);
A2 = new Checkbox("Pepperoni",false,pizzaOptions);
p3.add(A2);
A2.addItemListener(this);
A3 = new Checkbox("Spicy Hot",false,pizzaOptions);
p3.add(A3);
A3.addItemListener(this);
A4 = new Checkbox("Vegetarian",false,pizzaOptions);
p3.add(A4);
A4.addItemListener(this);
//adding the price textfield to panel3
Total = new TextField(10);
Total.setEditable(false);
p3.add(Total);
//adding checkboxes to panel3
N1 = new Checkbox ("Beef");
p2.add(N1);
N1.addItemListener(this);
N2 = new Checkbox ("Chillies");
p2.add(N2);
N2.addItemListener(this);
N3 = new Checkbox ("Mushrooms");
p2.add(N3);
N3.addItemListener(this);
N4 = new Checkbox ("Pineapple");
p2.add(N4);
N4.addItemListener(this);
N5 = new Checkbox ("Sweetcorn");
p2.add(N5);
N5.addItemListener(this);
//adding panels to the applet
p1.setLayout(new FlowLayout());
p2.setLayout(new FlowLayout());
p3.setLayout(new FlowLayout());
//p4.setLayout(new FlowLayout());
//p5.setLayout(new FlowLayout());
add("North", p1);
//add("East", p4);
add("West", p3);
//add("South", p5);
add("Center", p2);
public void paint(Graphics g) {
     //pizza logo an arc that will become a pizza
     g.setColor(Color.red);
     g.fillArc(xVal,140,50,50,0,deg);
     //toppings
     g.setColor(Color.blue);
     g.fillOval(xVal+30,155,5,5);
     g.setColor(Color.blue);
     g.fillOval(xVal+40,155,5,5);
     g.setColor(Color.black);
     g.fillOval(xVal+35,160,5,5);
     g.setColor(Color.black);
     g.fillOval(xVal+35,150,5,5);
public void itemStateChanged(ItemEvent e) {
     P = 0;
     Op = 0;
     //telling it to add the price if user selects a particluar pizza
     if          (A1.getState() == true) P = 5.99;
     else if (A2.getState() == true) P = 7.99;
     else if (A3.getState() == true) P = 10.99;
     else if (A4.getState() == true) P = 12.99;
     //telling it to add to itself so that if user chooses more then one item
     //it will be added to
     if         (N1.getState() == true) Op = Op + 0.50;
     if          (N2.getState() == true) Op = Op + 0.60;
     if (N3.getState() == true) Op = Op + 0.70;
     if (N4.getState() == true) Op = Op + 0.90;
     if (N5.getState() == true) {Op = Op + 1.00;}
     //giving Total1 the value of P+Op
     Total1 = (P+Op);
     //formatting Total1 so it only gives the value to 2dp!
     DecimalFormat decimalFormat = new DecimalFormat("#.##");
     Total.setText("�" + decimalFormat.format(Total1) + "p");
     //repainting so that the applet shows the latest event (ie if person changes his/her mind)
          repaint();     
public void adjustmentValueChanged(AdjustmentEvent e) {
     xVal = x.getValue();
     deg = y.getValue();
     repaint();
}//end

This does something, but I have no idea what you've originally intended import java.awt.*;
import java.applet.Applet;
import java.awt.event.*;
import java.text.DecimalFormat;
//creating a service outlet called PizzaExpress
public class PizzaExpress extends Applet implements ItemListener, AdjustmentListener {
     //creating a group for radio buttons
     CheckboxGroup pizzaOptions;
     //creating panels
     Panel p1, p2, p3;
     DrawPanel p4;
     //creating a field to output the price
     TextField Total;
     //creating the 4 options for pizzas and 5 toppings
     Checkbox A1, A2, A3, A4;
     Checkbox N1, N2, N3, N4, N5;
     Label L1;
     //creating double to store the price for pizza option and toppings
     double P = 0;
     double Op = 0;
     double Total1;
     //scrollbars to move the logo
     Scrollbar x, y;
     //variables that will take scrollbar values
     int xVal = 10, deg = 60;
     public void init() {
          setLayout(new BorderLayout());
          p1 = new Panel();
          p2 = new Panel();
          p3 = new Panel();
          //putting the scrolbars
          y = new Scrollbar(Scrollbar.VERTICAL, 60, 1, 60, 375);
          y.addAdjustmentListener(this);
          x = new Scrollbar(Scrollbar.HORIZONTAL, 10, 5, 10, 430);
          x.addAdjustmentListener(this);
          //          add("South", x);
          //          add("East", y);
          //label for the Title
          L1 = new Label(" Welcome to Pizza Express ");
          p1.setLayout(new BorderLayout());
          p1.add("North", L1);
          //saying that there are radio buttons in a group rather then checkboxes
          pizzaOptions = new CheckboxGroup();
          //initialising and adding the four diff options to panel2
          A1 = new Checkbox("cheese", false, pizzaOptions);
          p3.add(A1);
          A1.addItemListener(this);
          A2 = new Checkbox("Pepperoni", false, pizzaOptions);
          p3.add(A2);
          A2.addItemListener(this);
          A3 = new Checkbox("Spicy Hot", false, pizzaOptions);
          p3.add(A3);
          A3.addItemListener(this);
          A4 = new Checkbox("Vegetarian", false, pizzaOptions);
          p3.add(A4);
          A4.addItemListener(this);
          //adding the price textfield to panel3
          Total = new TextField(10);
          Total.setEditable(false);
          p3.add(Total);
          //adding checkboxes to panel3
          N1 = new Checkbox("Beef");
          p2.add(N1);
          N1.addItemListener(this);
          N2 = new Checkbox("Chillies");
          p2.add(N2);
          N2.addItemListener(this);
          N3 = new Checkbox("Mushrooms");
          p2.add(N3);
          N3.addItemListener(this);
          N4 = new Checkbox("Pineapple");
          p2.add(N4);
          N4.addItemListener(this);
          N5 = new Checkbox("Sweetcorn");
          p2.add(N5);
          N5.addItemListener(this);
          //adding panels to the applet
          //p1.setLayout(new FlowLayout());
          p2.setLayout(new FlowLayout());
          p3.setLayout(new FlowLayout());
          //p4.setLayout(new FlowLayout());
          //p5.setLayout(new FlowLayout());
          p1.add("West", p3);
          p1.add("East", p2);
          add("North", p1);
          //add("East", p4);
          //add("West", p3);
          //add("South", p5);
          //add("East", p2);
          p4 = new DrawPanel();
          //p4.setBackground(Color.black);
          p4.setSize(400, 300);
          p4.setLayout(new BorderLayout());
          p4.add("East",y);
          p4.add("South",x);
          add("Center", p4);
     public void itemStateChanged(ItemEvent e) {
          P = 0;
          Op = 0;
          //telling it to add the price if user selects a particluar pizza
          if (A1.getState() == true)
               P = 5.99;
          else if (A2.getState() == true)
               P = 7.99;
          else if (A3.getState() == true)
               P = 10.99;
          else if (A4.getState() == true)
               P = 12.99;
          //telling it to add to itself so that if user chooses more then one item
          //it will be added to
          if (N1.getState() == true)
               Op = Op + 0.50;
          if (N2.getState() == true)
               Op = Op + 0.60;
          if (N3.getState() == true)
               Op = Op + 0.70;
          if (N4.getState() == true)
               Op = Op + 0.90;
          if (N5.getState() == true) {
               Op = Op + 1.00;
          //giving Total1 the value of P+Op
          Total1 = (P + Op);
          //formatting Total1 so it only gives the value to 2dp!
          DecimalFormat decimalFormat = new DecimalFormat("#.##");
          Total.setText("�" + decimalFormat.format(Total1) + "p");
          //repainting so that the applet shows the latest event (ie if person changes his/her mind)
          p4.repaint();
     public void adjustmentValueChanged(AdjustmentEvent e) {
          xVal = x.getValue();
          deg = y.getValue();
          p4.repaint();
     public class DrawPanel extends Panel {
          public void paint(Graphics g) {
               //pizza logo an arc that will become a pizza
               g.setColor(Color.red);
               g.fillArc( xVal, 140, 50, 50, 0, deg);
               //toppings
               g.setColor(Color.blue);
               g.fillOval(xVal + 30, 155, 5, 5);
               g.setColor(Color.blue);
               g.fillOval(xVal + 40, 155, 5, 5);
               g.setColor(Color.black);
               g.fillOval(xVal + 35, 160, 5, 5);
               g.setColor(Color.black);
               g.fillOval(xVal + 35, 150, 5, 5);
} //end

Similar Messages

  • Need help with the implementation of below DLL in LabVIEW Call Lib function

    Here is the list of C functions in the doc that I have but I'm not getting the exact output.
    I need a help only to understand these functions and how to configure it in LabVIEW
    Parameters
    voltType
    [in]Specifies a voltage sensor to get value from. It can be one of the flags
    VCORE (1<<0)
    V25 (1<<1)
    V33 (1<<2)
    V50 (1<<3)
    V120 (1<<4)
    VSB (1<<5)
    VBAT (1<<6)
    VN50 (1<<7)
    VN120 (1<<8)
    VTT (1<<9)
    retval
    [out]Point to a variable in which this function returns the voltage in Volt.
    Typesupport
    [out]
    If the value is specified as a pointer (non-NULL) to a variable, it will return the types of available sensors in flags bitwise-ORed
    Return Value
    TRUE (1) indicates success; FALSE (0) indicates failure.
    Remarks
    Call the function first with a non-NULL typesupport to know the available fan sensors and a following call to get the voltage required.
    =========================================
    Please remember to accept a solutions and show your appreciation by giving Kudos to helpful messages...
    Mangesh D.
    CLAD | Project Engineer
    ==
    VIPM, LabVIEW 8.2, 2009, 2011SP1, 2012, 2012SP1, 2013, cRIO,cDAQ, PXI, ELVIS, Multisim, Smart Camera....
    Solved!
    Go to Solution.

    ManLD wrote:
    Here is the list of C functions in the doc that I have but I'm not getting the exact output.
    I need a help only to understand these functions and how to configure it in LabVIEW
    Parameters
    voltType
    [in]Specifies a voltage sensor to get value from. It can be one of the flags
    VCORE (1<<0)
    V25 (1<<1)
    V33 (1<<2)
    V50 (1<<3)
    V120 (1<<4)
    VSB (1<<5)
    VBAT (1<<6)
    VN50 (1<<7)
    VN120 (1<<8)
    VTT (1<<9)
    retval
    [out]Point to a variable in which this function returns the voltage in Volt.
    Typesupport
    [out]
    If the value is specified as a pointer (non-NULL) to a variable, it will return the types of available sensors in flags bitwise-ORed
    Return Value
    TRUE (1) indicates success; FALSE (0) indicates failure.
    Remarks
    Call the function first with a non-NULL typesupport to know the available fan sensors and a following call to get the voltage required.
    The parameter describtion you show is useless. It tells absolutely nothing about the actual data types used nor how those parameters are exactly supposed to be passed. Show us at least the function prototype too!
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Need help with the Vibrance adjustment in Photoshop CC 2014.

    Need help with the Vibrance adjustment in Photoshop CC 2014.
    Anytime I select Vibrance to adjust the color of an image. The whole image turns Pink in the highlights when the slider is moved from "0" to - or + in value.  Can the Vibrance tool be reset to prevent this from happening? When this happens I cn not make adjustments...just turns Pink.
    Thanks,
    GD

    Thank you for your reply. 
    Yes, that does reset to “0” and the Pink does disappear.
    But as soon as I move the slider +1 or -1 or higher the image turns Pink in all of the highlights again, rather than adjusting the overall color.
    GD
    Guy Diehl  web: www.guydiehl.com | email: [email protected]

  • I need help with the Quote applet.

    Hey all,
    I need help with the Quote applet. I downloaded it and encoded it in the following html code:
    <html>
    <head>
    <title>Part 2</title>
    </head>
    <body>
    <applet      codebase="/demo/quote/classes" code="/demo/quote/JavaQuote.class"
    width="300" height="125" >
    <param      name="bgcolor"      value="ffffff">
    <param      name="bheight"      value="10">
    <param      name="bwidth"      value="10">
    <param      name="delay"      value="1000">
    <param      name="fontname"      value="TimesRoman">
    <param      name="fontsize"      value="14">
    <param      name="link"      value="http://java.sun.com/events/jibe/index.html">
    <param      name="number"      value="3">
    <param      name="quote0"      value="Living next to you is in some ways like sleeping with an elephant. No matter how friendly and even-tempered is the beast, one is affected by every twitch and grunt.|- Pierre Elliot Trudeau|000000|ffffff|7">
    <param      name="quote1"      value="Simplicity is key. Our customers need no special technology to enjoy our services. Because of Java, just about the entire world can come to PlayStar.|- PlayStar Corporation|000000|ffffff|7">
    <param      name="quote2"      value="The ubiquity of the Internet is virtually wasted without a platform which allows applications to utilize the reach of Internet to write ubiquitous applications! That's where Java comes into the picture for us.|- NetAccent|000000|ffffff|7">
    <param      name="space"      value="20">
    </applet>
    </body>
    </html>When I previewed it in Netscape Navigator, a box with a red X appeared, and this appeared in the console when I opened it:
    load: class /demo/quote/JavaQuote.class not found.
    java.lang.ClassNotFoundException: .demo.quote.JavaQuote.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.FileNotFoundException: \demo\quote\JavaQuote\class.class (The system cannot find the path specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.getInputStream(Unknown Source)
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    Exception in thread "Thread-4" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)What went wrong? and how can I make it run correct?
    Thanks,
    Nathan Pinno

    JavaQuote.class is not where your HTML says it is. That is at the relative URL "/demo/quote/".

  • I need help with the conditional build tag option RoboHelp 10

    I need help with the conditional build tag option. I want to apply CBT to content in a topic. I looked at the Help topics and believed that I applied the feature correctly. Howver, it is not working as desired. In the 2nd sentence below I want the text highlighted in blue to only appear for the printed output and the text printed in purple to only appear for the .htm /online output. Please help.
    There are common tasks used to manage the folders in the Navigator and the folders
    in the BBS Folders Viewer Grid. For more information on these common tasks see Help
    and Support in Success Enterprise. click the links below.

    Hi there
    Using tagging is a two part process.
    Part One
    You create and apply the tags to the information you wish to control.
    Part Two
    You create a Build Expression that is used when you generate your output. The Build Expression typically reads something like: NOT Tag1 (or whatever your tag name is)
    Then when you generate and use the Build Expression, the information tagged is not included in the build.
    Cheers... Rick

  • I need help with the iPad Remote app to connect to apple TV 2

    I need help with the iPad Remote app to connect to apple TV 2 I have the app already on my ipad and when I open it only shows my itunes library and not the small black Apple TV 2 icon! How do i fix this and i know it's something 

    Get the manual at http://manuals.info.apple.com/en_US/AppleTV_SetupGuide.pdf
     Cheers, Tom

  • I need help with the photo stream. Everytime I try to open it on my PC it says photo stream is unable and I have tried everuthing to enable it but it doesn't work. Any help, please?

    I need help with the photo stream. Everytime I try to open it on my PC it says photo stream is unable and I have tried everuthing to enable it but it doesn't work. Any help, please?

    Freezing, or crashing?
    ID on the Mac can produce reports that may (or may not) prove helpful in diagnosing the problem. I suspect this is something not directly related to InDesign, and maybe not to any of the Adobe apps directly since you seem to be having a problem in more than one. That often inidcates a problem at the system level.
    Nevertheless, it won't hurt to try to gather the reports. You'll find driections for how to generate them, and to post them on Pastebin.com (then put a link to them here) so we can see what's going on at Adobe Forums: InDesign CS5.5 Not Responding
    Do you happen to run a font manager? If so, which one, and waht version?

  • Need help with the session state value items.

    I need help with the session state value items.
    Trigger is created (on After delete, insert action) on table A.
    When insert in table B at least one row, then trigger update value to 'Y'
    in table A.
    When delete all rows from a table B,, then trigger update value to 'N'
    in table A.
    In detail report changes are visible, but the trigger replacement value is not set in session value.
    How can I implement this?

    You'll have to create a process which runs after your database update process that does a query and loads the result into your page item.
    For example
    SELECT YN_COLUMN
    FROM My_TABLE
    INTO My_Page_Item
    WHERE Key_value = My_Page_Item_Holding_Key_ValueThe DML process will only return key values after updating, such as an ID primary key updated by a sequence in a trigger.
    If the value is showing in a report, make sure the report refreshes on reload of the page.
    Edited by: Bob37 on Dec 6, 2011 10:36 AM

  • Need Help with the Clone Tool

    I need help with the clone tool, in that when I clone (let's say grass as example),  the new cloned area does NOT come out as sharp as the area selected.  It comes out much softer and somewhat blurred.  I have the opacity and flow both set at 100%.  This is very frustrating since I can not get a true clone.

    what "tip" do you have selected? where are you sampling from ( found in top option bar) ALSO make sure MODE is normal
    http://helpx.adobe.com/photoshop/using/retouching-repairing-images.html
    -janelle

  • I need Help with the dynamic link feature in CS3

    Hi I was wondering if anyone could help me with an issue I am having? I have the adobe cs3 master collection. Having watched tutorials on the dynamic link feature my version seems not to have the same options as those I have viewed. I wish to send my premiere video creation to encore using dynamic link, however when I click "file" and then "adobe dynamic link" the only options available are about "adobe after effects". I can export to encore however I am only alloowed to export one premiere sequence to one new encore file, I cannot create an encore file and import several premiere sequence into the same encore project. That means currently I can only have an encore creation with one premiere sequence in it, and I have no adobe dynamic link. Any help anyone could offer would be greatly appreciated.

    Thanks very much for that guys but my premiere media encoder only lets me export as: MPEG1, MPEG1-VCD, MPEG2, MPEG2 blu-ray, MPEG2-DVD, MPEG2-SVCD, H.264, H.264 blu-ray, Adobe Flash Video, Quicktime, Real Media, Windows Media. Are any of these formats DV AVI?
    Am I to export my videos direct to encore or save them elsewhere (e.g desktop). It seems that I cannot export sequences from different premiere projects to the same encore project.
    Sorry if any of these questions seem obvious, I am just new to premiere and keen to do things right from the off.
    Many thanks again guys.
    Date: Tue, 24 Nov 2009 19:32:47 -0700
    From: [email protected]
    To: [email protected]
    Subject: I need Help with the dynamic link feature in CS3
    Harm is correct.  For SD DVD, exporting as a DV AVI file from Pr will give you good results.  Encore's Automatic Transcoding will give you maximum quality for the available disc space.
    -Jeff
    >

  • HT4528 Hi  I need help with the volume on my phone  even on speaker i can barely hear who I am speaking with

    Hi I need help with the volume on my phone, even on speaker I can barely hear who I am speaking with . How do I make it louder /

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/ts1630
    -Griff W.

  • I am needing help with the final steps in restoring my iPod Touch 5

    I need help with the final steps in restoring my iPod

    I was told that the iPod would automatically go to restore mode when connected to wifi. It did not do that

  • I need help with the Web Application Certificate

    Greets,
    The title says it all really. I need help with the Web Application Certificate.
    I've followed the instructions from here:
    https://www.novell.com/documentation....html#b13qz9rn
    I can get as far as item 3.c
    3. Getting Your Certificate Officially Signed
    C. Select the self-signed certificate, then click File > Certification Request > Import CA Reply.
    I can get the certificate in to the Filr appliance but from there I'm stuck.
    Any help much appreciated.

    Originally Posted by bentinker
    Greets,
    The title says it all really. I need help with the Web Application Certificate.
    I've followed the instructions from here:
    https://www.novell.com/documentation....html#b13qz9rn
    I can get as far as item 3.c
    ok when you have you self signed certificate and you requested an official certificate with the corresponding CSR then you just need to go back to the digital certificates console. To import the official certificate, select the self signed certificate, then click File > Certification Request > Import CA Reply. Then a new windows pops out to select the certificate from your trusted authority from your local hard disk. Find the file (.cer worked for me) and click ok. As soon as you do this in the digital certificates console the self signed certificate will change the information that now it is officially signed. Look at the second column and you should see the name of your trusted authority under "issue from"
    I personally had a lot of issues across all platforms. Especially Firefox and Chrome for android. Needed to pack all the root cert, intermediate cert and signed cert into one file and import as CA reply. Not even sure if this is correct now. But at least it works.

  • I still need help with the Dictionary for my Nokia...

    I still need help with the Dictionary for my Nokia 6680...
    Here's the error message I get when trying to open dictionary...
    "Dictionary word information missing. Install word database."
    Can someone please provide me a link the where I could download this dictionary for free?
    Thanks!
    DON'T HIT KIDS... THEY HAVE GUNS NOW.

    oops, im sorry, i didnt realised i've already submitted it
    DON'T HIT KIDS... THEY HAVE GUNS NOW.

  • HT5312 i need help with the security questions is there some way to get you to remind me what they were from e-mail or other wise

    I need help with the security Questions is there some way to get you to remember them by e-mail of other wise

    Read the HT5312 page that you posted from, it has instructions for how to reset them i.e. if you have a rescue email address set up on your account then steps 1 to 5 half-way down that page should give you a reset link.
    If you don't have a rescue email address then you will need to contact iTunes Support / Apple in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

Maybe you are looking for