Check this... help me pleaseeeeeee

hi,
test this please, my prob is when i draw a rectangle, they go under the "dessin" panel btu when you presse where you makle the rectangle, you know that is there.. please help me, i dont know what to do.... To draw rectangle just press the JRadioButton rectangle and click 2 time to a different point...
thx to help me
sorry for my english
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.border.*;
import java.util.*;
//les types de formes 1=filloval , 2=rectangle
public class DragD extends JApplet
    //debut declaration
    boolean bpointRect = false;
    int pointRect1[] = {0,0};
    int pointRect2[] = {0,0};
    int xValue=-10, yValue=-10;
    Container pan;
    JPanel config, dessin, info;
    JRadioButton rbRect, rbMainLever;
    JLabel lPxy;
    JMenu mAbout;
    JMenuItem mIAbout;
    JMenuBar menubar;
    //debut fct init
    public void init()
        getContentPane().setSize(500,500);
        //set menu
        mAbout = new JMenu("About");
        mAbout.setMnemonic('A');
        mIAbout = new JMenuItem("About");
        mIAbout.setMnemonic('b');
        menubar = new JMenuBar();
        mAbout.add(mIAbout);
        menubar.add(mAbout);
        this.setJMenuBar(menubar);
        //fin set menu
        config = new JPanel();
        dessin = new JPanel();
        info = new JPanel();
        rbRect = new JRadioButton("Rectangle");
        rbMainLever = new JRadioButton("Main Lever", true);
        lPxy = new JLabel("0,0");
        config.add(rbMainLever);
        config.add(rbRect);
        info.add(lPxy);
        //colorer les panel
        config.setBackground(Color.lightGray);
        dessin.setBackground(Color.white);
        info.setBackground(Color.blue);
        dessin.setLayout(null);
        //add les JPanel
        getContentPane().add(config,"North");
        getContentPane().add(dessin,"Center");
        getContentPane().add(info,"South");
        //creer des forme
        dessin.add(new JP(1,4,4,40,40));
        dessin.add(new JP(2,4,4,40,40));
        //set le border
        menubar.setBorder(new MatteBorder(1,1,1,1,Color.black));
        config.setBorder(new MatteBorder(1,1,1,1,Color.black));
        dessin.setBorder(new MatteBorder(1,1,1,1,Color.black));
        info.setBorder(new MatteBorder(1,1,1,1,Color.black));
        //debut listener on mouse dragged
        dessin.addMouseMotionListener(
            new MouseMotionListener(){
                public void mouseDragged(MouseEvent event)
                    xValue=event.getX();
                    yValue=event.getY();
                    positionDessin(event);
                public void mouseMoved(MouseEvent event)
                    positionDessin(event);
        //fin listener
        //debut listener on mouse clicked
        dessin.addMouseListener(
            new MouseListener(){
                public void mouseClicked(MouseEvent event)
                    xValue=event.getX();
                    yValue=event.getY();
                    //Graphics g;
                    //g = dessin.getGraphics();
                    if (xValue != -10)
                        //dessine les rectangle
                        if (rbRect.isSelected())
                            creerRectangle();
                        //debut dessin a main lever
                        else
                            // g.fillOval(xValue,yValue,4,4);
                     //setContentPane(getContentPane(pan));
                //declaration vide
                public void mousePressed(MouseEvent event){}
                public void mouseReleased(MouseEvent event){}
                public void mouseEntered(MouseEvent event){}
                public void mouseExited(MouseEvent event)
                    lPxy.setText("0,0");
       //fin listener
       //debut action listener rbrect
       rbRect.addActionListener(
        new ActionListener(){
            public void actionPerformed(ActionEvent event)
                if (rbMainLever.isSelected())
                    rbMainLever.setSelected(false);
       //fin listener
       //debut action listener rbrect
       rbMainLever.addActionListener(
        new ActionListener(){
            public void actionPerformed(ActionEvent event)
                if (rbRect.isSelected())
                    rbRect.setSelected(false);
       //fin listener
       //debut listener du menu about
       mIAbout.addActionListener(
        new ActionListener(){
            public void actionPerformed(ActionEvent event)
                JOptionPane.showMessageDialog(null,"Fr�d�ric Harper for 123Certification");
       //fin listener
    //fin de la fct init
    //debut fct creerrectangle
    public void creerRectangle()
        if (bpointRect == false)
            pointRect1[0] = xValue;
            pointRect1[1] = yValue;
            bpointRect = true;
        else
            pointRect2[0] = xValue;
            pointRect2[1] = yValue;
            bpointRect = false;
            if ((pointRect1[0] < pointRect2[0]) & (pointRect1[1] < pointRect2[1]))
                dessin.add(new JP(2,pointRect1[0],pointRect1[1],pointRect2[0]-pointRect1[0],pointRect2[1]-pointRect1[1]),0);
            else
                if ((pointRect1[0] > pointRect2[0]) & (pointRect1[1] < pointRect2[1]))
                    dessin.add(new JP(2,pointRect2[0],pointRect1[1],pointRect1[0]-pointRect2[0],pointRect2[1]-pointRect1[1]),0);
                else
                    //fct pas
                    if ((pointRect1[0] > pointRect2[0]) & (pointRect1[1] > pointRect2[1]))
                        dessin.add(new JP(2,pointRect2[0],pointRect2[1],pointRect1[0]-pointRect2[0],pointRect1[1]-pointRect2[1]),0);  
                    else
                        if ((pointRect1[0] < pointRect2[0]) & (pointRect1[1] > pointRect2[1]))
                            dessin.add(new JP(2,pointRect1[0],pointRect2[1],pointRect2[0]-pointRect1[0],pointRect1[1]-pointRect2[1]),0);
            //remettre la sauvegarde des pts a zero apres avoir dessiner un rectangle
            pointRect1[0] = 0;
            pointRect1[1] = 0;
            pointRect2[0] = 0;
            pointRect2[1] = 0;   
    //fin fct rectangle
    //debut fct position dessin
    public void positionDessin(MouseEvent event)
        int x,y;
        String sx, sy;
        x = event.getX();
        y = event.getY();
        sx = Integer.toString(x);
        sy = Integer.toString(y);
        lPxy.setText(sx + "," + sy);
    //fin fct position dessin
    //debut de la classe interne JP
    class JP extends JComponent implements MouseListener, MouseMotionListener
        int x;
        int y;
        int w;
        int h;
        int type;
        int mx,my;
        Cursor movC = new Cursor(Cursor.MOVE_CURSOR);
        Cursor defC = new Cursor(Cursor.DEFAULT_CURSOR);
        //debut constructeur JP
        public JP(int i,int xx, int yy, int ww, int hh)
            x=xx;
            y=yy;
            w=ww;
            h=hh;
            type = i;
            setBounds(x,y,w,h);
            addMouseListener(this);
            addMouseMotionListener(this);
        //fin du constructeur
        //debut de la fct paintComponent
        public void paintComponent(Graphics g)
            if (type == 1)
                g.fillOval(x,y,w,h);
            if (type == 2)
                g.fillRect(x,y,w,h);
        //fin de la fct paintComponent
        //debut du listener moussePressed
        public void mousePressed(MouseEvent m)
            mx = m.getX();
            my = m.getY();
            setBorder(new MatteBorder(1,1,1,1,Color.red));
        //fin du listener
        //debut du listener mousseDragged
        public void mouseDragged(MouseEvent m)
            if (getCursor() != movC)
                setCursor(movC);
            setLocation(getX()+m.getX()-mx,getY()+m.getY()-my);
        //fin du listener
        //dedut du listener mousseReleased
        public void mouseReleased(MouseEvent m)
            setBorder(null);
            setCursor(defC);
        //fin du listener
        public void mouseEntered(MouseEvent m){}
        public void mouseExited(MouseEvent m){}
        public void mouseMoved(MouseEvent m){}
        public void mouseClicked(MouseEvent m){}
    //fin de la classe interne
}thx a lot

man you're a god!!!!
now that work almost perfect except one thing, the JPanel only appear to me when i click where it is!!! do you have a answer for thaht???
thx a lot
The coordinates you get in JP's paintComponent() are
based on 'dessin', but the Graphics is
based on a JP so you are drawing outside the JP
components visible area.
The quick fix is to change the fillRect() and
fillOval() calls in JP.paintComponent() to be
fillRect(0, 0, w, h) and fillOval(0, 0, w, h) (replace
x and y with 0s)
There are other problems too - JP's constructor should
start with
super();and his paintComponent() should start with
super.paintComponent(g);JP's paintComponent() should be something like:
public void paintComponent(Graphics g) {
super.paintComponent(g);
if (type == 1) {
g.fillOval(0, 0, w, h);
else
if (type == 2) {
g.fillRect(0, 0, w, h);

Similar Messages

  • Help me check this coding!

    The following is my coding which is my assignment. i doubt i have logic problem. So, help me check this about multi-thread.
    if it's wrong which you find, help me correct.I have thought this several days, but till now, i have no any good idea to correct.
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class WebServer extends Thread{
    public WebServer(int port,int timeOut,int maxUser){
    public void run(){
    for (int i=0;i<=maxUser;i++){
    Thread t=new Thread(new HTTPRequest());
    t.start();
    while(true){
    Socket connectionSocket;
    try{
    connectionSocket=server_Socket.accept();
    HTTPRequest.processRequest(connectionSocket);
    }catch (IOException e){}
    public static void main(String args[]) throws Exception{
    class HTTPRequest implements Runnable{
    private static List pool= new LinkedList();
    public static void processRequest(Socket v_socket) throws IOException{
    synchronized(pool){
    pool.add(pool.size(),v_socket);
    pool.notifyAll();
    public synchronized void run(){
    while(true){
    socket=null;
    synchronized (pool){
    while(pool.isEmpty()){
    try{
    pool.wait();
    }catch(InterruptedException e){}
    socket=(Socket)pool.remove(0);
    try{
    }catch (IOException e){}
    finally {
    try{
    }catch (IOException e){}

    You don't have a specific problem right?
    I don't see anything terribly wrong with it.
    Other stuff:
    Why is WebServer a thread? Will there be more than one?
    Use notify() not notifyAll(). You are only adding one object so only one thread needs to service it.
    The run() loop for HTTPRequest does not exit after serving a socket right. Hard to tell from your posting without code blocks.
    Don't forget to close the sockets.

  • I think I solved my time changing issues- hope this helps

    Hey everyone, I think I've had some success with my time changing issues. I originally posted this to another user as a follow up to her question, but I'm reposting it here. Hope it helps:
    "msteinny,
    So i went to the apple store to meet with an apple genius to ask him why my phone's time kept moving up 1 hour everytime I synced my phone. Well he said that he's never seen this problem before, and after a trying a reset and restore he let me exchange my phone. The problem is that when I went to sync my new phone the problem still persisted. They told me it was probably something to do with my computer and its time zone settings.
    So I get home and click on my computers clock in the bottom right hand corner to bring up the date and time properties and sure enought my time is correct, the date is correct and the time zone is correct (Eastern Daylight Time). So I look through the different tabs (Date & Time, Time Zone, Internet Time). The first thing I tried to do was to change where my computer syncs its internet time. It was originaly set on NIST time. I then switched it to Windows time, but this didn't do anything. My clock would still change when I synced to itunes. The next thing I tried was fideling around in the Time Zone tabs. I noticed that the box that says "Automatically adjust clock for daylight savings" was unchecked, so I checked it and my computer's time jumped an hour ahead. So I left the box checked but moved my clock one hour back (to the correct time), clicked on apply and left it at that. I synced my iPhone and voila! The time didn't change! It stayed on the correct time! To to make a long story short, make sure that you computer's clock is set on "automatically adjust clock for daylight savings changes, make sure your time zone is correct, and that the time is right when that box is checked. I hope this helps you. I'm glad I got a new phone out of the deal;)
    Chris P. "

    As I mentioned in my post, whenever I checked that box the time would be incorrect. It would move up an hour. I've messed with this along time ago, way before I got my iphone. I think this had something to do with the daylight savings change that was implemented this year or last year. I dont remember if I never tried correcting it before, or if I couldn't, but this time I didn't have any problems correcting it. Anyway, since I couldn't correct it back then, I just left the box uncheck and decided that I would change the time manually when the next time change occurs. But it seems to work fine now so all is well.

  • Introducing Apple Recommends, Manage Subscriptions, and This Helped Me

    Now, it’s easier than ever to find great answers, manage the content you care about, and say thanks to helpful community members.
    Find great answers in record time
    With Apple Recommends, Community Specialists will recommend posts that provide helpful, clear, and relevant information. If a thread has recommended replies, you’ll see them right below the original question, so you don’t have to read an entire conversation to get the answers you need.
    Apple Recommends is designed to complement “This Solved My Question”, not replace it. When you create a thread, you can always mark a post as Solved, even after a Specialist has recommended it.
    Still have more to say? Threads with Recommended answers won’t be locked, so you can continue the conversation even if the question is answered.
    Apple Recommends also lets you earn reputation points for sharing your knowledge. If a Specialist recommends your post, you will receive 5 points in addition to any points you receive from other community members.
    Manage the content you care about
    With Manage Subscriptions, in addition to seeing and managing your subscriptions to content threads and communities, you can now see and manage which members you are following, and see which members are following you. 
    To access the People tab in the new Manage Subscriptions area, log in with your Apple ID, click your username, and then click “Manage Subscriptions.”
    Each of the tabs displays a list of people, content, or communities you're following. If you see a thread, person, or community you no longer wish to follow, click Unfollow to unsubscribe from future updates.
    Want to see the latest posts from a favorite community member? Click the People tab at the top of the page and then click "Find more people to follow". Here you can browse a list of all members, or use the search field to find specific community members.
    To learn more about subscriptions and how Follow, Unfollow, and auto-following work, see Learn how to manage your subscriptions.
    Say thanks and help others find great content
    Did you find a post that helped you?
    Now anyone can click "This helped me" to say thanks to helpful members. When several people mark the same post, it will earn a gold star and appear at the top of the discussion, so it’s easier for others to find. The poster will also earn five reputation points for a job well done.
    You can click “This helped me” to applaud others for sharing great answers, even if you don't have the question yourself. Just be sure to check the answer for accuracy before marking it.
    To learn more, see Award points, level up, and earn new privileges
    We hope you'll enjoy these fun new way to interact in the community.
    This thread was created for the purpose of announcing this new feature, so it is closed to replies.  If you have any questions about how to manage your subscriptions, please create a post in the Using Apple Support Communities community.
    Best Regards,
    Mandy

    Howdy GeoCo et al
    I sort of agree with this new "Helpie-ette" deal. I wonder why while at this portion of the UX they didn't address the ongoing issue of the "irrevocable nature " of the OP awards of the traditional Green Stamp and Gold Star - I have made the mistake (once) but I see the silliest things marked Solved frequently. THAT is bad for business in that it gives false visual info and false statistical results.
    We'll see... BTW, the [People] TAB itself is the only new thing (the CONTROL in the TAB bar) - the URL has always been alive and well if one knew to add " /people "

  • Error in Code?-PlZ Check This

    Hai,
    We are getting an error in this code.We are beginners in Flex.
    Can anyone help us?
    This is our code....
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()">
    <mx:Script>
        <![CDATA[
            import flash.media.Camera;
            import flash.media.Microphone;
            private function init():void
                cam.dataProvider=Camera.names;
                mic.dataProvider=Microphone.names;
            private function send():void
                //var camera:Camera=Camera.getCamera();
                var micro:Microphone=Microphone.getMicrophone();
                micro.addEventListener(StatusEvent.STATUS, this.onMicStatus);
                private function onMicstatus(event:StatusEvent):void
                    if(event.code == "Microphone.Unmuted")
                        trace("Microphone access allowed");
                    else if(event.code == "Microphone.Muted")
                        trace("Microphone access denied");
        ]]>
    </mx:Script>
        <mx:Panel x="265" y="50" width="294" height="200" layout="absolute">
            <mx:VideoDisplay x="0" y="0" width="274" height="160"/>
        </mx:Panel>
        <mx:Button x="381.5" y="314" label="Start" click="send()"/>
        <mx:Text x="281" y="24" text="Username" id="uname"/>
        <mx:TextArea x="351" y="24" height="18" width="150"/>
        <mx:Text x="281" y="260" text="Camera" width="62"/>
        <mx:ComboBox x="351" y="258" width="191" id="cam"></mx:ComboBox>
        <mx:Label x="273" y="286" text="microphone"/>
        <mx:ComboBox x="351" y="284" width="191" id="mic"></mx:ComboBox>
    </mx:Application>
    ERROR:-
    1013: The private attribute may be used only on class property definitions.    videovoice/src    videovoice.mxml    line 23    1267425378537    662

    First of all, check Permit Debugging in publish settings so you can at least reference a line number. It's not very realistic to post 150 lines of code, and say guys can you check this.
    Anyway from a cursory glance it looks like you only create 27 bricks:
    for (var i=0; i<9; i++)
    for (var j=0; j<3; j++)
    bricks = new brick(i,j);
    Brick_Array.push(bricks);
    And then later you do this:
    for (var k=0; k<100; k++)
    if (Ball.hitTestObject(Brick_Array[k]))
    You don't have 100 bricks in Brick_Array.
    Also - as a matter of convention variables names should not have the first letter capitalized - that is for class naming.

  • WHY DOES MY MAC BOOK PRO SHUT OFF ON ME? SO FAR THE INFO I GOT 4 IT IS A MAC OS X VERSION 10.7.3 THE PROCESSOR IS 2.4 GHZ INTEL CORE 2 DUO MEMORY IS 2 GB 667MHZ DDR2 SDRAM I DON'T KNOW HOW OLD IT IS BECAUSE I BOUGHT IT USED SORRY I HOPE THIS HELPS THANK Y

    WHY DOES MY MAC BOOK PRO SHUT OFF ON ME? SO FAR THE INFO I GOT 4 IT IS A MAC OS X VERSION 10.7.3 THE PROCESSOR IS 2.4 GHZ INTEL CORE 2 DUO MEMORY IS 2 GB 667MHZ DDR2 SDRAM I DON'T KNOW HOW OLD IT IS BECAUSE I BOUGHT IT USED SORRY I HOPE THIS HELPS THANK YOU

    Sounds to me like you may have gotten a machine with hardware issues, but it's hard to say.  It will shut down if it gets too hot, but that's not a normal occurrence.  I have never seen a MacBook Pro shut down due to heat, even after lengthy 3D gaming sessions where the fans are running fast and the bottom of the machine is unpleasant to touch.
    First thing I would try to do is reset the SMC.  If that doesn't help, erase the hard drive and reinstall the system from scratch, which you should always do with a used machine anyway.
    If a fresh system doesn't help, you'll need to get it checked out by Apple.
    Edit: Oh, and sig is absolutely right...  please don't post in all caps!  It's very irritating.

  • After renaming my MAC hard drive, Acrobat, Illustrator and Bridge fail to launch. Acrobat returns the error message "An internal error occurred". I've checked this out and it seems related to user permissions. The version is Acrobat X. My machine has mult

    After renaming my MAC hard drive, Acrobat, Illustrator and Bridge fail to launch. Acrobat returns the error message "An internal error occurred". I've checked this out and it seems related to user permissions. The version is Acrobat X. My machine has multiple user accounts. Any help would be appreciated. I renamed the drive to its original name but to no effect. RR

    I resolved the issue.
    The problem is indeed a permissions issue with the Adobe Application Support folder.
    First, in MAC OS Lion the ~/Library/ folder is hidden by default. You must unhide it in order to proceed. (if it is already visible in your ~/User/ folder, proceed to Step 4.)
    Next launch the Terminal application.
    At the command line, paste the following command line: chflags nohidden ~/Library/
    Go to /Users/youruserid/Library/Application Support/Adobe
    Get info on the ~/Adobe folder and reset your permissions to read/write and apply to all enclosed folders
    Problem solved. RR

  • HT1918 I can not buy money in the game "i am mt: card batte". please check and help me as soon as possible

    I can not buy money in the game "i am mt: card batte". please check and help me as soon as possible

    Most of the people on here, including myself, are fellow users - you are not talking to iTunes Support here.
    If you are getting a message to contact iTunes support then you can do so via this page and ask them for help : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    If it's a different problem ... ?

  • Check this first for Mac-ABS-PC setup

    Anyone with wireless network setup problems.... one thing to check first, before configuring a Windows PC to connect to an Airport network. This is how it works for Snow ABS and OSX 10.3.8. I don't know if it's the same for Tiger.
    Start with the Mac side.
    Make sure your Airport network is on and working. Open the Airport Admin Utility, click Configure. Click Show all settings. Open the Access Control tab. Check to see if you have restricted access to specific Macs on your network.
    If you have restricted access to specific machines, your Windows PC will not be able to connect to the network when you try and set up the connection from the PC side. It is easy to forget this little detail, especially if you set up your ABS network a while ago.
    In Access Control, delete all networked machines listed (click-select a machine in the list and click the - button to the right of the list). Click the Update button at bottom of window, wait till A Admin Utility updates.
    Next, click the Password padlock icon in the Admin Utility menu bar. Copy down the 13 digit hex key that is displayed.
    Now you can switch to the PC, and follow instructions such as iFelix provides to get the PC to find and connect to the network.
    Once the PC has connected successfully, open the (your network) Connection Status window, click on Support tab, and the Details button. You will see the physical address of the PC listed. Note it down.
    As iFelix says, you can use this physical address in the Aiport Admin Utility. Go back to a networked Mac, open Aiport Admin > Configure > Show all settings > Access Control. Using the + button, add your Macs back into the list, and add the PC using the physical address you noted down. Click the Update button. Your network will restrict access to the listed machines.
    I didn't have to disable either Mac or Windows firewalls during this procedure.
    Hope this helps
    Ken

    Henry, seems to me cracking filters or WEP is a secondary security issue. Most of us just want to get our network to work, after which we may have the luxury of considering security issues.
    On the ABS Access Control setting, I set this when I first got the ABS, and then forgot about it. Yes, stupid of me, and maybe it is useless. But, with something new like a network, many of us don't know what we're doing or how it works. We just try to do what seem the right things, cross our fingers and hope for the best.
    It doesn't help when experts say things in ways too cryptic to understand.
    For example, you say "...simply add the MAC address of the PC to this list right from the start..."
    The vital piece of information you leave out is how we can get this MAC address for the PC before the connection to the ABS network is successfully established.
    The sad fact is we don't know how to get the MAC address "right from the start". Or even what a MAC address is (as opposed to say a Mac address). I now suspect that the "MAC address" may be the same as the "physical address", but I'm not sure even now, and my network is working.
    In my case, a setting in the Mac Airport Admin prevented the Windows PC from getting a successful connection, so Windows didn't reveal the physical address of the PC until I found what the problem was, and connected. Only then was the physical address of the PC revealed to me. At the end, not the start.
    If there is some way to extract the physical address of the PC out of it before it gets a successful connection to an ABS, it might be useful if someone would reveal the secret. It's probably quite simple, but nothing I read told me how to do it (in words I could understand). Or even that I needed to.
    Perhaps out of all this some of the step-by-step instructions can be added to (and some of the jargon clarified?), so that posts to this forum become fewer, and we'll have less hair-tearing.
    Regards
    Ken

  • I am trying, unsuccessfully, to export an iphoto smart album- 12,000 photos, no movies- (information is saying 31GB) to a brand new 32GB scandisk flash stick. A caution msg keeps saying "there is not enough space to complete this" Help!

    I am trying, unsuccessfully, to export an iphoto smart album- 12,000 photos, no movies- (information is showing 31GB total) to a brand new 32GB scandisk flash stick. A caution msg keeps saying "there is not enough space to complete this" Help!

    You need a larger drive or an external drive - they OS needs a minimum of 10GB just for normal operation so you are already experiancing degraded preformance - if yo do not get more space you will start losing data
    Moving the iPhoto library is safe and simple - quit iPhoto and drag the iPhoto library intact as a single entity to the external drive - depress the option key and launch iPhoto using the "select library" option to point to the new location on the external drive - fully test it and then trash the old library on the internal drive (test one more time prior to emptying the trash)
    And be sure that the External drive is formatted Mac OS extended (journaled) (iPhoto does not work with drives with other formats) and that it is always available prior to launching iPhoto
    And backup soon and often - having your iPhoto library on an external drive is not a backup and if you are using Time Machine you need to check and be sure that TM is backing up your external drive
    LN

  • I have downloaded a book from itunes but it wont play. It says it has downloaded and i have checked this against the store. I am stuck

    I have downloaded a book from itunes but it wont play. It says it has downloaded and i have checked this against the store.

    I've had similar issues. Turning off firewalls seems to help the download to complete properly. Otherwise, I'm not sure what the problem might be.

  • A follow up question to Introducing Apple Recommends, Manage Subscriptions, and This Helped Me

    In Introducing Apple Recommends, Manage Subscriptions, and This Helped Me it was written
    Now anyone can click "This helped me" to say thanks to helpful members. When several people mark the same post, it will earn a gold star and appear at the top of the discussion, so it’s easier for others to find. The poster will also earn five reputation points for a job well done.
    Does anyone know (or is it written anywhere) just how many is 'serveral'? Is it decided on the fly? Or does it depend on the phase of the moon?
    Will the points be awarded to the poster only once, or if say 100 people mark it as helpful will more then 5 points be awarded?
    Sounds like a really good system but it seems that a bit more thought should have gone into it, no? Or at least the explanation could be clearer.
    Ciao.
    (Another question) Can the original post (this one) get marked as helpful also? Imagine  earning points for posting :-)

    Howdy GeoCo et al
    I sort of agree with this new "Helpie-ette" deal. I wonder why while at this portion of the UX they didn't address the ongoing issue of the "irrevocable nature " of the OP awards of the traditional Green Stamp and Gold Star - I have made the mistake (once) but I see the silliest things marked Solved frequently. THAT is bad for business in that it gives false visual info and false statistical results.
    We'll see... BTW, the [People] TAB itself is the only new thing (the CONTROL in the TAB bar) - the URL has always been alive and well if one knew to add " /people "

  • While trying to run it show error message : "The application or DLL C:\Program Files\Mozilla Firefox\sqlite3.dll is not a valid Windows image. Please check this against your installation diskette

    Just updated firefox. While trying to run it show error message : "The application or DLL C:\Program Files\Mozilla Firefox\sqlite3.dll is not a valid Windows image. Please check this against your installation diskette." Tried to download and install new firefox, but it alway show that the file is corrupt
    == Today ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)

    Do a clean reinstall and download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    You can skip the step to create a new profile, that is not necessary for this issue.
    See http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • What's This Help not working for one entry in each header file

    I have a large RoboHelp project that I have imported into Version 8 from a previous version. Prior to the import into Version 8, all of the What's This Help in the project was working perfectly; now, post-import, I have a problem.
    Firstly, some background information.
    My project contains a large number of individual header (.H) files, one for each dialog within the software. These header files, which have been generated and provided by our developers, contain one entry for each field on the dialog to which the header file relates. The header files are all contained within a \HTML Topics\Fields\ folder (going from the root of my Help project).
    Each header file has a corresponding text (.TXT) file. These text files contain entries that correspond to the entries in the relevant header file. The text files are also contained within the \HTML Topics\Fields\ folder.
    Below is an example of the contents of a header file:
    #define IDH_HIERARCHY_APPEARANCE_HIEARCHY_LIST          16811
    #define IDH_HIERARCHY_APPEARANCE_ADD_APPEARANCE         16812    
    #define IDH_HIERARCHY_APPEARANCE_REMOVE_APPEARANCE      16813
    Below is the contents of the corresponding text file:
    .topic IDH_HIERARCHY_APPEARANCE_ADD_APPEARANCE
    Click this button to add a new row of hierarchical appearance settings to the grid.
    .topic IDH_HIERARCHY_APPEARANCE_HIEARCHY_LIST
    Use this grid to define hierarchy appearance settings. Each row in the grid represents a level of the hierarchy. For example, the appearance settings you define for the first row apply to the top level of hierarchy, the settings you define for the second row apply to the second level, and so on.
    .topic IDH_HIERARCHY_APPEARANCE_REMOVE_APPEARANCE
    Click this button to delete the selected row of hierarchical appearance settings from the grid.
    The What's This Help that was part of the original project still works perfectly. However, after upgrading the project to RoboHelp Version 8, I have had to update the project to reflect changes to the software. As part of this work, I have imported some new header files and updated some existing ones - and edited the corresponding text files accordingly.
    The What's This Help that is covered by the header files that I have imported since the upgrade to RoboHelp Version 8 does not work correctly; in each case, the What's This Help does not work for whichever field appears at the top of the appropriate text file. The position of the entry in the corresponding header file does not make a difference.
    If I manually edit a text file to move a different entry to the top then recompile the Help project, the What's This Help does not work for the field that now appears at the top of the text file - and the What's This Help for the field that used to appear at the top of the text file now works.
    I've tried everything I can think of to fix this, but nothing has worked. It seems as if there is a problem in the way RoboHelp is compiling the header and text files.
    If I use Microsoft HTML Help Workshop to decompile the CHM file, then view the contents of the resulting, decompiled text files, the affected files appear as follows:
    .topic IDH_HIERARCHY_APPEARANCE_ADD_APPEARANCE
    Click this button to add a new row of hierarchical appearance settings to the grid.
    .topic 16811
    Use this grid to define hierarchy appearance settings. Each row in the grid represents a level of the hierarchy. For example, the appearance settings you define for the first row apply to the top level of hierarchy, the settings you define for the second row apply
    to the second level, and so on.
    .topic 16813
    Click this button to delete the selected row of hierarchical appearance settings from the grid.
    Note how the entry at the top - which relates to the What's This Help that doesn't work - appears differently to the other entries which do work. The name of the ID appears after ".topic" rather than the appropriate ID number.
    Any help that anyone can provide me with would be very much appreciated.
    Thank you,
    Mark

    Its working now. We just kept trying to reinstall the tools and restarting indesign. On the 4th time the buttons started working. I can't explain why it finally worked, just that it is working now.

  • Error 999 is shutting down my yahoo mail, someone suggested I "upgrade my Adobe"will this help and w

    Error 999 is shutting down my yahoo mail, someone suggested I "upgrade my Adobe"will this help and whaat should I do?
    E-mail me [email protected]

    Your suggestion of breaking up the export to pdf into sections of pages was excellent. I don't know why I didn't think of it...maybe because I was in panic mode.
    For anyone else who experiences this problem, I exported 50-page sections to pdf with no problem. I now have 7 hi-res pdfs, but that's no problem. The printer should have no problem dealing with it. No error messages came up.
    The only thing I can think of is that InDesign couldn't export that many documents (148) in the book palette to hi-res pdf, and it has no error message available to explain the cause—either outside ID's ability to process or out of memory, even though I have 16G of RAM.
    Thanks again for your help!

  • HT4946 My sound is not working for Siri, voice mail, Itunes,and ringer tones... the only sound that works is the buzzer. I was told at Verizin to try and update my I tune app off my Home computer and that might make the sound , will this help or is the sp

    Sound is not working for Siri, voice mail, ringer tones, movies or music. I was told by verizon that the speaker maybe out, but that i might want to try and reload or update my itunes by plgging into my home computer... will this help and if so how do I do this?

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

Maybe you are looking for

  • How can you find out if another VI running on the same computer and how can you find out the name of that VI?

    Suppose that several VIs running simultaneously on the same computer. How can I find out the names of the running VIs, from another VI? If the already running VIs are clones of the same basic VI, open and run with the option "Prepare to call and forg

  • When will the new Mac Mini's ship

    I just pre-ordered one from Amazon since they don't charge tax or shipping, but I was wondering when will Apple be shipping the Mac Mini's to retailers. If anyone knows, please tell me. And this is my first Mac, so I'm kind of excited about it.

  • 2013 Run-Time error 32809 on macro

    I am unable to have a file open correctly that has 'automatic macros'.  The file work in 2010 and now I have the run-time error.  This workbook is created by outside source and is password protected. Thanks for any assistance.

  • How to make a bluetooth call on a second phone

    How do you make a bluetooth connection to make a call from a second mobile phone? I have a N95 and a work mobile. I want to allow people to call my N95 but becasue work pays for the calls from the other mobile, i would like to make a bluetooth connec

  • Only using 1 instance

    When I try to setup my 2.66 Dual-Core Mac Pro up for either QuickCluster or Managed I can never get more than 1 instance to work inside compressor. I know I should be able to use up to 4, or even 2 instances. No matter how I setup qmaster up in the s