Using ps3 control on Ps vita via blutooth

As far as I remember reading, the Bluetooth is only for audio? - so headphones etc, not controllers (at present) - I maybe wrong though... But since there's no TV out for he console (at present) they may not think there's a need for it on a hand held?

Chrisobsession wrote:
are you god or something where you KNOW these answers ? you sound very arrogant saying "it's NEVER going to happen" anything is possible just cause the console has all these features there are some out there that would prefer to use a controller bluetooth ...  the customer is always right so if this idea is in demand by many, then sony will eventually patch this and add it to a firmware update .. and if they dont ... then some dev's will leak there ways on how they did it  don't give people false information if you DON'T know I think you need to get off your high horse. If I were you I'd think twice before flaming or insulting other people or accusing people of something when it's not true. It happens to be my opinion based on historically how Sony's stance has been on the subject, what they have said in the past and and what their focus is regards the Vita. You can think what you want and make yourself believe it will happen but it's not going to happen. You obviously have no clue as to what Sony are trying to do with the Vita or what direction they are going in. They aren't even providing remote play for PS3 games you seriously think they are going to enable PS3 control on the Vita via Bluetooth.

Similar Messages

  • Sales order creation with bapi in webdynpro using table control

    When i use table control to update the line items only first row is getting updated in the sale order creation and the loop is not updating the other row to header only the first row is getting saved, for the same set of data sale order is getting created in va01 for multiple line items. Pls give me some idea to resolve this issue, here is the code i am using for creating sale order using bapi 'BAPI_SALESORDER_CREATEFROMDAT2' method CREATE_SALES_ORDER .
    Declaration for Order Header Node DATA: node_order_header TYPE REF TO if_wd_context_node, elem_order_header TYPE REF TO if_wd_context_element, stru_order_header TYPE if_componentcontroller=>element_order_header . * Declaration for Order Items Node DATA: node_order_items TYPE REF TO if_wd_context_node, elem_order_items TYPE REF TO if_wd_context_element, stru_order_items TYPE if_componentcontroller=>element_order_items . * Declaration for Order Partners Node DATA: node_order_partners TYPE REF TO if_wd_context_node, elem_order_partners TYPE REF TO if_wd_context_element, stru_order_partners TYPE if_componentcontroller=>element_order_partners . node_order_header = wd_context->get_child_node( name = if_componentcontroller=>wdctx_order_header ). elem_order_header = node_order_header->get_element( ). elem_order_header->get_static_attributes( IMPORTING static_attributes = stru_order_header ). * via lead selection node_order_items = wd_context->get_child_node( name = if_componentcontroller=>wdctx_order_items ). elem_order_items = node_order_items->get_element( ). elem_order_items->get_static_attributes( IMPORTING static_attributes = stru_order_items ). * via lead selection node_order_partners = wd_context->get_child_node( name = if_componentcontroller=>wdctx_order_partners ). elem_order_partners = node_order_partners->get_element( ). elem_order_partners->get_static_attributes( IMPORTING static_attributes = stru_order_partners ). DATA: v_sales_doc TYPE bapivbeln-vbeln. DATA: w_order_header_in TYPE bapisdhd1, i_order_header_in TYPE table of bapisdhd1," i_order_partners TYPE TABLE OF bapiparnr, w_order_partners TYPE bapiparnr, i_return TYPE TABLE OF bapiret2, w_return TYPE bapiret2, i_order_items_in TYPE TABLE OF bapisditm, w_order_items_in TYPE bapisditm, i_order_conditions_in TYPE TABLE OF bapicond, w_order_conditions_in TYPE bapicond, w_order_SCHDL type BAPISCHDL, i_order_SCHDL type table of BAPISCHDL. * Order Header Details CLEAR: w_order_header_in, i_order_partners, i_return, i_order_items_in, i_order_conditions_in, w_order_SCHDL, i_order_SCHDL. refresh : i_order_partners, i_return, i_order_items_in, i_order_conditions_in, i_order_SCHDL. w_order_header_in-doc_type = stru_order_header-doc_type. w_order_header_in-sales_org = stru_order_header-sales_org. w_order_header_in-distr_chan = stru_order_header-distr_chan. w_order_header_in-division = stru_order_header-division. w_order_header_in-req_date_h = stru_order_header-req_date_h. w_order_header_in-sales_dist = stru_order_header-sales_dist. w_order_header_in-purch_no_c = stru_order_header-purch_no_c. * Order Item Details CLEAR: i_order_items_in,w_order_items_in. * w_order_items_in-itm_num = stru_order_items-itm_num. w_order_items_in-ITM_NUMBER = stru_order_items-ITM_NUMBER. w_order_items_in-material = stru_order_items-material. w_order_items_in-target_qty = stru_order_items-target_qty."'5'. w_order_items_in-target_qu = stru_order_items-target_qu."'5'. w_order_items_in-plant = stru_order_items-plant. w_order_items_in-target_val = stru_order_items-target_val. w_order_items_in-currency = stru_order_items-currency. CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = w_order_items_in-material IMPORTING output = w_order_items_in-material. APPEND w_order_items_in TO i_order_items_in. * Order Partner Details CLEAR: i_order_partners,w_order_partners. w_order_partners-partn_role = stru_order_partners-partn_role. w_order_partners-partn_numb = stru_order_partners-partn_numb. CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = w_order_partners-partn_numb IMPORTING output = w_order_partners-partn_numb. APPEND w_order_partners TO i_order_partners. * Order Condition Details w_order_SCHDL-ITM_NUMBER = stru_order_items-itm_number." '000010'. w_order_SCHDL-req_qty = stru_order_items-target_qty." '5'. APPEND w_order_SCHDL to i_order_SCHDL. * Create Sales Order BAPI Call *loop at i_order_header_in into w_order_header_in. CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2' EXPORTING order_header_in = w_order_header_in IMPORTING salesdocument = v_sales_doc TABLES return = i_return order_items_in = i_order_items_in order_partners = i_order_partners order_schedules_in = i_order_SCHDL order_conditions_in = i_order_conditions_in. * Get message manager DATA: l_current_controller TYPE REF TO if_wd_controller, l_message_manager TYPE REF TO if_wd_message_manager. l_current_controller ?= wd_this->wd_get_api( ). CALL METHOD l_current_controller->get_message_manager RECEIVING message_manager = l_message_manager. DATA: v_message_text TYPE string. * When Sales Order is created commit the data IF NOT v_sales_doc IS INITIAL. CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' EXPORTING wait = 'X'. CONCATENATE 'Sales Document' v_sales_doc 'has been created.' INTO v_message_text SEPARATED BY space. * Report Success message CALL METHOD l_message_manager->report_success EXPORTING message_text = v_message_text. ELSE. v_message_text = 'Error Creating Sales Order'. * Report Error message CALL METHOD l_message_manager->report_error_message EXPORTING message_text = v_message_text. ENDIF. *endloop. endmethod. and code for table control i am using is method WDDOINIT . Types : Begin of item_tab, itm_number type bapisditm-itm_number, material type bapisditm-material, plant type bapisditm-plant , target_qty type bapisditm-target_qty, target_qu type bapisditm-target_qu, target_val type bapisditm-target_val, currency type bapisditm-currency, end of item_tab. *Creating internal table and Work Area of the same structure *as that of the Node created. Data : it_item type standard table of item_tab, wa_item type item_tab. *Appending Blank Work Area to Internal table. ***********************************************888 *LOOP AT it_item INTO wa_item. **wa_item-itm_number to bapisditm-itm_number. **wa_item-material to bapisditm-material. **wa_item-plant to bapisditm-plant. **wa_item-target_qty to bapisditm-target_qty. **wa_item-target_qu to bapisditm-target_qu. **wa_item-target_val to bapisditm-target_val. **wa_item-currency to bapisditm-currency. ** * APPEND wa_item TO it_item. *ENDLOOP. **********************************************88 ******** Do 10 times. Append wa_item to it_item. enddo. ********* "Binding the table DATA lo_nd_order_items TYPE REF TO if_wd_context_node. * DATA lt_material TYPE wd_this->Elements_material. * navigate from to via lead selection lo_nd_order_items = wd_context->get_child_node( name = wd_this->wdctx_order_items ). * @TODO handle non existant child * IF lo_nd_material IS INITIAL. * ENDIF. ** @TODO compute values ** e.g. call a model function * lo_nd_order_items->bind_table( new_items = it_item set_initial_elements = abap_true ). endmethod.

    DATA: node_order_header TYPE REF TO if_wd_context_node, elem_order_header TYPE REF TO if_wd_context_element, stru_order_header TYPE if_componentcontroller=>element_order_header . * Declaration for Order Items Node DATA: node_order_items TYPE REF TO if_wd_context_node, elem_order_items TYPE REF TO if_wd_context_element, stru_order_items TYPE if_componentcontroller=>element_order_items . * Declaration for Order Partners Node DATA: node_order_partners TYPE REF TO if_wd_context_node, elem_order_partners TYPE REF TO if_wd_context_element, stru_order_partners TYPE if_componentcontroller=>element_order_partners . node_order_header = wd_context->get_child_node( name = if_componentcontroller=>wdctx_order_header ). elem_order_header = node_order_header->get_element( ). elem_order_header->get_static_attributes( IMPORTING static_attributes = stru_order_header ). * via lead selection node_order_items = wd_context->get_child_node( name = if_componentcontroller=>wdctx_order_items ). elem_order_items = node_order_items->get_element( ). elem_order_items->get_static_attributes( IMPORTING static_attributes = stru_order_items ). * via lead selection node_order_partners = wd_context->get_child_node( name = if_componentcontroller=>wdctx_order_partners ). elem_order_partners = node_order_partners->get_element( ). elem_order_partners->get_static_attributes( IMPORTING static_attributes = stru_order_partners ). DATA: v_sales_doc TYPE bapivbeln-vbeln. DATA: w_order_header_in TYPE bapisdhd1, i_order_header_in TYPE table of bapisdhd1," i_order_partners TYPE TABLE OF bapiparnr, w_order_partners TYPE bapiparnr, i_return TYPE TABLE OF bapiret2, w_return TYPE bapiret2, i_order_items_in TYPE TABLE OF bapisditm, w_order_items_in TYPE bapisditm, i_order_conditions_in TYPE TABLE OF bapicond, w_order_conditions_in TYPE bapicond, w_order_SCHDL type BAPISCHDL, i_order_SCHDL type table of BAPISCHDL. * Order Header Details CLEAR: w_order_header_in, i_order_partners, i_return, i_order_items_in, i_order_conditions_in, w_order_SCHDL, i_order_SCHDL. refresh : i_order_partners, i_return, i_order_items_in, i_order_conditions_in, i_order_SCHDL. w_order_header_in-doc_type = stru_order_header-doc_type. w_order_header_in-sales_org = stru_order_header-sales_org. w_order_header_in-distr_chan = stru_order_header-distr_chan. w_order_header_in-division = stru_order_header-division. w_order_header_in-req_date_h = stru_order_header-req_date_h. w_order_header_in-sales_dist = stru_order_header-sales_dist. w_order_header_in-purch_no_c = stru_order_header-purch_no_c. * Order Item Details CLEAR: i_order_items_in,w_order_items_in. * w_order_items_in-itm_num = stru_order_items-itm_num. w_order_items_in-ITM_NUMBER = stru_order_items-ITM_NUMBER. w_order_items_in-material = stru_order_items-material. w_order_items_in-target_qty = stru_order_items-target_qty."'5'. w_order_items_in-target_qu = stru_order_items-target_qu."'5'. w_order_items_in-plant = stru_order_items-plant. w_order_items_in-target_val = stru_order_items-target_val. w_order_items_in-currency = stru_order_items-currency. CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = w_order_items_in-material IMPORTING output = w_order_items_in-material. APPEND w_order_items_in TO i_order_items_in. * Order Partner Details CLEAR: i_order_partners,w_order_partners. w_order_partners-partn_role = stru_order_partners-partn_role. w_order_partners-partn_numb = stru_order_partners-partn_numb. CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = w_order_partners-partn_numb IMPORTING output = w_order_partners-partn_numb. APPEND w_order_partners TO i_order_partners. * Order Condition Details w_order_SCHDL-ITM_NUMBER = stru_order_items-itm_number." '000010'. w_order_SCHDL-req_qty = stru_order_items-target_qty." '5'. APPEND w_order_SCHDL to i_order_SCHDL. * Create Sales Order BAPI Call *loop at i_order_header_in into w_order_header_in. CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2' EXPORTING order_header_in = w_order_header_in IMPORTING salesdocument = v_sales_doc TABLES return = i_return order_items_in = i_order_items_in order_partners = i_order_partners order_schedules_in = i_order_SCHDL order_conditions_in = i_order_conditions_in. * Get message manager DATA: l_current_controller TYPE REF TO if_wd_controller, l_message_manager TYPE REF TO if_wd_message_manager. l_current_controller ?= wd_this->wd_get_api( ). CALL METHOD l_current_controller->get_message_manager RECEIVING message_manager = l_message_manager. DATA: v_message_text TYPE string. * When Sales Order is created commit the data IF NOT v_sales_doc IS INITIAL. CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' EXPORTING wait = 'X'. CONCATENATE 'Sales Document' v_sales_doc 'has been created.' INTO v_message_text SEPARATED BY space. * Report Success message CALL METHOD l_message_manager->report_success EXPORTING message_text = v_message_text. ELSE. v_message_text = 'Error Creating Sales Order'. * Report Error message CALL METHOD l_message_manager->report_error_message EXPORTING message_text = v_message_text. ENDIF. *endloop. endmethod. and code for table control i am using is method WDDOINIT . Types : Begin of item_tab, itm_number type bapisditm-itm_number, material type bapisditm-material, plant type bapisditm-plant , target_qty type bapisditm-target_qty, target_qu type bapisditm-target_qu, target_val type bapisditm-target_val, currency type bapisditm-currency, end of item_tab. *Creating internal table and Work Area of the same structure *as that of the Node created. Data : it_item type standard table of item_tab, wa_item type item_tab. *Appending Blank Work Area to Internal table. ***********************************************888 *LOOP AT it_item INTO wa_item. **wa_item-itm_number to bapisditm-itm_number. **wa_item-material to bapisditm-material. **wa_item-plant to bapisditm-plant. **wa_item-target_qty to bapisditm-target_qty. **wa_item-target_qu to bapisditm-target_qu. **wa_item-target_val to bapisditm-target_val. **wa_item-currency to bapisditm-currency. ** * APPEND wa_item TO it_item. *ENDLOOP. **********************************************88 ******** Do 10 times. Append wa_item to it_item. enddo. ********* "Binding the table DATA lo_nd_order_items TYPE REF TO if_wd_context_node. * DATA lt_material TYPE wd_this->Elements_material. * navigate from to via lead selection lo_nd_order_items = wd_context->get_child_node( name = wd_this->wdctx_order_items ). * @TODO handle non existant child * IF lo_nd_material IS INITIAL. * ENDIF. ** @TODO compute values ** e.g. call a model function * lo_nd_order_items->bind_table( new_items = it_item set_initial_elements = abap_true ). endmethod.

  • Can I connect my PS3 to my mac mini via HDMI ?

    Hello, I would like to know if I can connect my PS3 to my mac mini via HDMI ?
    I don't have a TV anymore so I really need to know if I can use my mac mini as one.

    Maybe this:
    http://eshop.macsales.com/item/Elgato/10025010/
    But you need OSX 10.7 or later
    and if you have Thrunderbolt connection on your Mini then this maybe:
    http://eshop.macsales.com/item/Blackmagic%20Design/BINTSTBEXT/
    You YOu my be able to Google and find another videi-in adopter for your Mini

  • Problems using access control in sender agreement for SOAP adapter 7.1

    I am trying to use Access Control Lists to restrict user access to web services/interfaces which are exposed via PI. This can be configured via the Integration Builder Directory using the u201CAssigned Usersu201D tab of both Communication Components (Business System) and Sender Agreements.
    The configuration is via the above mentioned components. However, I understand that itu2019s the adapters which at runtime are responsible for actually applying these checks.
    I have been having problems getting the access control to work using a setup involving a SOAP adapter of type SAP BASIS 7.10.
    The symptom of the problem is that although the access control works as expected at the Business System level, any settings at the Sender Agreement level appear to have absolutely no effect whatsoever.
    I have confirmed that I have no problems if I use an adapter of type SAP BASIS 7.00. However, I really need to get this working on 7.1.
    I have looked on the SAP support portal but can not find any notes that relate to this.
    Has anyone else had a similar problem? And have you found a fix for it?
    Any suggestions would be welcome.
    Edited by: Malcolm Dingle on Jun 17, 2009 1:08 PM

    Hi Shai,
    Please have a look at the following link and see if it helps you .
    It deals with SOAP adapter installation and activation 
    Re: SOAP adapter installation and activation
    Best Regards
    Edited by: Prakash Bhatia on May 8, 2009 11:51 AM

  • IPod is using voice over and won't scroll. What setting did my child click? It will allow me to use voice control, but i need to know what's wrong first so I can give the correct command.

    My daughter's iPod is using voice over and won't scroll. What setting did my child click? It will allow me to use voice control, but i need to know what's wrong first so I can give the correct command.

    VoiceOver is an Accessibility feature while Voice Control allows you to control the Music app via voice.
    To turn off VoiceOver triple click the Home button and go to Settings>General>Accessibility and turn it off. Use three fingers to scroll if necessary.
    iPhone: Configuring accessibility features (including VoiceOver and Zoom)
    iOS: Getting started with VoiceOver for accessibility

  • Can I use Swing controls with Forms 9i?

    Is there a way to use Java Swing controls with Forms 9i via a PJC or something? If so, is there a white paper on it? Thanks.

    Yes you can. There is a quick start about PJC here:
    http://otn-stage.us.oracle.com/products/forms/htdocs/upgrade/pjc/content.html
    And there is also a paper about Forms in the Java World that you should read.
    http://otn.oracle.com/products/forms/pdf/forms_in_java_world.pdf
    You might want to have a look at the Oracle9i Forms Demos for some code samples as well.

  • How to use table control in LSMW

    Hello All,
    I have requirement to use LSMW , in my using transaction have table control ,I need to pass values in table control . how to use table control in LSMW .Can any one give me the solution for this.
    Best regards,
    Satya.

    Note: The recording function records a fixed screen sequence. It cannot be used for migrating data containing a variable number of items or for transactions with dynamic screen sequences!
    Tip: It is possible to create a recording via SHDB, generate a program out of this recording, and adopt the program to your needs and registrate the program to be able to use it in LSMW.
    That’s means, for creation of project and WBS Elements is not possible through
    1. LSMW-BDC (For both CJ01 and CJ20n)
    2. LSMW-BAPI (Method: Maintain is not listed )
    3. LSME-Standard Batch Direct Input.
    It’s possible through programmatically(SE38.) either using BAPI Or BDC.
    Thanks,

  • Using Mackie Control with Logic Pro 7 and Yamaha O1X

    I currently own a Yamaha O1x which is a mixer/control surface/audio interface that I use with Logic Pro 7. I am planning on selling the O1X and replacing it with the Mackie Control Universal as my DAW controller and using the Apogee Ensemble as my audio interface. I already have purchased the Mackie Control Universal and would like to begin using it instead of the O1X as my DAW controller, but while I am waiting for the Apogee Ensemble to be released I still need the audio interface capabilties of the O1X. The O1X uses Yamaha's MLAN protocol to connect to the G5. MLAN is a firewire interface that can transmit both audio and midi. Does anyone have a suggestion for a work-around solution so that I can use my Mackie Control Universal (which connects via midi cable) and only use the audio capability but not the control surface of the O1X via the firewire connection? I haven't been able to figure my way through this one and see if it is possible. I have already tried having them both hooked up at the same time, and the Mackie Control seemed to work fine but the audio on the O1X didn't seem to be connecting and functioning properly. I appreciate any help as I am anxious to use my Mackie Control.
    Thank you!

    You need to connect only the Audio and not the MIDI between your 01x and Mac. You can achieve this in mLan Graphic Patchbay-connect the cables between the Nodes in Audio part of a Graphic Patchbay, connect the Wordclock but do not make any MIDI connections. this way it should work as you want. the other way is to Make your regular connection from mLan Autoconnector and disable the MIDI ports that are dedicated to control the DAW by 01x by some freeware utility (01x uses port 1 for that...)
    As this is quite 01x specific, please visit 01xray.com/forums where you will find more help, or send me PM.
    As Apogee enssemble is expected to have great features, I would rather recommend the i88x instead of Enssemble (i88x has two Mic preamps-the best Yamaha produces (derived from Dm2000)VERY good converters (mLan is known for low jitter and it was tested with Rosseta by a mate from 01x forum who said (he tested it in store with other people) that i88x sounded better-may believe it or not...).The mLan Graphis Patchbay application allows you to patch connections between mLan devices and computer -very flexible. 01x already does almost the same as Mackie control and it is for almost the same price.... But maybe you are pi_ssed of waiting for new mLan drivers? I am just speculating....

  • Problems using ActiveX controls

    Hello all,
    I bought a set of ActiveX controls provided with a installation routine.
    Using those controls within LabView after installing them were no
    problem, but for distribution purpose I have to install those ActiveX
    controls manually.
    So I tried to do it on a separate computer by registering the ActiveX
    controls with regsvr32 [regsvr32 ]. But the attempt to
    start a LabView program where these controls were embedded ended with
    the error message "error opening document" (ole_lv5container) and "error
    510 occurred while loading ActiveX control ..."
    I'm working with Windows NT 4.0 and LabView 5.0f2.
    Does anyone know, what I made wrong?
    Bye, Alexander
    Sent via Deja.com http://www.deja.com/
    Before you
    buy.

    Hello all,
    I bought a set of ActiveX controls provided with a installation routine.
    Using those controls within LabView after installing them were no
    problem, but for distribution purpose I have to install those ActiveX
    controls manually.
    So I tried to do it on a separate computer by registering the ActiveX
    controls with regsvr32 [regsvr32 ]. But the attempt to
    start a LabView program where these controls were embedded ended with
    the error message "error opening document" (ole_lv5container) and "error
    510 occurred while loading ActiveX control ..."
    I'm working with Windows NT 4.0 and LabView 5.0f2.
    Does anyone know, what I made wrong?
    Bye, Alexander
    Sent via Deja.com http://www.deja.com/
    Before you
    buy.

  • Use Flash Controls without Flash

    You can spend hours searching keywords concerning the use of
    Flash UI controls -- including skinning via Styles -- outside of
    Flex Builder. There are quite a few extensive, and helpful
    postings. But I cannot find anything that helps with trying to use
    those controls even outside of the context of Flash CS3.
    Is there any way for those of us who cannot afford the
    expensive development tools, to be able to build solutions -- just
    using the SDK and the command line compilers -- that incorporate
    those UI Components, or is this a purposeful product marketing
    decision to only allow applications to be built incorporating those
    controls if you license the IDE?

    Nobody offered a suggestion though!
    I have the same problem. Have chosen to disable it in YouTube because the HTML5 just won't load. It all looks good, sitting there waiting with the usual placeholder there, but when I click on it, nothing loads.

  • How to do configuration to create outbound idoc using message control

    The objective is to create outbound idoc based on some selection criteria using message control approach.The interface will be triggered when there is goods receipt via MIGO transaction.............Now based on the material document number from NAST table i am going to fetch data and do further processing inside the function module i am going to create.later idocs will be created via program RSNASTED.How we do the configuration to set up this whole operation?

    Please go thru:
    1) message control
    2) http://help.sap.com/saphelp_di46c2/helpdata/EN/c8/19878343b111d1896f0000e8322d00/content.htm
    Regards
    Shital

  • Using a Control Surface with the Clip Mixer

    I'm contemplating purchasing a Mackie MCU to help automate some of the volume edits I have to make using 5 tracks in the Audio Clip Mixer over 80 hours of video.  I've tried to contact Adobe support, but they are about as cluless as a bag of hammers.  When I asked if the clip mixer works with a control surface (after 4 calls and 4 different agents) I was told no.  Which is total BS as there is toggle in the clip mixer called "Toggle Control Surface Clip Mixer Mode". They read from scripts and have no clue what they are talking about.   I guess I should not be surprised as its an outsourced call center staffed with drones who have never even used the software, much less in production!  Adobe you should be ashamed of your support, it's appauling! (BTW I own an online Magazine in the 3d industry and will be writting an article about your appauling support soon) 
    Anyway, onto my specific questions:
    1) The Mackie MCU has overlay cards for button mappings for many different apps, but PP is not one of them.  What functionaliy is mapped to the control surface specially from PP and the clipmixer?
    2) Is there a way to group channels so that keyframes can be written to multiple clips at the same time by using one fader?
    3) In the clip mixer there is a keyframe toggle, does such a toggle translate to the control surface?
    4) Sometimes I want to manually keyframe, rather thanan make adjustments while the playhead is moving, so I will simply click the fader slider to write a keyframe, manually move the playhead and then adjust the fader to write the subsequent keyframes.  As faders on a control surface can not be pushed like a button, is there a way to generate a keyframe from the control surface?
    5) Are there any known limitations using the control surface vs the software for both the clip and track mixers?
    Jeff

    The Mackie device has some quirks, and while basic functionality is there, PPro does not have as strong support with mackie as it does with eucon through the avid artist series.  The physical MCU keys switched between different versions of the device and what is undo on one is a different function on another, so sadly, depending on what model you get, those buttons may or may not be correct by the label that is on the device.  There is no way for us to tell which one you have.
    Clip mixer mode can be enabled either through the fly out menu in the clip mixer or by assigning a keyboard shortcut.  When engaged, it supports the faders, pan/balance/mute and solo.  If automation is engaged it will record automation, though you can't engage clip mixer automation via the control surface like you can on the track mixer.
    Unfortunately there is no way to group channels at this time, aside from making a submix, but I do not think this is what you were requesting.
    There is not a way to manually enter a keyframe via a button on the control surface.
    It is possible to customize some of the control surface buttons by hitting the button assignments button in the Mackie control surface window.  This is mostly limited to the function keys and a few others
    The touch and latch mode lights is a known bug.
    If you want more customization, the Avid Artist series has much better support in this regard.  We set up many soft keys, but you can also create your own very easily. 
    I will take a look at the other issues you have raised as they sound like bugs, but I also encourage you to file them through here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform as it will help us to gauge how many are using the mackie protocol vs eucon.
    Thanks
    Todd

  • Voice Control dialling on 3GS via Bluetooth in UK English language

    When I first got my iphone 3GS in Feb 2010 I was really delighted with the voice-control dialling via Bluetooth.  I speak UK English and the language is set to "English (United Kingdom)".  I have about 1200 contacts in the iphone's database.  The OS was OS3.  It worked beautifully.
    Since upgrading the OS to OS4 in mid-2010 the system has never worked properly.  There are some archived discussions on this problem.  It became clear that the early versions of OS4 only worked if you set the voice-control language to US English and spoke with a north-american accent.  In subsequent versions of OS4 it seemed that things had improved, and I even posted a comment thanking Apple for fixing it!   Sorry about that - I was wrong...
    All that has happened is that Apple have slightly improved matters, in that searching the contacts list under voice control now sometimes works - but it is still very poor under Bluetooth.  It usually gets the search wrong - and the quality of the Bluetooth communication when using Voice Control is very poor.  You can't hear the search responses clearly.  I don't think that there is anything wrong with my Bluetooth connection, per se, as phone conversations over Bluetooth are just fine.  The problem is only with voice-control via Bluetooth.  I am currently on OS 4.3.3 (8J2).
    Does anyone else find that Voice-control dialling via Bluetooth is unreliable, using a 3GS on OS4, speaking in a language other than US English?
    Maybe someone has a way of making it work properly?

    in the same boat with a 2006 bmw. the button on the steering wheel dials the last number that was dialed from the cars system, it doesn't behave like default "action" button that is on bluetooth headsets -- that is the issue.
    Is there some way to 1) remap the button in the car (doubtful) or 2) have the car dial a "phone number" that tells the phone to respond with the voice command through the bluetooth system (maybe, but also doubtul)

  • Control a micro-controller via usb

    Hi,
    I'm looking for a way to control a micro-controller via usb using a java program. The micro-controller is used as an on/off switch. Is there a micro-controller that has a java driver provided?
    thanks

    The environment for Arduino is programmed in Java ( http://www.arduino.cc/en/Main/Software ) and you can use Java serial comms to communicate with it ( http://www.csc.kth.se/utbildning/kth/kurser/DH2400/interak06/6-Comm.html ).
    Mine hasn't arrived yet, but I'm planning to play with one.
    Pete

  • Different behaviour with 2 PC's when calling VIT via VI server

    Hello,
    I know there are a lot of posts about VI server and VIT on this forum, but i think my problem is not common.
    I use Labview 6.1 on Windows XP Pro. Pentium 2.6GHz 512Mo.
    My application load many instances of a template VI (vit) via VI server. All goes perfect in the development environment.
    When I generate a redistributable exe via app Builder, the application seems not to load the different instance of the vit, but without Error (I have put an error handler when loading the vit).
    The vit is included in a llb (the same as the main vi). I generate a single executable file (without external llb), i which i see the vit when opened.
    The paths are OK for the 2 environment (debug and runtime),
    vit is loaded in the app builder, and the VI Server Datasocket too. The Front Panel of the instance is opened before executing as explained in some posts.
    The most interesting (crazy?) in this story, is that my application is correctly running (a little bit slower, it's true ... )) on an old PC (Pentium II 300MHz with 128Mo) !!!
    Is there any relationship with the machine speed ?
    If somebody has an explanation ... or a solution (my client has bought a modern PC !)
    Thanks a lot.
    -Michael- (my english is so poor ...)

    Hi MickAltrel
    When I was confronted to this kind of behavior, it was due to loops that where not timed... I know it makes it very basic, but did you check that such problems are not present ?
    Doc-Doc
    Doc-Doc
    http://www.machinevision.ch
    http://visionindustrielle.ch
    Please take time to rate this answer

Maybe you are looking for

  • Compensation Details Page in iRecruitment Offers

    Hi, We are setting up offers for our client. Done all the setup required to display compensation plans when creating offer for the applicant as mentioned in the User Guide but, the plans are not appearing on this page. i get the message 'Applicant no

  • Can i replace the glass on an ipod touch 4th generation

    Can i replace the glass on an ipod touch 4th generation? My son dropped his ipod and the glass is shattered.

  • Is ther an Apple software update server solution for a Microsoft environment?

    My organization has more than 3000 Apple devices. Im trying to centralize mac sotware updates without adding a mac box. We are a Windows Server 2012 R2 environment.  Thanks for all the help.

  • Parent SWF controlling Child SWF variables

    1) The code below works but the browser sends an annoying alert message "Received Parent Message" and you are obliged to click OK before the program can run. How can it be fixed ? 2) Why this code needs to use the ExternalInterface class if the Child

  • Interlacing issue, no linear pcm codec

    I've been working on a project which looks fine in FCPX but when I export it is interlaced. I noticed the footage im having issues with doesnt appear to have a linear PCM codec listed in its informmation menu when the others do Im guessing this is my