7700 speaker problems with control Pod

ok if anyone has speakers like this they know it comes with a little control pd that controls the volume and bass. well i think the problem is that sometimes the volume goes really high or really soft. and if you turn the volume up or down, the sound will go back to normal and you will be blasted or can't hear it. its very anoying to listen to music or game and this happens. it does this regardless of the number of speakers attached, and my drivers are up todate. i have onboard sound on a asus A8V mobo so its a newer board. some people said that the pod can get wonky, and i am checking to see if anyone has any suggestions on what i should maybe try short of RMA the speakers, its not that i don't want to RMA it but i would have to pay shipping on a set of speakers witch is kinda gay. any help would be great.. thanks

fox_9 wrote:
ok if anyone has speakers like this they know it comes with a little control pd that controls the volume and bass. well i think the problem is that sometimes the volume goes really high or really soft. and if you turn the volume up or down, the sound will go back to normal and you will be blasted or can't hear it. its very anoying to listen to music or game and this happens. it does this regardless of the number of speakers attached, and my drivers are up todate. i have onboard sound on a asus A8V mobo so its a newer board. some people said that the pod can get wonky, and i am checking to see if anyone has any suggestions on what i should maybe try short of RMA the speakers, its not that i don't want to RMA it but i would have to pay shipping on a set of speakers witch is kinda gay. any help would be great.. thanks
I have the same problem with my inspire 6.'s volume pod, after well under a year of flawless perfomance, the volume lowers randomly especially when I adjust the pod's volmue or just touch or move it. If I try to simply adjust for the loss of volume by cranking it up, it likes to blast me outta nowhere when it decides to work again. The only thing I can do to shortcut the 'down time' while waiting for it to adjust to normal level is to tap on the pod repeatedly usually causing the volume to adjust quicker...but I'm sure thats not the right method for fixing this irritating problem...PLEASE wont someone HELP ME?! Feel free to e-mail me @ [email protected], thanx!
Message Edited by BigLovan on 10-28-2004 01:16 AM

