Need some real serious help guys

Pasty, I redeem a ITunes card into my account and I wanted to buy somthing and then a secruity question thing came up and I don't remember the answers
Is there a way to reset them....please

If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then the steps half-way down this page should let you reset them : http://support.apple.com/kb/HT5312
If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you will need to contact iTunes Support / Apple 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 those steps on the HT5312 link above to add a rescue email address for potential future use.

Similar Messages

  • Need some real serious help with continuing disk problem

    The story started when my internal hard drive, in my 15" lap top, gave up the ghost, and I bought a new replacement:
    Seagate Momentus 5400.2 ST9120821A - hard drive - 120 GB - ATA-100
    Manufacturer: Seagate Technology Inc.
    Specs: 120 GB, 12.5 ms, 5400 rpm, 8 MB, ATA-100, 2.5" x 1/8H
    I installed it in my laptop (model M8859LL/A) which I booted with my Tiger installation DVD. However, the Disk Utility Program did not pickup my new hard drive. I also booted with my DiskWarrior program and it doesn't see the disk either.
    I got in touch with Seagate. The rep. there says it could be a bad disk, but asked if my laptop was compatible with the drive. He asked me to listen for disk noise when I turned on the computer -- there was none. That convinced him that the disk was defective.
    Subsequently I found that the hard drive was indeed compatible with my laptop and that the second one was defective, so I sent that one back and ordered a replacement.
    I just installed the replacement disk, However it too is not be seen by either Disk Warrior or Disk Utility. What now???
    Dan Page
    Maui, Hawaii

    Hi Dan,
    If, as Matthew suggested, you have the HD connector properly seated and it still doesn't work, the HD cable/connector itself may be damaged and need to be replaced. They are relatively inexpensive, so that would be my next troubleshooting step. You should be able to find one at one of the following:
    pbfixit.com
    pbparts.com
    powerbookmedic.com
    dttservice.com
    powerbooktech.com
    powerbookresq.com
    powerbookguy.com
    powerbookrepairshop.com
    Good luck.

  • Remember me.....well i need some real help now....:)

    Hello guys,i hope that u remember me...if not i hope that u ll help me anyway....
    well,i had an assignment for my university...i posted it and u told to start reading several books and try to write some code....
    i came up with the following code:
    import java.util.Random;
    import java.util.*;
    import java.text.DateFormat;
    class Account {
         double initbal;
         double deposit;
         double withdraw;
    //Account constructor
    Account() {
         initbal=0;
         deposit=0;
         withdraw=0;
    //method for calculating the balance
    double balance() {
         return (initbal+deposit)-withdraw;
    class BankAccount {     
         double initbal;
         private double deposit;
         private double withdraw;
         public static void main(String args[]) {
         Account Dimitris=new Account();               //call the constructor
         CurrentAccount Over=new CurrentAccount();
    try {     //exception added for fault parameters
         Dimitris.initbal=Double.parseDouble(args[0]);     //string parsing into a double
         Dimitris.deposit=Double.parseDouble(args[1]);     //string parsing into a double
         Dimitris.withdraw=Double.parseDouble(args[2]);     //string parsing into a double
         } catch (ArrayIndexOutOfBoundsException e) {
              System.out.println("You must enter three values!!");
         } catch (NumberFormatException e) {
              System.out.println("Only numbers are allowed!!");
         double AvlOvr;
         double bal;
         bal=Dimitris.balance();          //method called
         System.out.println("Initial balance is: "+Dimitris.initbal);
         System.out.println("Deposit Amount is: "+Dimitris.deposit);
         System.out.println("Withdraw amount is: "+Dimitris.withdraw);
         System.out.println("Overdraft limit is: "+Over.AvlOvr);
    if (withdraw>(initbal+deposit)) {
         System.out.println("Insufficient Funds");
    else
         System.out.println("Balance is: "+bal);
         System.out.println("Available Funds is: "+(bal+Over.AvlOvr));
         //display the date and time for the current locale     
         Date date=new Date();
         DateFormat dateFormatter=DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT);
         System.out.println(dateFormatter.format(date));
    class CurrentAccount extends BankAccount {
    private float accId;
    double AvlOvr;
    CurrentAccount() {
    double ovdr;
    ovdr=100;
    AvlOvr=ovdr;
    interface Personal {
    void Deposit ();
    void Withdraw ();
    the thing is that i need some help cause i cant find some sollutions....
    i d like to give to the user a random id....
    then at the CurrentAccount subclass i d like to add a Username to the user.Then Level 2 worries me as well.....I ll post u my assignment so u can have a look....If u could help me with Level 2 sollution and the thing that i told u before i d be grateful.......
    by the way..i hope that u all guys have nice holidays!!!
    Here is the assignment:
    JAVA LAB ASSIGNMENT � B241
    Bank Account
    Level 1
    Create a bank account that reads in the following information about a single customer
    account:
    Initial balance
    Deposit amount
    Withdraw amount
    Current Date
    Give the account holder a random account id number.
    Display error messages if the number of parameters is incorrect or negative parameters are
    entered.
    Verify that the amount being withdrawn is available (i.e. make sure that the initial balance +
    deposit amount is greater than or equal to the amount being withdrawn).
    Calculate the balance amount in the account after the transaction has been completed.
    Tasks:
    - Create a BankAccount class, which defines a bank account
    - Use command line arguments to read in the account information
    - The customer account values are private and accessible only through the
    BankAccount class
    - Use the file, InsufficientFundsException.java given to you (Location:
    /global_ro/rekha/B241/assignment) to create an Exception class called
    InsufficientFundsException.class that throws an exception if an
    InsufficientFundsException occurs in your BankAccount class. Make the necessary
    changes to the file if you feel the need to do so.
    - Print out the following information:
    2
    account holder�s id
    balance amount
    amount being withdrawn
    the current date and time
    (Hint: this will occur when the amount withdrawn is more than the total amount in the
    account. Your withdraw method throws the InsufficientFundsException exception which
    should be caught in your main program from where you are calling the withdraw method).
    Subclass the BankAccount class for the specifics of a CurrentAccount class that adds an
    additional field to the already existing information:
    User name
    The account balance and account id values should still be private and now accessible only
    through the CurrentAccount subclass.
    Allow the CurrentAccount class to provide overdraft protection of up to �100.
    Task:
    - Incorporate the additional functionalities into your initial program and print out the
    values as before.
    ********************************END OF LEVEL 1 **************************
    Level 2
    Add the following functionalities to your Level 1 program.
    Define an interface named Personal, consisting of two methods:
    Deposit
    Withdraw
    Read in the account information specified in Level 1 for more than one user through the
    command line parameters and display appropriate error messages as before.
    Calculate the balance amount in each account after the transaction has been completed.
    Tasks:
    - Increment the account id each time a customer is added (For instance, if the first
    customer id is 100, the next id should be 101 and so on).
    - Implement the Personal interface in the BankAccount class.
    - Print out the customer information for all customers as you did in Level 1.
    *****************************END OF LEVEL 2*****************************
    Level 3
    Extend the above features to add some more personal information about the customer such
    as:
    a. Name: surname first name
    b. Date of birth: day/month/year
    c. Address: street
    Town
    Postcode
    d. Phone: home number work number
    e. E-mail: e-mail address
    Customer�s data is stored in a file. It is retrieved from the file when the bank is opened and
    stored in a memory buffer. The memory buffer is updated after every transaction. The
    contents of the memory buffer are written into the file when the bank is closed.
    Design a data management structure of the bank with several customers. The bank performs
    �deposit� and �withdraw� transactions by using Java I/O streams.
    Use the SimpleClient.java and SimpleServer.java files (Location:
    /global_ro/rekha/B241/assignment) as a base for creating your own Client and Server
    windows. Make the necessary changes to the files for them to work within your programs.
    Tasks:
    - Create a non-graphical user interface to be able to
    o enter customer�s data
    o display customer�s personal and account data after every transaction
    - Write a JAVA program to read and write customers data from/to a file.
    - Create a client � server networking environment using Java�s networking capabilities
    such that data is entered through the server window and displayed by the client in the
    client window.

    Ela re si k eimaste k sinonomatoi...anyway...could you pleaze help me with my assignment...my other problem is that i've writen some more code for the 3rd part where it says add some more fields for the customers.I save them in a file and i restore them but i dont know how can i call them when the bank is opened....here's the rest of the code....
    import java.io.*;
    public class UserInfo {
    public static void main(String[] args)
    throws IOException {
         String k,l,m,n,o,p,q,r;
    BufferedReader stdin = new BufferedReader(
    new InputStreamReader(System.in));
    System.out.print("First name:");
         k=stdin.readLine();
         System.out.print("Last name:");
         l=stdin.readLine();
         System.out.print("D.O.B:");
         m=stdin.readLine();
         System.out.print("Address:");
         n=stdin.readLine();
         System.out.print("Town:");
         o=stdin.readLine();
         System.out.print("Postcode:");
         p=stdin.readLine();
         System.out.print("Phone:");
         q=stdin.readLine();
         System.out.print("E-Mail:");
         r=stdin.readLine();
         try {
    DataOutputStream out = new DataOutputStream(
    new BufferedOutputStream(
    new FileOutputStream("Data.txt")));
         out.writeUTF(k);
         out.writeUTF(l);
         out.writeUTF(m);
         out.writeUTF(n);
         out.writeUTF(o);
         out.writeUTF(p);
         out.writeUTF(q);
         out.writeUTF(r);
         out.close();
         DataInputStream in = new DataInputStream(
    new BufferedInputStream(
    new FileInputStream("Data.txt")));
         System.out.println(in.readUTF());
    System.out.println(in.readUTF());
         System.out.println(in.readUTF());
         System.out.println(in.readUTF());
         System.out.println(in.readUTF());
         System.out.println(in.readUTF());
         System.out.println(in.readUTF());
         System.out.println(in.readUTF());
         } catch (NumberFormatException e) {
         System.out.println(e);
    }

  • I need some one to help me build a theme and a app for my restaurant

    Ok so I have been working on a theme for my restaurant and I also want to do an app. For it I'm looking for someone that is willing to work on the with me I have no time but I got the theme pretty much done just need it to be able to get it to my phone and go from there
    please hit me up if you want to make some cash and help me do this
    From Kevin

    Hi wildtoad and welcome to the BlackBerry Support Community Forums.
    You can download the BlackBerry Theme Studio to create your theme and load it to your BlackBerry.
    To download the Theme Studio visit http://na.blackberry.com/eng/services/themestudio/
    Thank you and have a great day!
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • I need some all around help...

    I'm brand new at linux, and I have been using Windows xp for years, so I have no clue what I'm doing. I'm all installed, and it works fine, no errors, but I need some tips on doing some stuff.
    I am trying to mod my .bashrc to add color, as in the wiki, but it doesnt open the actual file. Instead, nano keeps wanting to create a new file from scratch. I went ahead and filled in a new one, but it does nothing, what do I need to do? Is the .bashrc under a different name in the directory?
    Next question... I  am using a windows laptop to do all my internet, etc stuff, and the arch box is separated from the internet. I'm using wireless, and the arch box doesn't have a card, so I cant get it on the web right now. I want to install a GUI, most likely kde, but I have no clue as to how to put stuff on the arch box. All I have availible for data transfer is a 4gb usb jump-drive, and it has all of the kde packages on it, but I'm not sure how to access them to install them.
    Aaaand...... the last question... If possible, is there a command that will list the directories of the arch box, so I can see where I'm at and where things are; I havent the foggiest idea of how this thing is layed out, or where the usb drive would be in the directories.

    Peeples Mcnasty wrote:Whenever I go to fill in the user's passwor, the box doesn't register the key-presses. It will only register non-letters. I'm still tryig to get to the bottom of it, so, until then I'm resorting to root as my login.
    Can you rephrase that? I don't really understand what you mean by register. Are you aware that password prompts in general won't echo anything? So normally, when you enter your password, nothing will change on the screen but the password you just entered is there.
    Now, if I had to create a .bashrc, where would I need to go to find out what all must go into it?
    Nothing has to go in there . You don't even have to have one, it all depends on what you want. You can put aliases in there (see man alias), define functions and environment variables, set your prompt and lots of other stuff. If you want examples you can take a look at threads like this one. Some of this stuff might be a bit overwhelming, so perhaps you should leave that alone until you have your install completed . What are you referring to when you say "Add color" ?
    Regarding your usb drive, notice that it won't be mounted automatically until you configure some kind of automount (KDE wil do that for you). Mounting means making your usb drive accessible at some directory in the filesystem. So to access your drive you do the following:
    Plug in drive
    mount /dev/sdb1 /mnt
    Your usb drive doesn't have to be sdb1, if you have multiple harddisks in your box, those usually come first, so your first harddisk is sda, the second sdb and so on.  sda1 is the first partition on the first harddisk, in most cases your usb drive will come after the disks, so if you have one harddisk your usb drive is usually sdb.
    Then you can install kde like this:
    First change to the dir with the packages, if you put them in some subdirectory just hang that behind mnt/:
    cd /mnt/
    use ls to see if they are there. If that is the case copy them into your pkgcache.
    * will choose everything in that directory, if there is something other than packages, you should choose the packages to copy by hand
    cp * /var/cache/pacman/pkg
    after that you can use pacman to install the kde group:
    pacman -S kde
    There might be some (or in case of kde probably many) dependencies which you didn't put on your usb drive. Pacman will tell you if there are. To get a list of urls to download those you can use
    pacman -Sp kde
    Good luck
    I just refreshed Regarding pacman -U, pacman -U won't install dependencies automatically and will just stop if a dependency is missing, so if you use pacman -U to install packages with dependencies you will have to resolve those by hand and install them with --asdeps.

  • OK, so I need some real help

    So, I've been given a shiny new t-mobile 8900 for xmas. It was bought from some website or other (new) so it didnt come with a sim, which was fine with me since I already have a pay as you go t-mobile (mates rates) sim i wanted to use. Now the problem is i cant access any sort of non-wifi internet connection. What do i do? Is there any kind of booster i can buy on my current sim or do i need another?

    Hi and Welcome to the Forums!
    Typically, you need a Blackberry Data Plan attached to the account of the SIM that you are using...generic data plans are usually not sufficient. What you need to do is to determine the precise services that you desire to use and then contact your carrier to find out what plan you need from them to provide you with those services.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I NEED SERIOUS HELP GUYS!!!!

    Just a few hours ago my computer was working fine, I walked away for about an hour and when I came back a file with a question mark was flashing at startup. I googled this to see if I found help and it told me to insert my Mac OS X cd, so I did and somehow I ended booting into a different startup disk.. To make the long story short, all of my documents, pictures, etc. are GONE!!! even the iphoto, microsoft word and all those programs.. If someone can please please please!! help me I would extremely appreciate it!!
    Thank you guys!

    That folder with the question mark icon means that the MacBook can't find the boot directory. That can either mean it can't find the hard drive or the hard drive data is somehow corrupted.
    Put your install DVD into the drive and reboot. As soon as you hear the boot chime, hold down the "c" key on your keyboard (or the Option key until the Install Disk shows up). That will force your MacBook to boot from the install DVD in the optical drive.
    Once it has finished booting and you are at the Install screen launch Disk Utility from the Utilities menu. Is your Hard Drive in the list on the left?
    If it is then select the First Aid Tab run Repair Disk and if that repairs any problems run it again until the green OK appears and then run Repair Permissions.
    If your hard drive isn’t recognized in Disk Utility then your hard drive is probably dead.

  • I need some real help!

    The Ipod worked perfectly last night.I left for work this morn and turned it on .The apple logo showed up like always, but it seemed to take for ever (froze on the apple logo). So I reset it. But now it won't turn on. (battery was fully charged)So I tried to plug it in to the computer to do a restore and the computer does not pick it up. I've tried the support page at apple and the 5 step also. I'm up to date too.No noises either.

    You may still need to reset it. Be sure to do the reset with the hold switch step.
    Put the hold switch to the OFF/White position. Now toggle it ON/orange then back off again. Then press and hold both the MENU and center buttons on the iPod and hold them for a good 15 seconds or so. Your iPod should reboot starting with the Apple Logo screen.
    If it doesn't work the first time, give it a second or third go. Sometimes it takes a few tries.
    http://www.apple.com/support/ipod/five_rs/
    Patrick

  • I need some legacy OS help. Resource and File Manager stuff...

    I don't know where to find a better place to ask this and I know that it will strain your memory, but I really am in need of help.
    I am working on a Windows port of the old and now defunct SpriteWorld animation library. I used to be involved in its development when I had a Mac several years ago, and I really enjoyed toying with it. I am aware of SpriteWorld X, but I don't like C++ and I want to do this for myself.
    Anyway, the coding of the actual project will be trivial. What I need help with are the dozens of resource files that contain all of the graphics used by the examples. Since I'm doing this in Windows, I cannot simply open the resource files in ResEdit or even in code very easily. What I'm trying to do is extract the PICT and cicn resources in the files. I did find the legacy documentation on Apple's developer site and I have studied it thoroughly. However, the Resource Manager documentation leaves out a great many details and is making it nearly impossible to parse the files.
    The biggest issue that I'm having is finding the exact starting point in the file for the resource fork. What I've noticed is that there seems to be an undocumented and nearly identical header, containing the file name, creator, file type and unknown data of unknown length, in all of the files that I've viewed. Since this header is not documented, it makes it very difficult to find the start of the fork. I'm guessing that it is used by the Finder?
    I was able to manually find the start(I think...), since a copy resource fork header is 30 bytes prior to the first resource type listed in the file. Per the documentation, this is merely a copy and the actual header is further up in the file. I've found that, but many times the offsets are wrong. All of the offsets start at the beginning of the resource fork, which unfortunately, does not start at the first byte in the file. To make it even more difficult, most of the time the real header (and thus the fork) starts 82 bytes in, but not always and there doesn't seem to be any reason for the discrepancy. Even when I'm sure of the location of the start of the fork, the offsets in the header often times will point to random data in the file instead of the correct locations. I don't know if the files are corrupted or if there is more information that I'm missing.
    Without being able to decipher the resource fork structure, there is no way that I can write the utility I need to extract the data. I know that I'm asking for help with VERY old data, but I'm not sure where else to turn. If I could afford it, I would just go out and buy a Mac. Unfortunately, that is not an option. I've searched just about as far as I can with Google, but to no avail. I wouldn't post this, but I've simply exhausted all other avenues. I sure hope someone can shed some light on this matter.
    Message was edited by: Mark_Speir

    If you get really stuck, you might find a helpful soul that might be willing to generate screen captures or otherwise de-rez the files for you. I've never gotten around to figuring out a way to dump the graphics directly from the resource forks, however, I do happen to have several legacy Macs still running on my home network, as well as some earlier OSX versions.
    Currently:
    Powerbook G4 (2), OSX 10.5.8, and 10.4.11
    iMac G4, OSX 10.3.9
    PowerMac 8600, OS 9.2
    PowerMac 8500 (2), OS 8.x, OSX 10.1 Server
    Mac IIci, OS 8.x or 7.x (have to check)
    Mac LC III, OS 7.x or 8.x (currently powerd off, but can be resurrected, used for terminal emulator
    (I've made use of these myself to get screen captures, and extract sound resources via ResEdit or Resorcerer for my own port of some legacy software).

  • Really need some !!HELP!! ALMOST 6 MONTHS WITH OUT BURNING A CD

    I've posted before about my problem but but i still have not gotten an answer. This might be my last atempt to get any help before i end up taking my laptop to a repair shop so here we go.
    I've recently ran a diagnostic with i tunes and here it is:
    Microsoft Windows XP Home Edition Service Pack 2 (Build 2600)
    TOSHIBA Satellite A75
    iTunes 6.0.1.3
    CD Driver 2.0.4.3
    CD Driver DLL 2.0.3.2
    LowerFilters: PxHelp20 (2.0.0.0), drvmcdb (1.0.0.1), ASAPIW2K (6.0.2.0), Pfc (2.5.0.204), MxlW2k (1.1.0.120), sscdbhk5 (1.0.0.1), Cdr4_xp (6.2.0.132),
    UpperFilters: CDRDRV (6.0.0.0), Cdralw2k (6.2.0.132), GEARAspiWDM (2.0.4.3),
    Video Driver: ATI MOBILITY RADEON 9000 IGP\ATI MOBILITY RADEON 9000 IGP
    IDE\DiskFUJITSUMHU2100AT______________________00000008
    Could not get bus type for CD, 50. Problem with installation of drive in Windows.
    , Bus Address [0,0]
    IDE\CdRomMATSHITADVD-RAM_UJ-820S________________1.50___, Bus Type ATA, Bus Address [0,0]
    SCSI\CdRomVOBID__InstantDrive_CD_14_, Bus Type SCSI, Bus Address [0,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    Current user is administrator.
    D: MATSHITA DVD-RAM UJ-820S, Rev 1.50
    Audio CD in drive.
    Found 11 songs on CD, playing time 33:12 on Audio CD.
    Track 1, start time 00:02:00
    Track 2, start time 02:20:15
    Track 3, start time 05:07:42
    Track 4, start time 06:13:12
    Track 5, start time 08:31:30
    Track 6, start time 13:17:17
    Track 7, start time 17:34:35
    Track 8, start time 20:47:57
    Track 9, start time 23:22:25
    Track 10, start time 25:16:60
    Track 11, start time 28:56:22
    Audio CD reading succeeded.
    Get drive speed succeeded.
    The drive CDR speeds are: 4 8 12 16.
    The drive CDRW speeds are: 4.
    The drive DVDR speeds are: 4 8 12.
    The drive DVDRW speeds are: 4 8 12.
    E: Unsupported CD or DVD drive.
    Virtual drives can sometimes interfere with reading and writing CDs in iTunes. If this is a virtual drive and you are having problems with other drives, try uninstalling the virtual CD application.
    it apears to be something wrong with drive E but in the properties it says its working perfectly.
    Every time i try to burn a cd i get the blue screen error.
    i hade version 7 of i tunes kept getting the same thing, so i went back to 5.3 but still the same thing. It also happens when i try to burn a cd with nero, i have WMP but don't use it. so now i really hope to get an answer or i have no other choice but to take it to a repair shop. SO !!PLEASE HELP ME!!

    no problems about the delay.
    the 0x8E is reasonably generic. so let's try proceeding on two fronts.
    1st front: we'll get a minidump to the Apple Engineers for a look
    (the minidump can help identify the driver that seems to be causing the issue here.)
    To set up your machine to capture a minidump, right click on "My Computer", select "Properties", select the "Advanced" tab, select the "Startup and Recovery" Settings button, select "small memory dump" from the popup. When it crashes, look for the MiniDump file. It's usually in the folder "C:\WINDOWS\Minidump" and is called something like Mini<number>-<number>.dmp.
    Find that file and send it as an attachment to this email address.
    in the email to Roy, be sure to include the following information:
    - A link to the thread on Apple Discussions where the issue is being discussed
    - The username you are using in the thread
    - The version of iTunes you are using or trying to use
    - the version of Windows you are using (mention service packs)
    - A concise description of the issue you are seeing
    - The exact text of the error message you are seeing
    2nd front: checking on a few possibilities ourselves while waiting for feedback on the minidump
    (a) device filter conflicts: blue screens with itunes while burning can be caused by device filter conflicts (i've seen 0x8Es before in cases of conflicts with old Roxio products). so perhaps try the techniques from the following document:
    iTunes for Windows: Troubleshooting CD issues caused by device filters
    (b) malware:
    malware is a known cause of 0x8Es. try downloading fresh definitions and running vigorous virus and spyware scans. if your security software providers offer them, try running online scans too. (they can sometimes pick up an infection in cases where the security software on the PC has been compromised.)
    if your security software providers don't offer online scans, try running the Symantec online virus check. (apologies in advance ... it takes an eternity to complete.)
    Symantec Security Check

  • Old Homesite user needs some CS3 customizing help

    Thanks for taking a look,
    Well I finally got CS3 after using HS5.1 for the last 7 or 10 years! It is fantastic! So far so good though it is taking some getting used to...
    I was hoping that someone could be so kind to help me with a couple things, I would be greatly appreciative to say the least.
    First, How do I customize the toolbars? I was able to add things to all the toolbars before so was wondering if there's similar customizability in Dreamweaver. I saw a favorites tab but can I add the 12 or so buttons I use alot in there and then have that as the default tab on opening?
    I used to select text and then (using a custom toolbar button/shortcut) click the div tag. I am not sure how to use the new one because it only has id or class and create new css style where I'm used to writing a style attribute/tag - (sorry if my nomenclature is off) in there myself.
    I really like the new view as you go. How do you make it so when looking in design half or full the images are not in a 'selected' type state or does that mean something?
    Lastly, I used to have a keyboard shortcut to do a number of things like blockquote and change case to upper or lower. I cannot find any of those! Where oh where (Brother Where Art Though) can they be?
    Thanks again in advance for your help!

    Hello,
    You can save a work space after setting it up or customising it to your needs: window > workpace layout > new workspace..
    On the right side, open the panel for css styles (or under window). This panel has another window for properties under it and on the statusbar of that little panel is + sign. Click on it to make a new rule. You can also right click the last css rule and then click "Edit" to go in to the css selector/properties applet or you can opt to open the css file and write the rules directly..usually you will have a tab also for the css file at the top.
    You can go to: http://www.adobe.com/designcenter/video_workshop/  ( click on products | select a title | play video )
    Adobe does not leave you up the creek without a paddle!
    zabberwan

  • Needs some advice from you guys

    I have clear the oracle sql pl sql exams but i dont know in which way i use my knowledge.usually database used as a backend what language is most suitable for its front end or what language i should learn so that i can use the sql plsql knowledge best.actually i had clear these exams by self study and dont have any advisor who can give me direction.i think you people can help me in this.its a noob kind of a question

    what language is most suitable for its front endThat would be a personal choice (of the architect/functional designer) and/or depending on whatever language/development tool is 'hot or not'.
    But it won't hurt to have (some) knowledge of JAVA and C/.NET, as they're often used in front-end applications.
    Also having sound XML, ADF, SOA and APEX knowledge is very valuable nowadays.
    what language i should learn so that i can use the sql plsql knowledge bestSQL is a language, it stands for Structured Query Language. For (Oracle-specific) directions, see:
    http://tkyte.blogspot.nl/2012/08/the-keys-to-oracle.html
    Check http://asktom.oracle.com on a regular basis to find real-life questions and answers/explanations.
    Google Steven Feuerstein (PL/SQL evangelist) and Joe Celko.
    Oh, and buy the books they wrote... ;)
    And ofcourse, participate, be active in the community.
    Be willing to invest a lot of time into all of this.

  • Need Some Brain Storming Help WIth a Long Distance Mail Problem

    I would really appreciate anyones input on this...
    Here's the situation. I'm trying to solve a mail problem for my somewhat elderly Mother. The biggest problem is that she is 3800 miles away from me and nowhere near any sort of help or tech support (Rural Alaska) so I'm trying to sort this out over the phone.
    Anyway, she somehow screwed up her mail. All of a sudden the mail she sends comes from MY account! It shows up in my mailbox as having been sent by me. She is using an iBook G4 that I gave her a year or so ago and I suppose it's possible that somehow my mail account was on there somewhere (?). It's like she accidentally switched users or something.
    I have sent her Email to her normal .Mac email address and it does indeed show up in her mailbox when I check the web mail. She is running Tiger and I'm running Leopard.
    I just can't for the life of me figure out what she would have done and I'm hoping that someone might have an idea. She says that the font sizes all changed as well which leads me to believe that she is indeed using my old settings and mail account.
    Once again, any help really appreciated. I'm heading out of town for a week and she really depends on her email. I'm trying desperately to get this solved before I leave. Thanks!

    It looks like Mail has reset its preferences, including the account settings. What follows is a more thorough explanation that should allow you to determine whether that’s really what happened and what your options would be in that case. I’ll provide the full instructions I usually provide to solve this problem when having direct access to the computer, even though you may find some of them not practical or unnecessary.
    Under some circumstances (e.g. lack of available disk space, filesystem corruption, repeated crashes), Mail may discard the current ~/Library/Preferences/com.apple.mail.plist preferences file and create a new one. This file is where all the account settings are stored. As a result, all the non-.Mac account settings are lost. If you have a .Mac account, however, that account would appear to have been preserved because Mail would set it up automatically using the System Preferences > .Mac settings — but may result in a different .Mac account being automatically set up if for some reason the System Preferences > .Mac settings differ from what until then were the Mail account settings...
    What’s the capacity and space available on the startup disk? Take a look at the comments about disk space in the following article, in case they apply to this case:
    Problems from insufficient RAM and free hard disk space
    Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what’s it all about?
    After having fixed all the filesystem issues, if any, and ensuring that there’s enough space available on the startup disk (a few GB, plus the space needed to make a backup copy of the Mail folder), quit Mail if it’s running, and make a backup copy of the ~/Library/Mail folder (e.g. by dragging it to the Desktop while holding the Option (Alt) key down), just in case something else goes wrong while trying to solve the problem. This folder is where all your mail is stored.
    There are at least three ways to restore the account settings:
    (1) Restore ~/Library/Preferences/com.apple.mail.plist from a backup if you have one. Mail shouldn’t be running while you do this.
    (2) Set up your mail accounts again (you may want to quit Mail and trash the new com.apple.mail.plist first to start over). If given the option to import existing mailboxes or something like that, don’t. Just enter the account information and Mail will automagically rediscover the data in ~/Library/Mail/ when done. You’ll also have to re-configure some of the Mail > Preferences settings. For spam-related security reasons, the first thing you should do is go to Preferences > Viewing and disable Display remote images in HTML messages if it’s enabled.
    (3) Mail may have renamed the old preferences file to com.apple.mail.plist.saved. If that’s the case, you may try trashing the new com.apple.mail.plist and renaming the old com.apple.mail.plist.saved back to com.apple.mail.plist. Again, be sure Mail isn’t running while doing this. Given the circumstances, there exists the possibility that com.apple.mail.plist.saved became corrupt, but that often is not the case and the settings can usually be restored by just renaming the file back to com.apple.mail.plist.
    As a side effect of re-creating com.apple.mail.plist, Mail might rename Outbox (which is where messages waiting to be sent are stored) to Delivered. The name of that mailbox is actually a misnomer, as it would contain messages (if any) that couldn’t be delivered for some reason. You can delete that mailbox if you wish.
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. That is, ~/Library is the Library folder within the user’s home folder, i.e. /Users/username/Library.

  • I-Trigue 5600. need some proper, serious wiring advice not the (useless) pretty pictures

    Ansd what a disappontment the I-Trigue 5600 doumentaton s and teh product is notceably excluded from some areas of your web site.
    I am trying to output from 2 x RCA audio out connectors on my Sony KDL-V32A2U LCD TV. The diagrams iin theQuick Start Guide are unclear. How do I best connect so that I can upmix to 5.1
    Please help. It's so frustrating!!

    Lovepeaceguru,
    If your TV is using RCA connector, you need to get a dual RCA to stereo minijack(3.5mm) cable. Have the RCA end connected to your TV and stereo minijack end to the subwoofer audio input(FRONT). Next, have the switch behind the subwoofer slide to 2CH->5.1 upmix.
    Jason

  • Need some basic Thread Help

    Hello everyone,
    I've recently been working on a game project with network capabilities.
    I need to be able to send data to a client and vice-versa for both a client and a host.
    Say whenever a player moves a character it should send the new coords, etc to the other person
    I have all the networking through a Host and Client class done already, with methods like sendData(String[] data) and getData(). What I need is some sort of update thread in the main program to send this data without stopping the flow of the program.
    I was thinking maybe a inner class inside the main program which extends a thread but I'm not sure how to implement that.
    Please help if you can. Thanks.
    P.S - Would maybe making the Host and Client classes extend Thread work too?
    (Then I can do all the threading inside there instead)

    dekenx wrote:
    Hello everyone,
    I've recently been working on a game project with network capabilities.
    I need to be able to send data to a client and vice-versa for both a client and a host.
    Say whenever a player moves a character it should send the new coords, etc to the other person
    I have all the networking through a Host and Client class done already, with methods like sendData(String[] data) and getData(). What I need is some sort of update thread in the main program to send this data without stopping the flow of the program.Sounds like a producer/consumer pattern. You produce move data, put it on a queue, and go on with the game. Meanwhile, a consumer thread reads from the queue of move data and pushes it over the network to the other side.
    I was thinking maybe a inner class inside the main program which extends a thread but I'm not sure how to implement that.
    Please help if you can. Thanks.
    P.S - Would maybe making the Host and Client classes extend Thread work too?
    (Then I can do all the threading inside there instead)The inner class or deciding which class to have extend Thread are implementation details you shouldn't be thinking about until you have a good understanding of the overall approach.
    Having said that, you should almost never extend Thread, since you're not creating a specialized kind of Thread class. You're just creating a task to be run in a separate thread, so implement Runnable. Or use an Executor from the java.util.concurrent package.
    I would also probably not use an inner class for this.

Maybe you are looking for