ActionScript Class wont work ?

Hi all,
Probbally being stupid but only Just started Flex, If I
create a ActionScript project my class runs fine and draws a red
circle on screen. If I try creating a MXML project, create a
separate file for the ActionScript and then call it from the main
file it doesnt draw the circle ?
code for circle is :>
quote:
package {
import flash.display.Sprite;
public class animation2 extends Sprite
public function animation2()
graphics.beginFill(0xff0000);
graphics.drawEllipse(100, 100, 100, 100);
graphics.endFill();
Can anyone tell me what I have to do to be able to call/run
this through a MXML project ?
Cheers

This code seems to work, but for some reason the circle is
smaller than if it is drawn in an AS app. I hope someone can shed
light on this:
package components {
import mx.core.UIComponent;
import flash.display.Sprite;
public class ASCircle1 extends UIComponent
public function ASCircle1()
graphics.beginFill(0xff0000);
graphics.drawEllipse(100, 100, 100, 100);
graphics.endFill();
<?xml version="1.0"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
initialize="init()">
<mx:Script>
<![CDATA[
import components.ASCircle1;
private var myCircle:ASCircle1;
private function init():void {
myCircle = new ASCircle1();
addChild(myCircle);
]]>
</mx:Script>
</mx:Application>

Similar Messages

  • Mapping existing actionscript class (mx.collections.SortField) to java

    Hi,
    I would like to map the existing SortField actionscript class on a SortField class on my java backend.
    Is it possible to map an actionscript class from standard flex API to a java class? If so, how?
    Thanks

    Yeah, there is something awry with your mapped classes.  You don't use the java source files to map your classes, you use AS3
    classes that are designated to which classes they map to on the backend.  Observe..
    package shared.servicevos
       import flash.events.EventDispatcher;
       import flash.events.IEventDispatcher;
       [Bindable]
       [RemoteClass(alias="amf.ShopperVO")]
       public class ShopperVO
           public var shopperId:int;
           public var shopperLocation:String;
           public var shopDate:Date;
           public var shopperAddress:Address
    If you notice the the metadata beginning with "RemoteClass", I am telling Flex "when you see an object that comes in with this type "alias" it is should be made into a ShopperVO".  On the backend, I have a folder with a directory structure of /amf and it contains a ShopperVO.java class.
    P.S This isn't exactly the setup I am working with cause I am using php, but the ideas are the same.

  • Firefox is refusing to start. It says that my profile is missing, which it appears to be. Yet the way in which one goes about creating a new profile wont' work either. Anybody have a bloody clue what's going on and how to fix it?

    Firefox is refusing to start. It says that my profile is missing, which it appears to be. Yet the way in which one goes about creating a new profile wont' work either. Anybody have a bloody clue what's going on and how to fix it?

    AIR give you classes to detect an on-line or off-line status, it's in 
    this way for the sake of flexibility for instance what happens if you 
    only what to sync  data only on Saturdays at 2 am? If it were done 
    automatically that'll be a problem. And it isn't so complicated.
    You can download the SalesBuilder from AIR examples at www.adobe.com/devnet/air
      it's an application that does everything you have in mind.
    I don't understand your question abou file types.
    An AIR app can communicate with almost every backend served tech 
    CF, .Net, PHP, RoR.
    Sincerely,
    Michael
    El 14/05/2009, a las 8:48, IrishAIRMax <[email protected]> escribió:
    >
    I have to say that I'm loving the picture! well cool!
    >
    Sorry but I don't quiet understand. I thought AIR did the updating 
    automatically? I didn't realise the developer had to program the 
    logic of how the updates take place?  Is it a case in most AIR apps 
    that when online the app updates the server and once every intervel 
    (of however long) the local SQLite DB is synced to the more updated 
    server DB. Then when offline the developer has to sense that the app 
    is offline and store a log manually of the updates without any help 
    from AIR itself, and then update once it comes online again?
    >
    Can AIR link to anything more than a database on the server side 
    apart from webservices, for example .as files or any other file types?
    >
    What type of server is a Flex app stored on, is it a specific Adobe 
    server rather than a Java or .NET server?
    >
    Thank you so much for your last comment!
    IrishAIRMax
    >

  • Flex Builder stops compile new ActionScript classes

    Hello,
    Does anyone knows what could cause Flex Builder 3.4 stops compiling NEW ActionScript classes? I have been working on Flex project for a while, we have some MXML and .as files (less than 200). This morning Flex Builder suddenly stopped detecting errors in new as classes, but not so for older classes. Thanks and appreciate your help.
    - Weiping

    Are your new classes referenced from the old code? Mxmlc employs a questionable form of "as-needed" linking, so classes that are not referenced from the main application are not even compiled. This referencing requirement is recursive; that is, any classes that are to be included have to be referenced from the main application, or from classes referenced by the main application, or from classes referenced by classes referenced by the main application, and so on. But if your new classes are not referenced at all from the old code, they will be ignored.

  • Buttons after stop(); wont work; how can I FIX this

    Buttons after stop code (vidPlayer.stop();) wont work.
    I figured out the stop code needed to stop my videos from playing when you click another button, but with my stop code being on top of my "gotandStop("label")" my buttons doesn't perform that function. I take the vidPlayer.stop(); off the buttons the buttons work fine, but then my videos wont stop playing when I click another button.  Help, how I can get my buttons back working and still stop my videos from continuely playing when another button is clicked.
    Below is my code:
    btn3.addEventListener (MouseEvent.Click, clickHandler3);
    function clickHandler3 (e:MouseEvent):void{
         vidPlayer.stop();
         gotoAndStop ("services");
    With the code exactly the way it is; when I like on the services button it wont work (unles I start from  the about btn, which houses the vidPlayer) I want to beable to go into my website and click any button and it work, not go to the about button first an then to any other button.  Please HELP BE ON THIS SAME PROBLEM FOR WEEKS.  IAM A BEGINNER ASWHILE SO DUMB IT DOWN PLEASE.

    make sure vidPlayer is declared in frame 1 of your main timeline:
    var vidPlayer:<class>;  // use the correct class here.  for example, FLVPlayback
    you can then use:
    btn3.addEventListener (MouseEvent.Click, clickHandler3);
    function clickHandler3 (e:MouseEvent):void{
    if(vidPlayer!=null){
         vidPlayer.stop();
         gotoAndStop ("services");

  • WebService and ActionScript class

    Hi,
    I am trying to create an actionscript class to use it in my
    mxml component.
    I have the floowing code which works perfectly.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application creationComplete="HTTPdecision.send()"
    xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="870">
    <mx:Script>
    <![CDATA[
    import mx.rpc.events.ResultEvent;
    import com.sourcepulse.com.dtRulesClass;
    private var endURI:XML;
    private var URI:XMLList;
    private function setURI(event:ResultEvent):void
    endURI = event.result as XML;
    URI = new XMLList(endURI.endpoint.webservice.location);
    Test.endpointURI= URI.toString();
    ]]>
    </mx:Script>
    <mx:HTTPService id="HTTPdecision"
    url="../XML/endpointURI.xml" resultFormat="e4x"
    result="setURI(event)" />
    <mx:WebService service="amazon" port="amazonSOAP"
    id="Test"
    wsdl="
    http://localhost:9081/ezbuyer/amazon/services/amazonSOAP/wsdl/amazon.wsdl"
    >
    <mx:operation name="getISBNDetails">
    <mx:request xmlns="">
    <isbnSearchRequest>
    <bookName>{txtBookName.text}</bookName>
    <category>{txtCategory.text}</category>
    </isbnSearchRequest>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    <mx:Panel x="100" y="100" width="600" height="500"
    layout="absolute"
    title="Amazon WebService">
    <mx:VBox height="400">
    <mx:VBox>
    <mx:Form width="400" height="145" autoLayout="true">
    <mx:FormHeading label="Specify the following:"/>
    <mx:FormItem width="307" label="BookName :">
    <mx:TextInput id="txtBookName"/>
    </mx:FormItem>
    <mx:FormItem width="308" label="Category :">
    <mx:TextInput id="txtCategory" />
    </mx:FormItem>
    <mx:FormItem width="312">
    <mx:Button label="Test"
    click="Test.getISBNDetails.send()"/>
    </mx:FormItem>
    </mx:Form>
    </mx:VBox>
    <mx:VBox>
    <mx:Form width="400" height="122" autoLayout="true">
    <mx:FormHeading label="Book Details:"/>
    <mx:FormItem width="307" label="ISBN :">
    <mx:Text text="{Test.getISBNDetails.lastResult.isbn}"
    />
    </mx:FormItem>
    <mx:FormItem width="308" label="Author :">
    <mx:Text text="{Test.getISBNDetails.lastResult.author}"
    />
    </mx:FormItem>
    </mx:Form>
    </mx:VBox>
    </mx:VBox>
    </mx:Panel>
    </mx:Application>
    Now instead of binding the input from the textboxes directly
    as in the above code
    <mx:request xmlns="">
    <isbnSearchRequest>
    <bookName>{txtBookName.text}</bookName>
    <category>{txtCategory.text}</category>
    </isbnSearchRequest>
    </mx:request>
    I created an actionscript class
    package com.xxxx.com
    public class simpleTest
    //Instance Variables
    private var bookName:String;
    private var category:String;
    public function simpleTest()
    function getBookName():String {
    return bookName;
    function setBookName(bookName:String):Void {
    this.bookName = bookName;
    function getCategory():String {
    return category;
    function setCategory(category:String):Void {
    this.category = category;
    How can I use this ActionScript class to use in
    <bookName>{txtBookName.text}</bookName>.
    Thanks in advance.

    I think you're close to achieving what you want... first I
    would change your getter and setter methods just a bit to make them
    properties. Second add the [Bindable] meta tag in front of one of
    each of the group of properties (i.e. you don't need it in front of
    both the get and set method, just one of them).
    i.e.
    [Bindable]
    public function get category():String {
    return category;
    public function set category(value:String):void{
    category = value;
    then in your mxml you can "bind" to each property you've
    defined in the class. so if you create a new instance of your
    simpleTest class called "test" you could do the following:
    <mx:Label text="{test.category}" />

  • Code wont work when trying to upload image!

    My Code wont work when I try to upload an image to mysql. (Field in mysql is BLOB)
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>insert</title>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <?php require_once('Connections/drama_database.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO databaseimage (name, image) VALUES (%s, %s)",
                           GetSQLValueString($_POST['name'], "text"),
                           GetSQLValueString($_POST['image'], "double"));
      mysql_select_db($database_drama_database, $drama_database);
      $Result1 = mysql_query($insertSQL, $drama_database) or die(mysql_error());
    mysql_select_db($database_drama_database, $drama_database);
    $query_image = "SELECT * FROM databaseimage";
    $image = mysql_query($query_image, $drama_database) or die(mysql_error());
    $row_image = mysql_fetch_assoc($image);
    $totalRows_image = mysql_num_rows($image);
    ?>
    </head>
    <body>
    <form action="<?php echo $editFormAction; ?>" method="POST" enctype="multipart/form-data" name="form1" id="form1">
    Name:  <span id="sprytextfield1">
      <label for="name"></label>
      <input type="text" name="name" id="name" />
      <span class="textfieldRequiredMsg">A value is required.</span></span>
      <p>
        <label for="image"></label>
        <input type="file" name="image" id="image" />
      </p>
      <p>
        <input type="submit" name="Upload" id="Upload" value="Upload" />
      </p>
      <input type="hidden" name="MM_insert" value="form1" />
    </form>
    <script type="text/javascript">
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1");
    </script>
    </body>
    </html>
    <?php
    mysql_free_result($image);
    ?>
    Any help would be very much appreciated!

    OK, that tutorial is different than what I assume you want. I suspect you want the ability to have users upload images and store the metadata of those images in a database, correct? That tutorial only shows how to upload to a specific location so the image can
    be displayed in an iframe.
    Search for "php file upload scripts" to see how to upload to a file system and store the metadata in the database.
    >and no, mostly i have used the dreamweaver features to avoid it as much as possible
    As you are seeing, DW code is very limited in what it can do. It also generates code that is not up to current standards,and is very difficult to work with if you need to modify it. Basically, it's junk. Forget it and learn how to read and write code. There are tons on tutorials on how to get started with PHP.  DW Server behaviors only seem like a time saver in the beginning. In the end, you'll end up wasting more time using them than learning how to code yourself.

  • Click action wont work in Edge Animate

    I dont know why but my click action wont work with my button. Any help is appreciated.
    * Adobe Edge Animate Composition Actions
    * Edit this file with caution, being careful to preserve
    * function signatures and comments starting with 'Edge' to maintain the
    * ability to interact with these actions from within Adobe Edge Animate
    (function($, Edge, compId){
    var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes
       //Edge symbol: 'stage'
       (function(symbolName) {
          Symbol.bindElementAction(compId, symbolName, "${_button}", "click", function(sym, e) {
             // insert code for mouse click here
             // Navigate to a new URL in the current window
             // (replace "_self" with appropriate target attribute)
             window.open("http://www.sunbgi.com/thesundifference.html", "_self");
          //Edge binding end
       })("stage");
       //Edge symbol end:'stage'
    })(jQuery, AdobeEdge, "EDGE-711263155");

    I think its a z-order issue, the button is not even getting a click event. I triggered the click event from the console on your site manually using: $("#Stage_buttonCopy").click(); and that works correctly.
    Also, I tried setting the z-index to 10 (just for testing) - $("#Stage_buttonCopy").css("z-index", 10); then the click events are fired. You can check your composition and assign an appropriate z-index as required.
    You might have also noticed that the mouse pointer is not changing even when you hover over the "Learn More" button even after setting - cursor: pointer. It indicates that the mouse events are not reaching the element.
    -Dharmendra

  • ReCAPTCHA wont work...

    I asked this on the reCAPTCHA forum as well.
    But because of the many people here i see more chance that i get my awnser here. (reCAPTCHA forum is a bit slow)
    I did a simple test to look if reCAPTCHA works.
    These following 2 PHP files; "form" and "verify" should work but dont.
    The reCap img shows but the verification goes wrong.
    It always result in this text:
    The reCAPTCHA wasn't entered correctly. Go back and try it again.
    (reCAPTCHA said: )
    This is my php test form (only recaptcha);
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
    www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <form method="post" action="verify.php">
       <?php
         require_once('recaptchalib.php');
         $publickey = "xXxXxXxXxXxXxXxXx";
         echo recaptcha_get_html($publickey);
       ?>
    </form>
    </body>
    </html>
    And this the verify.php :
    <?php
    require_once('recaptchalib.php');
    $privatekey = "xXxXxXxXxXxXxXxXx";
    $response = recaptcha_check_answer ($privatekey,
                                   $_SERVER["REMOTE_ADDR"],
                                   $_POST["recaptcha_challenge_field"],
                                   $_POST["recaptcha_response_field"]);
    if (!$resp->is_valid) {
       // What happens when the CAPTCHA was entered incorrectly
       die ("The reCAPTCHA wasn't entered correctly. Go back and try it
    again." .
            "(reCAPTCHA said: " . $resp->error . ")");
    ?>
    The problem are the 2 php files above. They wont work and i dont know
    why.
    Its the basic code from the reCAP site.
    It should work but it doesnt.
    HELP!
    (I need to keep those 2 files seperated. An example from reCAPTCHA wich came with the library file works, but has both functions in the same file. And its different from the code i got from the recap site. The weirdest thing is that im not the only one using this code but probably one of the few who dont get it working.)

    I went round and round with reCAPTCHA scripts too. I could get the form to work, but the validation was non existent. When I got the validation to work, all of the form data disappeared.
    Unfortunately, my school schedule has PHP fundamentals set for a July start, and I needed to kill spambots in January so I went with a form service.
    http://www.mycontactform.com/index.php
    $29.99 a year for unlimited forms on multiple domains and 5,000 emails per month per form.
    Once I get through the PHP class I'll do this on my own, but for now, these guys pulled my hiney out of the water.

  • After Update USB Devices wont work anymore

    Hello,
    after my first Arch installation on my ASUS UX31 I had 2 problems after makeing updates:
    1. My USB Devices wont work anymore, but I belive they are still recognized because they are displayes via "lsusb -t":
    2-1.1:1.0: No such file or directory
    2-1.2:1.0: No such file or directory
    2-1.4:1.0: No such file or directory
    1-1.5:1.0: No such file or directory
    1-1.5:1.1: No such file or directory
    1-1.7:1.0: No such file or directory
    1-1.8:1.0: No such file or directory
    1-1.8:1.1: No such file or directory
    /: Bus 03.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/2p, 5000M
    /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/2p, 480M
    |__ Port 1: Dev 6, If 0, Class=hub, Driver=hub/4p, 480M
    |__ Port 1: Dev 7, If 0, Class=HID, Driver=, 1.5M
    |__ Port 2: Dev 8, If 0, Class=HID, Driver=, 1.5M
    |__ Port 4: Dev 9, If 0, Class=vend., Driver=, 480M
    /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ehci_hcd/2p, 480M
    |__ Port 1: Dev 2, If 0, Class=hub, Driver=hub/8p, 480M
    |__ Port 5: Dev 3, If 0, Class='bInterfaceClass 0x0e not yet handled', Driver=, 480M
    |__ Port 5: Dev 3, If 1, Class='bInterfaceClass 0x0e not yet handled', Driver=, 480M
    |__ Port 7: Dev 4, If 0, Class=vend., Driver=, 480M
    |__ Port 8: Dev 5, If 0, Class='bInterfaceClass 0xe0 not yet handled', Driver=, 12M
    |__ Port 8: Dev 5, If 1, Class='bInterfaceClass 0xe0 not yet handled', Driver=, 12M
    I need these Devices because they are my only network access via the Asix USB to Ethernet Adapter.
    After the installation I have compiled and used the drives for the Asis adapter.
    The both other devices are my USB Keyboard and Mouse.
    2. My other problem is, that after the update my resulution of my console is very weak, this is just bad but not a real problem, I can live with that.
    Thanks in advance for helping me

    on plugin
    May 4 21:07:06 localhost kernel: [ 49.202535] usb 2-1.2: new high speed USB device number 10 using ehci_hcd
    May 4 21:07:06 localhost kernel: [ 49.287984] hub 2-1.2:1.0: USB hub found
    May 4 21:07:06 localhost kernel: [ 49.288333] hub 2-1.2:1.0: 4 ports detected
    May 4 21:07:06 localhost kernel: [ 49.555951] usb 2-1.2.1: new low speed USB device number 11 using ehci_hcd
    May 4 21:07:07 localhost kernel: [ 49.712506] usb 2-1.2.2: new low speed USB device number 12 using ehci_hcd
    May 4 21:07:07 localhost kernel: [ 49.865853] usb 2-1.2.4: new high speed USB device number 13 using ehci_hcd
    unplug:
    May 4 21:06:57 localhost kernel: [ 40.059117] usb 2-1.2: USB disconnect, device number 3
    May 4 21:06:57 localhost kernel: [ 40.059128] usb 2-1.2.1: USB disconnect, device number 7
    May 4 21:06:57 localhost kernel: [ 40.059269] usb 2-1.2.2: USB disconnect, device number 8
    May 4 21:06:57 localhost kernel: [ 40.059342] usb 2-1.2.4: USB disconnect, device number 9
    I rebooted several times of course and it was no kernel update.

  • Remoting in Actionscript Class

    I am working on a large project with .NET remoting and I am
    having a problem with the Netconnection debugger. I have moved all
    my remoting calls into an Actionscript class file so that I can
    keep my timeline simple and clean. Everything is working fine. My
    only issue is that I am getting no messages in the NetConnection
    Debugger anymore. I have the Netdebug.initialize statement in my
    class constructor.
    Is there something else I need to do to get messages to
    bubble out of my class to the Netconnection Debugger?

    Ok, I solved the problem. Apparently you have to have the
    NetDebug Remoting Classes Object on the main timeline or your
    remoting calls won't post messages to the Netconnection debugger.
    So even though I am importing the libraries in my class and initing
    the NetDebug object, without the actual compiled clip on the stage
    somewhere I can't get messages.

  • Accessing MXML ArrayCollection from ActionScript class?

    I have an MXML file that has an arraycollection for my Tree
    component. I am overriding the updateDisplayList function in order
    to add lines to all of my nodes in the Tree.. however I can't seem
    to figure out how to access that ArrayCollection from inside the
    actionscript class?
    I have tried the methods used to pass variables between two
    MXML files (like a popup window - which I have used in the past and
    it works great).
    My actionscript class code is almost identical to this
    example here:
    http://www.iepl.net/treeControlSample/treeControlSample.html
    In the above example the data is static, but my data is going
    to change sometimes and I need access to the entire dataProvider
    (ArrayCollection) in order to make the lines work right.. this has
    been very frustrating for me! :)
    if anyone knows of a better way to achieve gettign lines to
    the siblings in a Tree.. please let me know!
    Any help would be super duper awesome!

    I have found the solution to this. My problem was similar to
    the one cheftimo was having in this post:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=60&catid=585&threadid =1367784&enterthread=y
    The answer is to import mx.core.Application into the
    component you are trying to access the variable from and then call
    it by using 'Application.application.<var name>'
    Thanks to Greg Lafrance!

  • My apple is not activating,Asking for Apple ID &p.word, I have entered the apple ID which i was using to download all apps,but it wont work, Now system is saying that your apple Id is wrong, My question is Can there be two apple IDs?

    My apple is not activating,Asking for Apple ID &p.word, I have entered the apple ID which i was using to download all apps,but it wont work, Now system is saying that your apple Id is wrong, My question is Can there be two apple IDs? My apple ID is my Yahoo mail it self, but not able to log in to  Icloud, Can any body guide, Why, I can not.

    Hi dip_kinu,
    I apologize, I'm a bit unclear on exactly what device you are trying to set up and what is happening when you try to do so. If you are having issues remembering your Apple ID, or feel like you may have set up multiple Apple ID's, you may find the following page helpful:
    Apple - My Apple ID: Find your Apple ID
    https://iforgot.apple.com/appleid
    Regards,
    - Brenden

  • Ipod is recognised under my computer but wont work in itunes,

    My ipod worked fine on my old computer i dont think i had the most recent itunes but everything was working fine i had windows XP. Now i have a new laptop with windows 7 and my ipod wont work in itunes, i have uninstalled and reinstalled itunes 9 and even tried itunes 8 but nothing seemed to help the situation, i know its not the cable as it shows under my computer, i have taken all my music off the ipod because it asked to reformat it i have tried that twice, i get the message your ipod needs to be reformatted for windows i click ok and it opens itunes but nothing happens, iv downloaded the 64 bit itunes as it doesnt like the 32 bit one. Iv ran a diagnostic test on my ipod but cant get past the firewire detect and usb detect maybe this is because i dont have itunes installed at the moment, any suggestions please?

    I had the same problem with my iPod classic. I got a new laptop that has windows 7 and downloaded itunes 9. As soon as itunes 9 was downloaded my ipod would not be recognised anymore. I tried everything like reformatting etc and nothing was helping. What I did was downloaded itunes 7 and my ipod was then recognised. Your problem may be that your software on your ipod is not up to date enough to run on itunes 9 (that was the problem with mine) and may also not be up to date enough to run on itunes 8. Try itunes 7 (or if that doesn't work even itunes 6) then once your ipod is recognised go to the summary page on your ipod and update your software to the current version. Once i did this my ipod was recognised on itunes 9 when i plugged it in and worked perfectly. Hope this helps!

  • How can i restore my iphone which was erased by iCloud?? I got my phone back but it wont work when i connect to iTunes.

    How can i restore my iphone which was erased by iCloud?? I got my phone back but it wont work when i connect to iTunes.

    The following assumes you've been backing up to icloud all along.
    http://support.apple.com/kb/HT1766?viewlocale=en_US&locale=en_US
    Go to Settings>General>Reset and tap Erase All Content and Settings.  This will erase your device.  Then you will go through the setup screens again as you did when your device was new, and when given the option, select Restore from iCloud Backup.
    Let us know if this method does not work.

Maybe you are looking for

  • Hi,how can i transport objects from one server to other like (Dev To Qty)

    Hi Sir/madam,    Can u explain how can i transport objects from one server to other like (Development To Quality To Production). Regards, Vishali.

  • How to find out which album(s) a photo is in?

    Apart from the right-mouse click and then "remove from album ...".

  • E-Mail shows up on alert, but not under mail

    First time owner of an iPhone...I have the 4S.  I setup my personal and work e-mail.  The "front page" shows 100 new e-mails, but when I go into mail it is on the "welcome to mail" page.  I found one thread that suggests going into Settings...Mail, C

  • How to know the current tab

    Hi everyone, Does annyone knows if there is an indicator that indicate you the current tab where you are working in? I want my BSP to do different action depending on wich tab the user is in. I'm working in the BSP CRMD_BUS2000126 for the activities.

  • How to copy, rather than export, a Counter output?

    Hi, In DAQmx (in C++), using an E-Series board, I have exported a Counter output to an RTSI line. This works fine. However, perhaps to be expected, the signal disappears from the Ctr0 output. For debugging and logging purposes, I would like to retain