Similar Messages

  • Problem with controlling Annotations from Excel VBA

    Hi,
    I have a PDF document that has plenty of sticky notes attached to it. These sticky notes have been added by multiple authors on all pages of the document. I am trying to import the contents of these sticky notes, their author and the page number to an excel spreadsheet.  I am using Excel 2007 and Acrobat Professional 9.0.
    This is the code that I am currently using to import the sticky notes, but the problem that I am facing is that when I run the macro -
    Same sticky note contents, author and page numbers are imported multiple times
    Not all sticky notes are imported, only some of them appear in the final excel spreadsheet
    When I compare the number of sticky notes to that in the original PDF file, the number is correct. But the content is repeated content and that is the reason why only some of the sticky notes are imported.
    This is an activity that I need to do on regular basis and the number of sticky notes that I need to import to excel may range between 100 to 200. It is really difficult to do this task manually, so an excel VBA macro could prove really helpful.
    Sub ImportComments_Click()
    Dim Fpath As String
    Dim WordObj As Object
    Dim wbkOutput As Excel.Workbook
    Dim iRow As Integer
    Dim i, j, k As Integer
    Dim lRet As Long
    Dim objAcroAVDoc As New Acrobat.acroAVDoc
    Dim objAcroPDDoc As Acrobat.AcroPDDoc
    Dim numPages As Long
    Dim lAnnotscnt As Long
    Dim Subtype As String
    Dim NumComments As Long
    Dim AcroApp As Acrobat.AcroApp
    Dim objAcroPDPage As Acrobat.AcroPDPage
    Dim annot As Acrobat.AcroPDAnnot
    Sheets("Defect Log").Select
    Range("L3").Activate
    Fpath = ActiveCell.Value
    Sheets("Defect Log").Select
    Range("A1").Activate
    i = 0
    Do While (Not (IsEmpty(ActiveCell.Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 1).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 2).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 3).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 4).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 5).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 6).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 7).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 8).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 9).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 10).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 11).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 12).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 13).Value)) Or Not (IsEmpty(ActiveCell.Offset(0, 14).Value)))
    i = i + 1
    ActiveCell.Offset(1, 0).Select
    Loop
    iRow = i + 1
    Set wbkOutput = ActiveWorkbook
    lRet = objAcroAVDoc.Open(Fpath, "")
    Set objAcroPDDoc = objAcroAVDoc.GetPDDoc
    numPages = objAcroPDDoc.GetNumPages()
    Set objAcroPDPage = objAcroPDDoc.AcquirePage(0)
    For k = 1 To numPages
    lAnnotscnt = objAcroPDPage.GetNumAnnots()
    For m = 0 To lAnnotscnt - 1
    If lAnnotscnt = 0 Then Exit For
    Set objAcroPDAnnot = objAcroPDPage.GetAnnot(m)
    If (objAcroPDAnnot.GetContents <> "" And objAcroPDAnnot.GetSubtype = "Text") Then
    Cells(iRow, 5).Value = k
    Cells(iRow, 2).Value = objAcroPDAnnot.GetContents()
    Cells(iRow, 11).Value = objAcroPDAnnot.GetTitle()
    iRow = iRow + 1
    End If
    Next m
    Set objAcroPDPage = objAcroPDDoc.AcquirePage(k)
    Next k
    lRet = objAcroAVDoc.Close(1)
    Set objAcroAVDoc = Nothing
    Set objAcroPDAnnot = Nothing
    Set objAcroPDPage = Nothing
    Set objAcroPDDoc = Nothing
    End Sub

    Make sure you are current with 9.x patches, just on general principles.
    The code seems fine – nothing jumping out at me.
    You can also look at using the JSObject methods and trying this via the JavaScript stuff – that will give you more access to the Annotation information…
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Thu, 24 Nov 2011 04:25:12 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Problem with controlling Annotations from Excel VBA
    Problem with controlling Annotations from Excel VBA
    created by apreeti<http://forums.adobe.com/people/apreeti> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4044740#4044740

  • Problem with fileShare Pod.

    Hi every one
    i am using fileshare pod in an lccs based application and  facing a problem with fileshare pod.i create the pod after loing to the lccs appplication and when the synchronization event is called i load all the pods like fileshare ,whiteBoard, etc.and then pass them the connectionSession.all other pods are working but file share pod loses its connection with the service.
    Its
                       fileSharePod.isSynchronized
    property is seting to false and upload and down button is disabled.
    if any one understand the problem please guide me.thanks
    regards
    xaiban

    Hi Hironmay & Arun
    in my application i am creating my all pods in action script
    here is my code,it is not the complete code because it is in different files and too long,but the flow of creation of the pods is such like this.if you may tackle the issue it is too good otherwise i will send you the complete code.
    lccsConnectSession is the id of connectSessionContainer and iam creating this in mxml
    private function init()
    lccsConnectSession.addEventListener(SessionEvent.SYNCHRONIZATION_CHANGE,onSync_Handler);
    private function loginToLCCSService(uname:String,pwd:String,displayName:String):void
          serviceAuthenticator=new AdobeHSAuthenticator();
          serviceAuthenticator.addEventListener(AuthenticationEvent.AUTHENTICATION_SUCCESS,loginSuc cess_Handler);
          serviceAuthenticator.addEventListener(AuthenticationEvent.AUTHENTICATION_FAILURE,loginFai lure_Handler);
          serviceAuthenticator.userName=uname;
          serviceAuthenticator.password=pwd;
          if(serviceAuthenticator.userName.length>0 && serviceAuthenticator.password.length>0)
           //Alert.show("host login"+serviceAuthenticator.userName+":"+serviceAuthenticator.password);
           lccsConnectSession.authenticator=serviceAuthenticator;
              lccsConnectSession.login();
          else
           Alert.show("Invalide Password Or ID");
            private function onSync_Handler(event:SessionEvent):void
       if(!lccsConnectSession.isSynchronized)
          Alert.show("your connection with the service is lost.\n Do you want ot Reconnect?","!Warning",Alert.YES|Alert.NO,this,conAlertClose_Hanlder);
       else
        createSharedCollectionNode();
        createPods();
               lccsConnectSession.userManager.setUserDisplayName(lccsConnectSession.userManager.getUserD escriptor(lccsConnectSession.userManager.myUserID).userID,displayName1);
    private function createPods():void
       //Alert.show("hostAppload");
       createScreenSharePod();
       createSharedWhiteBoardPod();
           createTextChatPod();
                createVideoChatPod();
                createSharedNotesPod();
                  createSharedFilesPod();
           private function createSharedFilesPod():void
           fileSharePod=new FileShare();
           fileSharePod.addEventListener(CollectionNodeEvent.SYNCHRONIZATION_CHANGE,onSyn);
           fileSharePod.id="fshare";
           fileSharePod.connectSession=lccsConnectSession;
           fileSharePod.subscribe();
    private function onSyn(event:CollectionNodeEvent):void
         Alert.show("synchange"+fileSharePod.isSynchronized);
    like createSharedFilesPod method ,i create the other pods like whiteBoard,sharedNotes,chatPod etc

  • Problem with control IDs

    I have two different panels in my program with various controls. The .h file
    created by Labwindows for my .uir is partially reproduced below:
    #include
    #ifdef __cplusplus
    extern "C" {
    #endif
    /* Panels and Controls: */
    #define PANEL 1
    #define PANEL_DATE 2
    #define PANEL_FILE 3
    #define PANEL_EWTR 4
    #define PANEL_PROCESS 5
    #define PANEL_CONVERT 6
    #define PANEL_DONE 7
    #define PANEL_PRINT 8
    #define PANEL_SAVE 9
    #define PANEL_TEXTBOX 10
    #define PANEL_TEMP 11
    #define PANEL_RH 12
    #define PANEL_ATM 13
    #define PANEL_MARKER_FREQ 14
    #define PANEL_MARKER_DB 15
    #define PANEL_MARKER_MIN 16
    #define PANEL_MARKER_MAX 17
    #define PANEL_MARKER_RIGHT 18
    #define PANEL_MARKER_LEFT 19
    #define PANEL_GRAPH 20
    #define PANEL_SCALE 21
    #define PANEL_MARKER 22
    #define PANEL_TEXTMSG_3 23
    #define PANEL_TEXTMSG_4 24
    #define PANEL_TEXTMSG_2 25
    #define PANEL_TEXTMSG 26
    #define PANEL_2 2
    #define PANEL_2_GRAPH 2
    #define PANEL_2_N_5 3
    #define PANEL_2_N_4 4
    #define PANEL_2_N_3 5
    #define PANEL_2_N_2 6
    #define PANEL_2_N_1 7
    #define PANEL_2_LED_5 8
    #define PANEL_2_LED_4 9
    #define PANEL_2_LED_3 10
    #define PANEL_2_LED_2 11
    #define PANEL_2_LED_1 12
    #define PANEL_2_DONE 13
    #define PANEL_2_MARKER_FREQ 14
    #define PANEL_2_MARKER_DB 15
    #define PANEL_2_MARKER_MIN 16
    #define PANEL_2_MARKER_MAX 17
    #define PANEL_2_MARKER_RIGHT 18
    #define PANEL_2_MARKER_LEFT 19
    #define PANEL_2_PRINT 20
    #define PANEL_2_BUTTON_5 21
    #define PANEL_2_BUTTON_4 22
    #define PANEL_2_BUTTON_3 23
    #define PANEL_2_BUTTON_2 24
    #define PANEL_2_BUTTON_1 25
    #define PANEL_2_CURRENT 26
    #define PANEL_2_TEXTMSG_2 27
    #define PANEL_2_TEXTMSG_3 28
    #define PANEL_2_TEXTMSG_4 29
    #define PANEL_2_TEXTMSG 30
    #define PANEL_2_MARKER 31
    The problem is that Labwindows has assigned the same control ID to controls
    in the two panels, for example, PANEL_MARKER_MIN and PANEL_2_MARKER_MIN have
    the same ID, i.e. 16. If I try to use both of these controls in the same
    "case" statment, I get an error "Duplicate case label '16'." If I try to
    modify the .h file manually, and change the ID for PANEL_2_MARKER_MIN to
    216, there is no error and the program executes but it no longer recognizes
    mouse clicks on the PANEL_2_MARKER_MIN control.
    Is there some way to fix this problem? Is there a way to force Labwindows
    to assign different IDs for all controls, regardless of what panel they are
    in?
    Thank you for your help in advance.

    "...The problem is that Labwindows has assigned the same control ID to
    controls
    in the two panels, for example, PANEL_MARKER_MIN and PANEL_2_MARKER_MIN have
    the same ID, i.e. 16. If I try to use both of these controls in the same
    "case" statment, I get an error "Duplicate case label '16'." ..."
    UIR editor counts controls inside the single panel they are in. In your
    example, PANEL_MARKER_MIN and PANEL_2_MARKER_MIN have the same ID 'cause
    both are the 16th control in their panel, rare case but it happens...
    There is no way to force UIR editor to assign specific IDs to controls,
    unless you add in one panel decoration controls or text messages and put
    them before the other control in 'panel order' (ctrl+t in the editor): with
    that trick you put in one panel all controls star
    ting with order 0 (that is,
    with control ID starting from 1 in the .h file), while in the second you
    have non-operative contrls with lower IDs and operative controls or
    indicator with higher IDs. This is NOT a polite solution since it relies on
    the number of controls in the panels: every time you add new controls to a
    panel, you should manage how IDs are assigned to them in order to avoid this
    problem...
    The best solution is to have two nested cases in your code, first one to
    manage different panels, second one to manage different controls:
    switch (panel) {
    case PANEL:
    switch (control) {
    case PANEL_MARKER_MIN:
    break;
    // other controls of PANEL must be put here
    break;
    case PANEL_2:
    switch (control) {
    case PANEL_2_MARKER_MIN:
    break;
    // Other controls of PANEL_2 here
    break;
    That way you avoid any possible confusion and control mismatching that can
    c
    ause bizarre beaviour to your progrma.
    Hope that helps
    Roberto

  • Centre Speaker Problem with Z-5500 and X

    When I have entertainment mode enabled (not sure if its the mode's problem or not) the centre speaker doesnt play alot of the music (I heard the voices are supposed to come from centre while ambience comes from the other speakers) most of the sound is coming from the other 4 speakers. Also, when the song gets real intense (or a word starting with "s" is said) the speaker starts to crackle and fizzle, and it makes me think the speaker is dieing or not able to handle that sound. However, when I enable game mode and play counterstrike or such, with the volume pretty high (about halfway for the Z-5500 is deafening) I can shoot and throw grenades and such but the centre channel (which plays alot more sound then when Im playing music) doesnt crackle or fizzle, it handles pretty much 80% of the sound) I especially hear the crackling/distortion or whatever it is when Im playing System of a Down's Chop Suey, when he says the line "self righteous suicide" it crackles and causes a fuzzy sound when he says it, and some other songs have parts of it when this happens. Just wondering why the X-Fi is causing this (i dont think its the modes problem cause I have the problem with game mode too) but it cant be the speaker as it works perfectly fine in game.

    Hows it going mate. i have a very similar setup to you and have the same problem. the sound only comes out of the front and centre speakers. even the surround sound comes out of the fronts. this is because the vista drivers do not support dolby digital or dts. lol what a waste of money. there is no warnings about this when you purchase the card. i am appauled at this. It is false advertising.

  • ABAP Objects: Problems with controls in splitter container

    Hi community,
    I have problems with the second control in a splitter container.
    In the left container I build up a <u>list tree</u>.
    On double click on a node a <u>column tree</u> in the right container is created.
    This is working fine.
    But if I double click on another node in the left container the right tree remains unchanged.
    What do I have to do to update/refresh the tree in the right splitter container.
    Thanks in advance.
    Regards
    Ferdi

    Thanks for your reply Thomas and Serdar,
    I now destroy the right container and the right tree control if it exists after the event 'double_click' on a node in the left tree.
    The result is now that the container is created (I can see it on screen) but no tree is shown.
    If I just destroy the tree control but not the container the tree from the first double click on the left tree is shown.
    In the debugger I see that the list tree instance is linked to the caontainer (after first and second creation of tree control)
    Maybe you can see in the coding below what's wrong or missing.
    Coding after EVENT DOUBLE_CLICK in left Tree: <pre>
    destroy ‘old’ tree instance and container
      if not g_container_2 is initial.
        call method g_container_2->free.
        clear: g_container_2, g_tree_2.
      endif.
    create right container
      call method g_splitter->get_container
                exporting row      = 1
                          column   = 2
                receiving container = g_container_2.
    setup the hierarchy header
      hierarchy_header-heading = 'Hierarchy Header'.
      hierarchy_header-width = 37.       
    create a column tree model instance
      create object g_tree_2
        exporting
          node_selection_mode = cl_column_tree_model=>node_sel_mode_single
          item_selection = 'X'
          hierarchy_column_name = 'C1'
          hierarchy_header = hierarchy_header.
    create tree control
      call method g_tree_2->create_tree_control
        exporting
          parent = g_container_2.
      perform add_columns.
      perform define_events.
    set registered events
      call method g_tree_2->set_registered_events
        exporting
          events = events.
      perform get_data.
      perform add_nodes_2.
    expand the root node
      call method g_tree_2->expand_node
        exporting
          node_key = 'Root'
          level_count = 3.
    </pre>
    Regards
    Ferdi
    Message was edited by: Ferdi Meyer

  • SYNCHING PROBLEMS WITH I POD CLASSIC

    SINCE UPGRADING TO MAVERICKS MY I POD CLASSIC WILL NOT SYNCH WHEN I CONNECT TO I TUNES...ALSO WHEN MY I POD IS CONNECTED AND I'M PLAYING MUSIC FROM IT, IT WILL CRASH ONCE IN A WHILE...MY I PHOTO ALSO CRASHES ONCE IN A WHILE....NEVER HAD THESE PROBLEMS WITH MOUNTAIN LION.. ANY ANSWERS OUT THERE?????

    Not sure what you just wrote.
    You can use your iPod on any computer.
    When you connect it to iTunes for the 1st time on a computer, it will ask if you want to link the iPod to this library. If you say yes, it will simply Automatically update everything when connected to this computer.
    You don't need to delete anything from another computer.

  • Problem with I pod and new computer

    When I connect my I pod classic to my new computer I get the message
    Theres a problem with this drive - scan the drive now to fix it
    What does this mean - I don't know what to do - HELP!!!!!

    Sync using the manual method
    Managing content manually on iPhone, iPad, and iPod

  • HT5858 Problem with control center

    When I swipe up from the bottom of my screen, the control center almost never comes up! What's going on?

    Do you have a bulky case with an edge near the bottom of the screen?
    Lots of people describe this problem with Otterbox Defender case.
    https://discussions.apple.com/message/23015788
    Sounds like maybe Apple just needs to make the CC swipe button a little bigger.

  • Bluetooth speaker problems with Macbook Pro

    Hi all,
    I have just purchased a blue tooth speaker for my home, and am having chronic issues with the speakers cutting out when using my Macbook Pro.  Sometimes it works ok, and then all of a sudden it's choppy and barely able to play.   Also, I can barely move the speakers 10 feet away without starting to lose the signal. But even at super close range there is some choppyness at times (and sometimes it's pretty bad).   I have an Iphone, and the speakers work perfectly with it.  I have tried the speakers with my dad's Ipad and it works fantastic... In both cases (Iphone and Ipad), I can control the speaker from the basement, below the floor where the speakers are, without losing any signal or quality.  I am currently testing the Big Jam Box, but have also tried the Bose SoundLink and had the same issues.
    I have tried a few things, including changing the minimum bitrate to a few different things (40, 50, 60), and I haven't seen any improvement.
    My MacBook is not showing any needed updates that relate to Bluetooth (there is a camera update, and Safari update showing I think).
    I have tried disconnecting my Magic Mouse, thinking that might be causing interference. It didn't make a difference.
    I tried deselecting/selecting many different options within the bluetooth preferences, to the point that my head is spinning.
    Currently, I have the following selections made, which I think are pretty close to how the computer was sent to me:
    - Bluetooth is "on" but not discoverable
    - In the Advanced menu, I have deselected "reject in coming requests".   In the serial ports box, the "on" is checked, but the next box (not even sure what that is) is unselected, and the type is showing as a MODEM (RS-232 is the other option).
    - All other boxes in the Advanced Menu are checked.
    - In the Sharing Menu, I have nothing selected.
    Does anyone have any advice for how I should approach troubleshooting this?   I've been googling this for a couple of weeks, and my brain is about to explode with all the information.  Seems like many people are having similar issues, but many are finding resolutions to their issues, so I'm hopeful.  Could I just have a bum bluetooth in my Macbook (it's only a month old), non retina.
    Thank you in advance for any help!

    Realize this is an old post, but in case anyone is searching:  I also had this problem but fixed it by resetting PRAM.  Shut down the computer.  Then start up again, holding down the option, command, P, and S keys.

  • Problem with control hints and date formatting

    Hi,
    I have a Date attribute with a control hint 'dd.MM.yyyy' in my EO. When the user browse through the data all date values have 4 digits. But when a lazy user changes a date value to e.g. 12.12.04, the new value is stored as 12.12.0004. This is correct Java behavior.
    When I change my control hint to 'dd.MM.yy', the lazy user can enter 12.12.04, which is stored as 12.12.2004. Great, but the user want to see a 4-digit year.
    My problem is that the customer wants to enter only 2 digits for the year but the application must render the date with 4 digits.
    How can I configure ADF to solve my problem?
    Does Domains help? Is there a general switch in Java or ADF witch converts 12.12.04 to 12.12.2004?
    Any hints are welcome.
    Thanks,
    Markus

    For your 2nd problem, you can create a field of type string (create a data type which has domain STRING), which has unlimited lenght. However, you can only have 3 of these fields in your table.
    I think this will solve the # problem too.
    Regards,
    Valter Oliveira.

  • Problem with control panel in vista on gx620

    My friend and i who just recently both bought the MSi gx620 notebook have a very strange problem. After a short while some of the objects in the control panel have become not functional. Things that does not worl is:
    Windows Update
    Windows power control
    the window where you change desktop resolution and background image
    User control
    and some others
    the thing it does it that it seems to open an explorer window but then immidiately closes it again.
    Some of the things in the control panel still works such as device manger and other things.
    We suspect that it might have to do with some of the updates vista downloads and installs but we do not know which one, have anyone else had this problem or have any idea on how to solve it?

    got exactly the same problem on my gx 720. I have tried to reinstalled c drive  which helped until i tried either to update windows or install a new program.
    Im considering sending the notebook to maintainance!
    Patrick

  • Multiple Speaker Problem with Airport Express

    I'm having an issue with my Airport Express in selecting Multiple Speakers. I have one Airport Express located in the Living Room, and have no problem playing music on that directly from iTunes. However I cannot play there and on the Mac at the same time. An error message comes up:
    An error occurred while connecting to the remote speaker "Living Room". An unknown error occurred (-15000).
    I can clear the error and then go back to listening either in the living room or on the computer, but not both.
    I have tried reinstalling everything...iTunes, Airport, Mac OSX, you name it.
    Any ideas anyone?

    I may have a solution for you Shannon. My solution, found after a lengthly Apple Support call, applies to Tiger 10.4.11 however it likely applies to Leopard as well. The problem is with your Firewall settings which may be blocking UDP access and or have it operating under a Stealth Mode. It must be set to allow UDP Traffic.
    In 10.4.11 under System preferences/Sharing/Firewall under the Advanced button there are three checkboxes "Block UDP Traffic" "Enable Firewall Logging" and "Enable Stealth Mode". Uncheck all three of these boxes and it should work.

  • Problem with i pod

    I can two different I pods, one is a shuffle and one is 3nd gen. I pod touch, the shuffle will sync and my computer finds it but when I try to sync the touch, my computer doesn't find it to sync and I'm not sure why or how to fix this problem.

    Hey there teresat702,
    Here is an article that will help you troubleshoot this issue with your iOS device not being recognized in iTunes:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • Problem with controls refresh

    Hi,
    I need help with multiple controls refresh.  There must be something I don't grasp with air development because I have multuple refresh problems in my app. 
    I try to assign values to a list of DropDownList controls.  I do this action in the TreeChanged event of the Tree control (use as menu).  When the event occure, at first it display the result but if I change my Tree selection and come back, all control will not display any values.  Then if I change my menu selection and come back, all will be displayed perfect.  So my problem does not seems to be code related, there is no bug and a trace showed me that the same pice of code is used with or without the display problem.  I really need help with this 'cause it make the application unsusable or verry unpleasent ... 
    Here is the sreucture of my form ...
    <s:Panel width="100%" height="100%" id="pnlDashConfiguration"  doubleClickEnabled="true" doubleClick="util.ScreenShot(event, pnlDashConfiguration)" contentBackgroundColor="#FFFFFF" chromeColor="#CCCCCC" title="Configuration">
      <mx:HDividedBox width="100%" height="100%">
       <mx:Canvas width="250" height="100%" backgroundColor="#FFFFFF" id="CanvasInfo">
        <s:Panel title="Liste" left="8" top="8" bottom="8" right="8">
         <mx:Tree id="TreeConfig" dataProvider="{TreeConfiguration}" showRoot="false" labelField="@label" change="DashConfigurationTreeChanged(event)" width="100%" height="100%" textAlign="left"></mx:Tree>
        </s:Panel>
       </mx:Canvas>
       <mx:Canvas  width="100%" height="100%" backgroundColor="#FFFFFF"  id="CanvasDetail">
        <s:Panel title="Détail" id="pnlConfigDetail" left="8" top="8" right="8" bottom="8">
         <s:layout>
          <s:BasicLayout/>
         </s:layout>
         <mx:ViewStack id="vsConfig"  width="100%" height="100%" creationPolicy="all">
          <s:NavigatorContent label="paneDefaultTamis" width="100%" height="100%" id="vsnTamis">
           <s:Scroller width="100%"  height="100%"  left="8" right="8" top="8">
           <s:HGroup width="100%"  height="100%">
            <s:Panel width="380" height="325" id="pnlConfigurationAsphalte" title="Enrobés" left="396" top="8">
             <s:TileGroup horizontalAlign="left" requestedRowCount="10" orientation="columns" requestedColumnCount="5" horizontalGap="-50" textAlign="center" id="GroupTamis" left="8" top="8">
              <s:Label id="txtTamis01" text="Tamis 1" verticalAlign="middle"/>
              <s:Label id="txtTamis02" text="Tamis 2" verticalAlign="middle"/>
              <s:Label id="txtTamis03" text="Tamis 3" verticalAlign="middle"/>
              <s:Label id="txtTamis04" text="Tamis 4" verticalAlign="middle"/>
              <s:Label id="txtTamis05" text="Tamis 5" verticalAlign="middle"/>
              <s:Label id="txtTamis06" text="Tamis 6" verticalAlign="middle"/>
              <s:Label id="txtTamis07" text="Tamis 7" verticalAlign="middle"/>
              <s:Label id="txtTamis08" text="Tamis 8" verticalAlign="middle"/>
              <s:Label id="txtTamis09" text="Tamis 9" verticalAlign="middle"/>
              <s:Label id="txtTamis10" text="Tamis 10" verticalAlign="middle"/>
              <s:DropDownList id="ddConfigTamis01" labelField="Standard" change="CheckTamisUniqueSelection(1, ddConfigTamis01);DisplayConfigurationSave();" ></s:DropDownList>
              <s:DropDownList id="ddConfigTamis02" labelField="Standard" change="CheckTamisUniqueSelection(2, ddConfigTamis02);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis03" labelField="Standard" change="CheckTamisUniqueSelection(3, ddConfigTamis03);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis04" labelField="Standard" change="CheckTamisUniqueSelection(4, ddConfigTamis04);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis05" labelField="Standard" change="CheckTamisUniqueSelection(5, ddConfigTamis05);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis06" labelField="Standard" change="CheckTamisUniqueSelection(6, ddConfigTamis06);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis07" labelField="Standard" change="CheckTamisUniqueSelection(7, ddConfigTamis07);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis08" labelField="Standard" change="CheckTamisUniqueSelection(8, ddConfigTamis08);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis09" labelField="Standard" change="CheckTamisUniqueSelection(9, ddConfigTamis09);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis10" labelField="Standard" change="CheckTamisUniqueSelection(10, ddConfigTamis10);DisplayConfigurationSave();"></s:DropDownList>
              <s:Label  id="txtSpace01" text=""/>
              <s:Label  id="txtSpace02" text=""/>
              <s:Label  id="txtSpace03" text=""/>
              <s:Label  id="txtSpace04" text=""/>
              <s:Label  id="txtSpace05" text=""/>
              <s:Label  id="txtSpace06" text=""/>
              <s:Label  id="txtSpace07" text=""/>
              <s:Label  id="txtSpace08" text=""/>
              <s:Label  id="txtSpace09" text=""/>
              <s:Label  id="txtSpace10" text=""/>
              <s:Label  id="txtTamis11" text="Tamis 11" verticalAlign="middle"/>
              <s:Label  id="txtTamis12" text="Tamis 12" verticalAlign="middle"/>
              <s:Label  id="txtTamis13" text="Tamis 13" verticalAlign="middle"/>
              <s:Label  id="txtTamis14" text="Tamis 14" verticalAlign="middle"/>
              <s:Label  id="txtTamis15" text="Tamis 15" verticalAlign="middle"/>
              <s:Label  id="txtTamis16" text="Tamis 16" verticalAlign="middle"/>
              <s:Label  id="txtTamis17" text="Tamis 17" verticalAlign="middle"/>
              <s:Label  id="txtTamis18" text="Tamis 18" verticalAlign="middle"/>
              <s:Label  id="txtTamis19" text="Tamis 19" verticalAlign="middle"/>
              <s:Label  id="txtTamis20" text="Tamis 20" verticalAlign="middle"/>
              <s:DropDownList id="ddConfigTamis11" labelField="Standard" change="CheckTamisUniqueSelection(11, ddConfigTamis11);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis12" labelField="Standard" change="CheckTamisUniqueSelection(12, ddConfigTamis12);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis13" labelField="Standard" change="CheckTamisUniqueSelection(13, ddConfigTamis13);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis14" labelField="Standard" change="CheckTamisUniqueSelection(14, ddConfigTamis14);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis15" labelField="Standard" change="CheckTamisUniqueSelection(15, ddConfigTamis15);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis16" labelField="Standard" change="CheckTamisUniqueSelection(16, ddConfigTamis16);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis17" labelField="Standard" change="CheckTamisUniqueSelection(17, ddConfigTamis17);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis18" labelField="Standard" change="CheckTamisUniqueSelection(18, ddConfigTamis18);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis19" labelField="Standard" change="CheckTamisUniqueSelection(19, ddConfigTamis19);DisplayConfigurationSave();"></s:DropDownList>
              <s:DropDownList id="ddConfigTamis20" labelField="Standard" change="CheckTamisUniqueSelection(20, ddConfigTamis20);DisplayConfigurationSave();"></s:DropDownList>
             </s:TileGroup>
            </s:Panel>
           <s:Panel width="380" height="325" id="pnlConfigurationGranulometrie" title="Granulométrie" left="8" top="8">
            <s:TileGroup horizontalAlign="left" requestedRowCount="10" orientation="columns" requestedColumnCount="5" horizontalGap="-50" textAlign="center" id="GroupTamis0" left="8" top="8">
             <s:Label id="txtTamis0" text="Tamis 1" verticalAlign="middle"/>
             <s:Label id="txtTamis1" text="Tamis 2" verticalAlign="middle"/>
             <s:Label id="txtTamis2" text="Tamis 3" verticalAlign="middle"/>
             <s:Label id="txtTamis3" text="Tamis 4" verticalAlign="middle"/>
             <s:Label id="txtTamis4" text="Tamis 5" verticalAlign="middle"/>
             <s:Label id="txtTamis5" text="Tamis 6" verticalAlign="middle"/>
             <s:Label id="txtTamis6" text="Tamis 7" verticalAlign="middle"/>
             <s:Label id="txtTamis7" text="Tamis 8" verticalAlign="middle"/>
             <s:Label id="txtTamis8" text="Tamis 9" verticalAlign="middle"/>
             <s:Label id="txtTamis9" text="Tamis 10" verticalAlign="middle"/>
             <s:DropDownList id="ddConfigTamisGran01" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran01)" change="CheckTamisUniqueSelectionGran(1, ddConfigTamisGran01);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran02" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran02)" change="CheckTamisUniqueSelectionGran(2, ddConfigTamisGran02);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran03" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran03)" change="CheckTamisUniqueSelectionGran(3, ddConfigTamisGran03);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran04" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran04)" change="CheckTamisUniqueSelectionGran(4, ddConfigTamisGran04);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran05" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran05)" change="CheckTamisUniqueSelectionGran(5, ddConfigTamisGran05);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran06" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran06)" change="CheckTamisUniqueSelectionGran(6, ddConfigTamisGran06);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran07" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran07)" change="CheckTamisUniqueSelectionGran(7, ddConfigTamisGran07);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran08" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran08)" change="CheckTamisUniqueSelectionGran(8, ddConfigTamisGran08);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran09" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran09)" change="CheckTamisUniqueSelectionGran(9, ddConfigTamisGran09);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran10" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran10)" change="CheckTamisUniqueSelectionGran(10, ddConfigTamisGran10);DisplayConfigurationSave();"></s:DropDownList>
             <s:Label  id="txtSpace0" text=""/>
             <s:Label  id="txtSpace1" text=""/>
             <s:Label  id="txtSpace2" text=""/>
             <s:Label  id="txtSpace3" text=""/>
             <s:Label  id="txtSpace4" text=""/>
             <s:Label  id="txtSpace5" text=""/>
             <s:Label  id="txtSpace6" text=""/>
             <s:Label  id="txtSpace7" text=""/>
             <s:Label  id="txtSpace8" text=""/>
             <s:Label  id="txtSpace9" text=""/>
             <s:Label  id="txtTamis21" text="Tamis 11" verticalAlign="middle"/>
             <s:Label  id="txtTamis22" text="Tamis 12" verticalAlign="middle"/>
             <s:Label  id="txtTamis23" text="Tamis 13" verticalAlign="middle"/>
             <s:Label  id="txtTamis24" text="Tamis 14" verticalAlign="middle"/>
             <s:Label  id="txtTamis25" text="Tamis 15" verticalAlign="middle"/>
             <s:Label  id="txtTamis26" text="Tamis 16" verticalAlign="middle"/>
             <s:Label  id="txtTamis27" text="Tamis 17" verticalAlign="middle"/>
             <s:Label  id="txtTamis28" text="Tamis 18" verticalAlign="middle"/>
             <s:Label  id="txtTamis29" text="Tamis 19" verticalAlign="middle"/>
             <s:Label  id="txtTamis30" text="Tamis 20" verticalAlign="middle"/>
             <s:DropDownList id="ddConfigTamisGran11" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran11)"  change="CheckTamisUniqueSelectionGran(11, ddConfigTamisGran11);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran12" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran12)"  change="CheckTamisUniqueSelectionGran(12, ddConfigTamisGran12);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran13" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran13)"  change="CheckTamisUniqueSelectionGran(13, ddConfigTamisGran13);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran14" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran14)"  change="CheckTamisUniqueSelectionGran(14, ddConfigTamisGran14);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran15" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran15)"  change="CheckTamisUniqueSelectionGran(15, ddConfigTamisGran15);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran16" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran16)"  change="CheckTamisUniqueSelectionGran(16, ddConfigTamisGran16);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran17" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran17)"  change="CheckTamisUniqueSelectionGran(17, ddConfigTamisGran17);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran18" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran18)"  change="CheckTamisUniqueSelectionGran(18, ddConfigTamisGran18);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran19" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran19)"  change="CheckTamisUniqueSelectionGran(19, ddConfigTamisGran19);DisplayConfigurationSave();"></s:DropDownList>
             <s:DropDownList id="ddConfigTamisGran20" labelField="Standard" valueCommit="ddConfigTamisvalidHandler(event, ddConfigTamisGran20)"  change="CheckTamisUniqueSelectionGran(20, ddConfigTamisGran20);DisplayConfigurationSave();"></s:DropDownList>
            </s:TileGroup>
           </s:Panel>
           </s:HGroup>
           </s:Scroller>
          </s:NavigatorContent>
         </mx:ViewStack>
         <Comp_MenuBar:Menu_Save y="-28" right="4" id="btnConfigurationSave" visible="false" click="ConfigurationSave();">
         </Comp_MenuBar:Menu_Save>
        </s:Panel>
       </mx:Canvas>
      </mx:HDividedBox>
    </s:Panel>
    I also include 2 pictures of my form.  The populated on is when it is working and the other is when the selection did not showed up.
          I put these 3 lines before assigning the values to the controls and it work.
         invalidateProperties();
         invalidateDisplayList();
         validateNow();
         I don't really get why I need to put the lines before I change the values instead of after the change.  I would like to understand this if someone can tell me but in the mean time this fixed my issue.
    Thanks

    try myList.invalidateList();

Maybe you are looking for

  • Invoking BAPI_MATERIAL_SAVEDATA as a web service from CAF

    I am new to BAPI world. Currently, we are building a composite application - a part of the application interacts with SAP R3 for creating materials and then getting a list of all created materials. We are using the following BAPIs: BAPI_MATERIAL_SAVE

  • Configure WDS error - The Network path was not found

    I'm trying to configure WDS on Server 2012 R2. The Server is a DC and hosting DHCP and DNS. When running through the wizard or via command line to configure WDS, I get a message saying "The network path was not found". The folder gets created, howeve

  • (urgent help) problems connecting the muvo n

    i just bought it today and i was so happy.. but, i cant seem to connect it to the computer. i have connected the usb cable yet my computer says no device connected to the computer.. nor do i get that status diagram on my player.. the player turns on

  • How is this EVEN possible?

    http://img526.imageshack.us/img526/7306/screenshot20110105at105.png OSX 10.6.5 iMac Intel 24"

  • How does one have multiple email signatures on iPad?

    I don't fancy having to purchase an app just to have my business signature when using Mail on my iPad, but I also have my personal email on there as well, so I don't want to have just one signature.  Surely Apple thought of this for the business user