Simple dispatch event doesnt seem to work

I've got 2 AS3 files going here, the document file "Main" and a "Fence" file...
Fence code
package  {
import flash.display.MovieClip;
import flash.events.Event;
public class Fence extends MovieClip {
  public function Fence() {
   addEventListener(Event.ADDED_TO_STAGE, onAddedToStage);
  private function onAddedToStage(event:Event) {
   dispatchEvent(new Event("fenceAdded", true));
   trace("ping");
   removeEventListener(Event.ADDED_TO_STAGE, onAddedToStage);
Then theres the Main code
package {
import flash.display.MovieClip;
import flash.events.Event;
public class Main extends MovieClip {
  public function Main () {  
   addEventListener(Event.ENTER_FRAME, onEnterFrame);
   stage.addEventListener("fenceAdded", onFenceAdded);
  private function onFenceAdded (event:Event) {
   trace("pong");
For some reason the ping comes up, but the pong doesn't, it's starting to bug me now that the "onFenceAdded" wont even work, what have I missed? Is there some way to check if Flash is compiling correctly? I often find these weird problems where I'm sure I've done it all correct, but when I try to compile and run a swf it wont work!

Just forgot to mention. There is undocumented MainTimeline class. If you remove document class and place the following code:
import flash.utils.describeType;
var xml:XML = describeType(this);
trace(xml);
You will see result similar to the xml below - it says that type is MainTimeline.
If you assign Main to it - it will state that type is MovieClip.
In both cases you will see a line:
<variable name="fence" type="timelineCode::Fence"/>
Here is an output without document class:
<type name="stageEvent_fla::MainTimeline" base="flash.display::MovieClip" isDynamic="true" isFinal="false" isStatic="false">
  <extendsClass type="flash.display::MovieClip"/>
  <extendsClass type="flash.display::Sprite"/>
  <extendsClass type="flash.display::DisplayObjectContainer"/>
  <extendsClass type="flash.display::InteractiveObject"/>
  <extendsClass type="flash.display::DisplayObject"/>
  <extendsClass type="flash.events::EventDispatcher"/>
  <extendsClass type="Object"/>
  <implementsInterface type="flash.events::IEventDispatcher"/>
  <implementsInterface type="flash.display::IBitmapDrawable"/>
  <variable name="xml" type="XML"/>
  <variable name="fence" type="timelineCode::Fence"/>
  <method name="addFrameScript" declaredBy="flash.display::MovieClip" returnType="void">
    <metadata name="Inspectable">
      <arg key="environment" value="none"/>
    </metadata>
  </method>
  <method name="nextFrame" declaredBy="flash.display::MovieClip" returnType="void"/>
  <method name="play" declaredBy="flash.display::MovieClip" returnType="void"/>
  <accessor name="trackAsMenu" access="readwrite" type="Boolean" declaredBy="flash.display::MovieClip"/>
  <method name="gotoAndPlay" declaredBy="flash.display::MovieClip" returnType="void">
    <parameter index="1" type="Object" optional="false"/>
    <parameter index="2" type="String" optional="true"/>
  </method>
  <method name="gotoAndStop" declaredBy="flash.display::MovieClip" returnType="void">
    <parameter index="1" type="Object" optional="false"/>
    <parameter index="2" type="String" optional="true"/>
  </method>
  <accessor name="currentLabels" access="readonly" type="Array" declaredBy="flash.display::MovieClip"/>
  <method name="prevFrame" declaredBy="flash.display::MovieClip" returnType="void"/>
  <accessor name="currentFrame" access="readonly" type="int" declaredBy="flash.display::MovieClip"/>
  <accessor name="currentLabel" access="readonly" type="String" declaredBy="flash.display::MovieClip"/>
  <accessor name="enabled" access="readwrite" type="Boolean" declaredBy="flash.display::MovieClip"/>
  <accessor name="totalFrames" access="readonly" type="int" declaredBy="flash.display::MovieClip"/>
  <accessor name="scenes" access="readonly" type="Array" declaredBy="flash.display::MovieClip"/>
  <method name="stop" declaredBy="flash.display::MovieClip" returnType="void"/>
  <method name="nextScene" declaredBy="flash.display::MovieClip" returnType="void"/>
  <accessor name="framesLoaded" access="readonly" type="int" declaredBy="flash.display::MovieClip"/>
  <accessor name="currentScene" access="readonly" type="flash.display::Scene" declaredBy="flash.display::MovieClip"/>
  <method name="prevScene" declaredBy="flash.display::MovieClip" returnType="void"/>
  <accessor name="graphics" access="readonly" type="flash.display::Graphics" declaredBy="flash.display::Sprite"/>
  <accessor name="dropTarget" access="readonly" type="flash.display::DisplayObject" declaredBy="flash.display::Sprite"/>
  <accessor name="hitArea" access="readwrite" type="flash.display::Sprite" declaredBy="flash.display::Sprite"/>
  <accessor name="useHandCursor" access="readwrite" type="Boolean" declaredBy="flash.display::Sprite"/>
  <accessor name="soundTransform" access="readwrite" type="flash.media::SoundTransform" declaredBy="flash.display::Sprite"/>
  <method name="startDrag" declaredBy="flash.display::Sprite" returnType="void">
    <parameter index="1" type="Boolean" optional="true"/>
    <parameter index="2" type="flash.geom::Rectangle" optional="true"/>
  </method>
  <accessor name="buttonMode" access="readwrite" type="Boolean" declaredBy="flash.display::Sprite"/>
  <method name="stopDrag" declaredBy="flash.display::Sprite" returnType="void"/>
  <method name="swapChildrenAt" declaredBy="flash.display::DisplayObjectContainer" returnType="void">
    <parameter index="1" type="int" optional="false"/>
    <parameter index="2" type="int" optional="false"/>
  </method>
  <accessor name="numChildren" access="readonly" type="int" declaredBy="flash.display::DisplayObjectContainer"/>
  <method name="getChildByName" declaredBy="flash.display::DisplayObjectContainer" returnType="flash.display::DisplayObject">
    <parameter index="1" type="String" optional="false"/>
  </method>
  <accessor name="textSnapshot" access="readonly" type="flash.text::TextSnapshot" declaredBy="flash.display::DisplayObjectContainer"/>
  <accessor name="tabChildren" access="readwrite" type="Boolean" declaredBy="flash.display::DisplayObjectContainer"/>
  <method name="getChildIndex" declaredBy="flash.display::DisplayObjectContainer" returnType="int">
    <parameter index="1" type="flash.display::DisplayObject" optional="false"/>
  </method>
  <method name="getChildAt" declaredBy="flash.display::DisplayObjectContainer" returnType="flash.display::DisplayObject">
    <parameter index="1" type="int" optional="false"/>
  </method>
  <accessor name="mouseChildren" access="readwrite" type="Boolean" declaredBy="flash.display::DisplayObjectContainer"/>
  <method name="contains" declaredBy="flash.display::DisplayObjectContainer" returnType="Boolean">
    <parameter index="1" type="flash.display::DisplayObject" optional="false"/>
  </method>
  <method name="setChildIndex" declaredBy="flash.display::DisplayObjectContainer" returnType="void">
    <parameter index="1" type="flash.display::DisplayObject" optional="false"/>
    <parameter index="2" type="int" optional="false"/>
  </method>
  <method name="removeChildAt" declaredBy="flash.display::DisplayObjectContainer" returnType="flash.display::DisplayObject">
    <parameter index="1" type="int" optional="false"/>
  </method>
  <method name="getObjectsUnderPoint" declaredBy="flash.display::DisplayObjectContainer" returnType="Array">
    <parameter index="1" type="flash.geom::Point" optional="false"/>
  </method>
  <method name="addChildAt" declaredBy="flash.display::DisplayObjectContainer" returnType="flash.display::DisplayObject">
    <parameter index="1" type="flash.display::DisplayObject" optional="false"/>
    <parameter index="2" type="int" optional="false"/>
  </method>
  <method name="swapChildren" declaredBy="flash.display::DisplayObjectContainer" returnType="void">
    <parameter index="1" type="flash.display::DisplayObject" optional="false"/>
    <parameter index="2" type="flash.display::DisplayObject" optional="false"/>
  </method>
  <method name="addChild" declaredBy="flash.display::DisplayObjectContainer" returnType="flash.display::DisplayObject">
    <parameter index="1" type="flash.display::DisplayObject" optional="false"/>
  </method>
  <method name="removeChild" declaredBy="flash.display::DisplayObjectContainer" returnType="flash.display::DisplayObject">
    <parameter index="1" type="flash.display::DisplayObject" optional="false"/>
  </method>
  <method name="areInaccessibleObjectsUnderPoint" declaredBy="flash.display::DisplayObjectContainer" returnType="Boolean">
    <parameter index="1" type="flash.geom::Point" optional="false"/>
  </method>
  <accessor name="doubleClickEnabled" access="readwrite" type="Boolean" declaredBy="flash.display::InteractiveObject"/>
  <accessor name="contextMenu" access="readwrite" type="flash.ui::ContextMenu" declaredBy="flash.display::InteractiveObject"/>
  <accessor name="accessibilityImplementation" access="readwrite" type="flash.accessibility::AccessibilityImplementation" declaredBy="flash.display::InteractiveObject">
    <metadata name="Inspectable">
      <arg key="environment" value="none"/>
    </metadata>
  </accessor>
  <accessor name="mouseEnabled" access="readwrite" type="Boolean" declaredBy="flash.display::InteractiveObject"/>
  <accessor name="focusRect" access="readwrite" type="Object" declaredBy="flash.display::InteractiveObject"/>
  <accessor name="tabIndex" access="readwrite" type="int" declaredBy="flash.display::InteractiveObject"/>
  <accessor name="tabEnabled" access="readwrite" type="Boolean" declaredBy="flash.display::InteractiveObject"/>
  <accessor name="mask" access="readwrite" type="flash.display::DisplayObject" declaredBy="flash.display::DisplayObject"/>
  <accessor name="filters" access="readwrite" type="Array" declaredBy="flash.display::DisplayObject"/>
  <accessor name="stage" access="readonly" type="flash.display::Stage" declaredBy="flash.display::DisplayObject"/>
  <method name="localToGlobal" declaredBy="flash.display::DisplayObject" returnType="flash.geom::Point">
    <parameter index="1" type="flash.geom::Point" optional="false"/>
  </method>
  <accessor name="rotation" access="readwrite" type="Number" declaredBy="flash.display::DisplayObject"/>
  <accessor name="parent" access="readonly" type="flash.display::DisplayObjectContainer" declaredBy="flash.display::DisplayObject"/>
  <accessor name="blendMode" access="readwrite" type="String" declaredBy="flash.display::DisplayObject"/>
  <accessor name="scaleX" access="readwrite" type="Number" declaredBy="flash.display::DisplayObject"/>
  <accessor name="scaleY" access="readwrite" type="Number" declaredBy="flash.display::DisplayObject"/>
  <accessor name="alpha" access="readwrite" type="Number" declaredBy="flash.display::DisplayObject"/>
  <method name="getRect" declaredBy="flash.display::DisplayObject" returnType="flash.geom::Rectangle">
    <parameter index="1" type="flash.display::DisplayObject" optional="false"/>
  </method>
  <accessor name="scale9Grid" access="readwrite" type="flash.geom::Rectangle" declaredBy="flash.display::DisplayObject"/>
  <accessor name="accessibilityProperties" access="readwrite" type="flash.accessibility::AccessibilityProperties" declaredBy="flash.display::DisplayObject"/>
  <accessor name="mouseY" access="readonly" type="Number" declaredBy="flash.display::DisplayObject"/>
  <accessor name="y" access="readwrite" type="Number" declaredBy="flash.display::DisplayObject"/>
  <accessor name="root" access="readonly" type="flash.display::DisplayObject" declaredBy="flash.display::DisplayObject"/>
  <accessor name="cacheAsBitmap" access="readwrite" type="Boolean" declaredBy="flash.display::DisplayObject"/>
  <accessor name="scrollRect" access="readwrite" type="flash.geom::Rectangle" declaredBy="flash.display::DisplayObject"/>
  <accessor name="width" access="readwrite" type="Number" declaredBy="flash.display::DisplayObject"/>
  <accessor name="x" access="readwrite" type="Number" declaredBy="flash.display::DisplayObject"/>
  <accessor name="height" access="readwrite" type="Number" declaredBy="flash.display::DisplayObject"/>
  <method name="globalToLocal" declaredBy="flash.display::DisplayObject" returnType="flash.geom::Point">
    <parameter index="1" type="flash.geom::Point" optional="false"/>
  </method>
  <accessor name="loaderInfo" access="readonly" type="flash.display::LoaderInfo" declaredBy="flash.display::DisplayObject"/>
  <method name="getBounds" declaredBy="flash.display::DisplayObject" returnType="flash.geom::Rectangle">
    <parameter index="1" type="flash.display::DisplayObject" optional="false"/>
  </method>
  <accessor name="name" access="readwrite" type="String" declaredBy="flash.display::DisplayObject"/>
  <method name="hitTestPoint" declaredBy="flash.display::DisplayObject" returnType="Boolean">
    <parameter index="1" type="Number" optional="false"/>
    <parameter index="2" type="Number" optional="false"/>
    <parameter index="3" type="Boolean" optional="true"/>
  </method>
  <accessor name="visible" access="readwrite" type="Boolean" declaredBy="flash.display::DisplayObject"/>
  <accessor name="opaqueBackground" access="readwrite" type="Object" declaredBy="flash.display::DisplayObject"/>
  <accessor name="mouseX" access="readonly" type="Number" declaredBy="flash.display::DisplayObject"/>
  <accessor name="transform" access="readwrite" type="flash.geom::Transform" declaredBy="flash.display::DisplayObject"/>
  <method name="hitTestObject" declaredBy="flash.display::DisplayObject" returnType="Boolean">
    <parameter index="1" type="flash.display::DisplayObject" optional="false"/>
  </method>
  <method name="hasEventListener" declaredBy="flash.events::EventDispatcher" returnType="Boolean">
    <parameter index="1" type="String" optional="false"/>
  </method>
  <method name="dispatchEvent" declaredBy="flash.events::EventDispatcher" returnType="Boolean">
    <parameter index="1" type="flash.events::Event" optional="false"/>
  </method>
  <method name="removeEventListener" declaredBy="flash.events::EventDispatcher" returnType="void">
    <parameter index="1" type="String" optional="false"/>
    <parameter index="2" type="Function" optional="false"/>
    <parameter index="3" type="Boolean" optional="true"/>
  </method>
  <method name="willTrigger" declaredBy="flash.events::EventDispatcher" returnType="Boolean">
    <parameter index="1" type="String" optional="false"/>
  </method>
  <method name="addEventListener" declaredBy="flash.events::EventDispatcher" returnType="void">
    <parameter index="1" type="String" optional="false"/>
    <parameter index="2" type="Function" optional="false"/>
    <parameter index="3" type="Boolean" optional="true"/>
    <parameter index="4" type="int" optional="true"/>
    <parameter index="5" type="Boolean" optional="true"/>
  </method>
  <method name="toString" declaredBy="flash.events::EventDispatcher" returnType="String"/>
</type>

Similar Messages

  • HP LaserJet Pro 200 color MFP M276nw - wake on events doesnt seem to work

    My printer goes to sleep and wont wak when i send a print job wirelessly.  Any ideas?

    Hi tgifsf
    I understand the printer won't wake up to print.
    I will be happy to assist you with this.
    Try turning the printer off and on again to see if it will reconnect to the network.
    It may not be the printer, it may be your router's inability to wake the printer.
    I would setup a static IP address for the printer. Solution three: Assign the printer a static IP address.
    Printer Does Not Maintain a Wireless Connection.
    If the printer isn't setup on the wireless network let me know how it is setup so I can further assist you.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • How do i use my imac 21.5" 2011 as a display for my macbook pro late 2011, through thunderbolt cable ? I have tried and it doesnt seem to work, neither does target disk mode.

    How do i use my imac 21.5" 2011 as a display for my macbook pro late 2011, through thunderbolt cable ? I have tried and it doesnt seem to work, neither does target disk mode.
    Could it be a borked cable ? I just bought it new from the store today, i have updated both imac and macbook pro to latest thunderbolt firmware and updates. Both 10.7.3.
    MacBook Pro:
      Vendor Name:    Apple, Inc.
      Device Name:    MacBook Pro
      UID:    0x0001000A17016E60
      Firmware Version:    22,1
      Port:
      Status:    No devices connected
      Link Status:    7
      Port Micro Firmware Version:    FFFF.FF.FF

    You are correct, here is what Apple Says:
    http://support.apple.com/kb/TS3775
    I was able to find these instructions, however they referr to 2009-2011 27" iMacs. I think it's the same, if it's not then contact Apple directly for instructions. If either of the machines is less than 90 days old or covered by AppleCare then call AppleCare tomorrow for help, they should be able to easily answer this for you. You will find the number in your manual or you can use the AppleCare Contact Info link.
    Your iMac should automatically recognize the presence of a digital video signal at the Mini DisplayPort and enter Target Display Mode.
    If your iMac does not automatically enter Target Display Mode, press command + F2 to manually enter Target Display Mode.

  • OS X 10.8.3 says it brings redeeming gift cards with webcam on mac app store, doesnt seem to work for me?

    Updated to OS X 10.8.3,
    While updating i read the notes about how you can now redeem gift cards with the built in webcam on the Mac App Store, Opened it up and Clicked Redeem > signed in la di da, and it doesnt seem to work for me.
    Specs:
    MBP 13 inch, Early 2011
    8 GB Ram, 320 GB HDD
    FaceTime HD Camera
    Intel HD Graphics 3000
    Help thanks

    Hi ChuckN,
    I have installed the update at home on an older 27" iMac, a new retina macbook pro 15", an older macbook air  and a recent 21" iMac and on none of them does the redeem by camera option show up.
    I would say to our north American friends this is something that has been working for you for a while and has only been announced as available in AU with the latest update for our region this week. Sadly updates don't always work straight up.
    I am hopeful there is something I have not turned on but think I may need to wait for another update.
    good luck Chuck!

  • Purchase code number doesnt seem to work, it says invalid

    purchase code number doesnt seem to work, it says invalid

    Start Here  If after selecting relevant responses you are unable to find a solution, choose "Still need help? Contact us." for contact options.

  • Subwoofer doesnt seem to work on new envy model 4-1203sa

    as in title, doesnt seem to work, only bought the laptop today from pc world. the laptop was a display model, is there any way i can test the speaker? i have the beats audio interface too but i cant hear no bass

    Hi Dylan5084,
    Thank you for visiting the HP Support Forums and Welcome. I have read your thread on your HP ENVY TouchSmart 4-1203sa Sleekbook and sound issues. Here is a link to troubleshoot the sound.
    Hope this helps.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Podcasts doesnt seem to work on ios 7

    podcasts doesnt seem to work on ios7

    You are not allowed to make posts related to issues with beta software here.
    Just follow sted's advice, unless you signed up your UDID and don't have a developer account of your own (Like I did ), which then you cannot do anything about it.

  • I have a home computer with purchased itunes music and I want to transfer to my Iphone - how can I do this (syncing doesnt seem to work

    I have a home computer with purchased itunes music and I want to transfer to my Iphone - how can I do this (syncing doesnt seem to work

    Syncing is the only way.  Explain what you mean by "doesn't seem to work."  Exacty, what did you do and what happend.
    Are  you sure your iPhone is signed into the same iTunes Store account as iTunes on your computer?

  • Firefox doesnt seem to work with some sites, ie Linkedin cannot use drop downs etc works fine on IE or Google Chrome.

    When using certain sites like Linkedin Firefox seems to bug out, for example drop down menu's do not work and oddly enough when I reply to any email Firefox seems to be unable to register who I am replying too, this was fine until last weekend. I have tried reinstalling Firefox and checking add-ons nothing seems to work, other browsers like GC and IE work fine,
    Also not a great support system for FF
    Thanks
    Oliver

    Please see if the sites you are having problems with work in Firefox's safe mode. Exit Firefox then Start > All Programs > Mozilla Firefox > Mozilla Firefox (safe-mode).
    http://support.mozilla.com/en-US/kb/Safe+Mode

  • A Simple JMS Client  ... doesnt seems to work

    Hi ,
    I trying my first baby steps on JMS and your help is needed. I have setup the ConnectionFactory & TopicConnection in the GlassFish server.
    Following is the simple client code which I am writing in Netbeans IDE,
    public class TopicSender {
        public TopicSender() throws Exception{
            Hashtable properties = new Hashtable(2);
            properties.put(Context.PROVIDER_URL, "iiop://127.0.0.1:3700");
            properties.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.appserv.naming.S1ASCtxFactory");
            Context ctx = new InitialContext(properties);
            TopicConnectionFactory factory = (TopicConnectionFactory) ctx.lookup("jms/tTopicFactory");
            Topic topic = (Topic) ctx.lookup("jms/tJavaNews");
            TopicConnection conn = (TopicConnection) factory.createConnection();
            TopicSession session = (TopicSession) conn.createSession(false, 0);
            TextMessage msg = (TextMessage) session.createTextMessage();
            msg.setText("Netbeans 7.0 released !! ");
            TopicPublisher publisher = session.createPublisher(topic);
            publisher.publish(msg);
            conn.close();
            System.out.println("Connection closed");
        public static void main(String[] args) throws Exception{
            new TopicSender();
    public class TopicClient implements MessageListener {
        public TopicClient() throws Exception{
            Hashtable properties = new Hashtable(2);
            properties.put(Context.PROVIDER_URL, "iiop://127.0.0.1:3700");
            properties.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.appserv.naming.S1ASCtxFactory");
            Context ctx = new InitialContext(properties);
            TopicConnectionFactory factory = (TopicConnectionFactory) ctx.lookup("jms/tTopicFactory");
            Topic topic = (Topic) ctx.lookup("jms/tJavaNews");
            TopicConnection conn = factory.createTopicConnection();
            TopicSession session = conn.createTopicSession(false, 0);
            session.createSubscriber(topic);
            session.setMessageListener(new TopicClient());
            conn.start();
        public static void main(String[] args) throws Exception {
            new TopicClient();
        public void onMessage(Message arg0) {
            TextMessage msg = (TextMessage) arg0;       
            try {
                System.out.println(msg.getText());
            } catch (JMSException ex) {
                ex.printStackTrace();
    }Well , as I run the TopicClient first and TopicSender second ... I dont see any output ... both of the programs just keeps running
    and I have to manually stop them from Build menu.
    Pls help ....

    I would be interested in your solution if you found one.
    Thanks for your help.
    Regards

  • I am getting really upset, i just got my iphone 5c and itunes cant seem to restore and update it ? it has made 7 errors so far, i followed the more information suggestion but it is so irratating because it doesnt seem to work..and i cant even turn it on

    help...i cant seem to sort this out and itunes are really doing my head in...keeps saying check you have the right version when i have the most up  to date version of itunes, it tells me to restart the computer and i do..then it still doesnt work and now i cant even turn my iphone on without it wanting itunes and not moving past the page...i am seriously needing help before i go completely insane! it isnt working and i cant call vodafone or apple because it will not work at all and its not even a day old. I am near the end of my tether with this and i have never had this problem before, raging isnt even the word i would use to describe how i am feeling.

    LelouchGeass wrote:
    so if you have any ideas on whether i screwed up the inside or its because the screens cable is unattached please let me know.
    Yes, you have screwed it up. Time to buy a new phone.

  • P1102w input tray doesnt seem to work

    I have two laptops that connect to my home network which my HP P1102w is also connected on. The laptops both run Windows 7. If I try to prin t anything now, the paper does not seem to be taken in via the input tray. It sounds like its trying to suck in the paper but it doesnt actually do it. However, if I load paper in the priority feed slot, it prints out just fine. This occurs no matter which laptop I am printing from.

    Hi Rhondafromrockville,
    Welcome to the Support Communities!
    The first step would be to check the sound settings in your System Preferences on the iMac.  Click on the link below to see the screenshot in the section "Change your sounds."   If you click on the Input tab, you should see the Internal microphone (Built-in).  If it is not already selected, click on it and you should be able adjust your input volume.
    Mac Basics: Set your preferences
    http://support.apple.com/kb/ht2490
    Once you confirm that the internal microphone is working on your iMac, then you can open Garageband, and check the settings to make sure the internal microphone is selected as the input source:
    GarageBand '11: Record sound from a microphone
    http://support.apple.com/kb/PH1893
    GarageBand '11 - Record your voice
    http://support.apple.com/kb/VI200
    Cheers,
    - Judy

  • Editing Contacts Doesnt Seem to Work :(

    this is my editContact method: public void editContact(ContactPanel updatePanel){
            try{
                preparedStatement = connection.prepareStatement("update CONTACTS set NAME = ?, NUMBER = ?, EMAIL = ? where ID = ?");
                preparedStatement.setString(1, updatePanel.getName());
                preparedStatement.setString(2, updatePanel.getNumber());
                preparedStatement.setString(3, updatePanel.getEMail());
                preparedStatement.setInt(4, updatePanel.getID());
                preparedStatement.executeUpdate();
            }catch(SQLException ex){
                ex.printStackTrace();
        } for some reason it doesnt work. i use it like this in another class of my program: if(event.getSource() == doneButton){
                contactNameField.setText(editNameField.getText());
                contactNumberField.setText(editNumberField.getText());
                contactEMailField.setText(editEMailField.getText());
                contactIO.editContact(this);
                editDialog.dispose();
            } any1know what the problem could be? thnx guys :)

    this is my editContact method: public void
    editContact(ContactPanel updatePanel){
    try{
    preparedStatement =
    connection.prepareStatement("update CONTACTS set
    NAME = ?, NUMBER = ?, EMAIL = ? where ID = ?");
    preparedStatement.setString(1,
    updatePanel.getName());
    preparedStatement.setString(2,
    updatePanel.getNumber());
    preparedStatement.setString(3,
    updatePanel.getEMail());
    preparedStatement.setInt(4,
    updatePanel.getID());
    preparedStatement.executeUpdate();
    tch(SQLException ex){
    ex.printStackTrace();
    } for some reason it doesnt work. i use it
    like this in another class of my program:
    if(event.getSource() == doneButton){
    ontactNameField.setText(editNameField.getText());
    ontactNumberField.setText(editNumberField.getText());
    ontactEMailField.setText(editEMailField.getText());
    contactIO.editContact(this);
    editDialog.dispose();
    } any1know what the problem could be?
    thnx guys :)Sorry but I'm unfamiliar with the words any1know and thnx - could you please clarify them ?

  • Since going to the store doesnt seem to work....

    Hello all. I really didn't want to have to take my displeasure to this kind of forum, but it seems that there aren't any "contact us" or support area emails. I have been a paying member of my parents friends and family plan for 8 years. I always had phones that were for strictly calls before texting came along. Then I adapted to texting on a phone. Needless to say my prior phone was a GZ Commando. Purchasing a "smartphone" is an investment. Unlike those who can fork out good money on the latest and greatest phones, I don't have such luxury. I coughed up $400+ on a 32 GB IPhone4, and quite a bit more in accessories. I came in a few days later with questions about the phone since I wasn't aware of how it physically works, as far as tips, shortcuts, and what the phone was actually capable of. I had interests of a phone with a battery life that could last a 12 hour period with periodic texting, music and a newspaper app, or maybe some other game. A representative was taking care of me and giving me other options while another representitive tells me that the IPhone isn't really user friendly and didnt recommend it unless I have had a smartphone. While there I asked what would be the most relevant and least likely to be outdated for a while. A conclussion was made, and they had sold me the equally priced Droid Charge and the $35 restock fee to go with it.
    Not only does the Charge have a horrible battery life, drop calls, completely lose "data accessibility", freeze, restart and randomly open programs, but it also likes to have a mind of its own and rifle through pages and either call some of my direct contact links or other battery depleting things.
    I have taken the phone in on multiple occassions because of one issue or another and was always given one excuse after another as to why random things would happen, most of the time it was my fault, or I dont "reset" the phone enough, and really nothing was answered in terms of why I have no data coverage for days at a time when Buffalo was just "blessed" with 4G LTE, something this phone is capable of, but I have yet to get it working on my phone
    I was lied to on pretty much all facets pertaining both kinds of phone ("Droid" and IPhone). The battery life (IPhone is superior), the security of the network (IPhone is superior), connectivity to my home computer (I still am not able to sync my computer to my Charge for some reason), and other issues.
    Oh, and my phone was outdated in a week by the Bionic, then the IPhone 4S and recently the Stratosphere.
    I have gone in lately with 3 seperate chargers. 1 was a "eco-green" one I spent $30 something dollars on. The other from my purchased phone and the other from a friend. 2 of the 3 are fried with the one coming with my Charge, almost starting a fire. Excuses were made as to why they couldn't be returned, and I was sent on my way once again.
    With the way the Better Business Bureau works, and Verizon no longer being number 1 in our "market", the way my money was spent for me, and not by me, is a key reason as to why for many.
    Think about it, a family that has been with your company as long as mine has spent tens of thousands of dollars, back to when there was a corded phone in our truck and the Zach Morris phone, prior to Verizon even owning the company. Loyalty is something rarely found in todays time and place, even less so in the grab bag of incentive laiden phone salesmen who will talk parents into spending outrageous money on a tablet device because of their kids pressure and the hidden gem of the salesman getting one for free after selling 5 of them. And yes, I talked to the rep about his "awesome incentives". That's fine and dandy, but when it came to getting some sort of q&a session about ways to handle my problems it always ended up with me shelling out more money, or leaving empty handed.
    All I want, simply, is to have a phone that meets my needs, and wont be irrelevant technology wise in the next few months. Selling me a phone that divebombed to half price in a months time and charging me fees after talking me into a different phone is a slap in the face. There has to be someone from Verizon, that can make me not feel ripped off (The price paid for the phone, is what it should be worth for a while, not a vastly depreciated value like purchasing a new car off the lot.) Follow the phone number to the bill and look up the past many years and see what I am talking about

    I've attempted to do such, I feel like I call collections agents. Almost to the point that it is very uncomfortable to explain my issues as though I am a knit picky person. That isn't the point. The principle of the matter is not feeling like I had the wool pulled over my eyes. My phone number is accessible via the information I initially filled out. Someone could've contacted me if they took the time to read my issues and had a real, viable way to handle the problem at hand. I wish a Verizon worker would read into my dilemma and attempt to rectify it. I have read that the Charge isn't a bad phone at all. But for what I asked for, and the amount of money I spent, I am kind of at a loss. And btw, who sells a phone with an HDMI jack on the side, but dont include a cord with it? Sounds like going to a parts place to buy headlights only to have some schmuck sell you dielectric grease for your headlights when most people have this stuff at home, trunk or garage just under a different name. 

  • Firefox doesnt seem to work with wifi

    For some reason firefox doesnt load any pages. I just got the new beta and Im on wifi on my phone. I have the EVO. So far its been a dud and I just downloaded firefox for the first time on it.

    Actually I was wrong its not just WiFi but the network too. For some reason it doesn't navigate at all. It seems there is no data being transmitted when I put in any address

Maybe you are looking for

  • Availability of new J2EE 1.4 SDK

    I am pleased to announce availability of new J2EE 1.4 SDK. You can download this today from http://java.sun.com/j2ee/1.4/download.html J2EE SDK now includes App Server Platform Edition 8.2 (SJSAS PE 8.2) delivering a rich application deployment envir

  • Restricting the population of data based on the user & his organization

    Hi, I want to have following requirement fulfilled Suppose there are 3 company codes under one company. I do not want a user of one company to see the data of another company code or plant. For example: Selection of PO from drop down list or selectio

  • How to stop and start Managed Server using weblogicServer

    Hi We are new. We have 2 managed servers and an Admin Server. We're trying to use the command line to stop/start our Managed Server. Could someone share examples on how one could write the command line that's similar to the WLS console Server Start t

  • Adobe freezes when connected to Sonicwall

    Adobe reader XI hangs when I am connected to a sonicwall VPN connection. Note that I am not opening the reader on the remote desktop. I am doing it on my Home PC. However, if I disable my sonicwall connection, then the adobe reader opens instantly. E

  • Serial number not accepted - Aperture keeps asking me to buy or authorize

    I've had Aperture installed and working well on a Macbook Pro since January 09 and today it seems to have reverted to a trial version and says my trial has expired. I've tried to re-enter the serial number but no success, indeed the trial shows the s