(new) flash cdfrid with multiple choices

My cfgrid allows the user to select several options.  What I need to know is how to capture those selections.  Here's the grid code:
<cfgrid name='art_grid' format='flash' selectOnLode='no' selectMode='edit' query='GetArticles'>
     <cfgridcolumn name='ArticleIndex' select='yes' values='1' type='boolean' display='yes'>
     <cfgridcolumn name='ArticleName' select='no'>
</cfgrid>
I've tried a cfselect and a cfset (both with selectedItem and selectedIndex); both receiving the same error:  You have attempted to dereference a scalar variable of type class java.lang.String as a structure with members.
I created a structure to hold the responses and then tried to populate it with:
<cfloop collection='#art_grid.selectedItem# item='i'>
     <cfset ArtStruct[i]='#art_grid.selectedItem.ArticleName[i]#'>
</cfloop>
What should I use instead?  (Yes, I googled the error message and this is where I got the structure idea.)

Kind of a weird dump using <cfdump var='#art_grid#'>    (The form.art_grid was undefined...)
<mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" height="320" marginBottom="0" marginLeft="0" marginRight="0" marginTop="0" rsl="/CFIDE/scripts/cfform.swc" width="580"> <mx:Script><![CDATA[ import mx.core.UIObject; var errorpopup; function compareNumeric(a,b) { var a1 = parseFloat(a); var b1 = parseFloat(b); if( a1.toString() == 'NaN' ) a1 = 0; if( b1.toString() == 'NaN' ) b1 = 0; if( a1 < b1 ) return -1; if( a1 == b1 ) return 0; return 1; } function compareCurrency(a,b) { var a1 = new mx.formatters.NumberBase().parseNumberString( a ); var b1 = new mx.formatters.NumberBase().parseNumberString( b ); var a1 = parseFloat(a1); var b1 = parseFloat(b1); if( a1.toString() == 'NaN' ) a1 = 0; if( b1.toString() == 'NaN' ) b1 = 0; if( a1 < b1 ) return -1; if( a1 == b1 ) return 0; return 1; } function compareTextNoCase(a,b) { var a1 = a.toLowerCase(); var b1 = b.toLowerCase(); if( a1 < b1 ) return -1; if( a1 == b1 ) return 0; return 1; } var __art_grid_cacheid = "0"; var __art_grid_editedFields = new Object(); var __art_grid; ]]></mx:Script> <mx:Model id="CFForm_1"> <__CFGRID__CFForm_1__art_grid>{__art_grid}</__CFGRID__CFForm_1__art_grid> </mx:Model> <mx:Style> .artgridHeader { textAlign: Left; } </mx:Style> <mx:Form heightFlex="1" marginBottom="0" marginLeft="0" marginRight="0" marginTop="0" widthFlex="1"> <mx:DataGrid editable="true" fontFamily="tahoma" fontSize="12" hGridLines="true" headerStyle="artgridHeader" height="320" id="art_grid" initialize="GridData.initGrid(true, __art_grid_cacheid, art_grid, this, 'CFForm_1', '__CFGRID__CFForm_1__art_grid', remoteObject_art_grid)" textAlign="left" vGridLines="true" width="580"> <mx:columns> <mx:Array> <mx:DataGridColumn columnName="CFGRIDROWINDEX" editable="false" headerText="" resizable="false" sortable="true" width="0"/> <mx:DataGridColumn cellRenderer="{CheckCellRenderer}" columnName="ArticleIndex" editable="false" headerText="Select" resizable="true" sortable="true" width="50"/> <mx:DataGridColumn columnName="ArticleName" editable="false" headerText="Article" resizable="true" sortable="true" width="530"/> </mx:Array> </mx:columns> </mx:DataGrid> </mx:Form> <mx:RemoteObject concurrency="multiple" endpoint="@ContextRoot()/CFFormGateway/" id="remoteObject_art_grid" showBusyCursor="true" source="coldfusion.flash.adapter.CFFormAdapter"/> </mx:Application>
Interesting, but I don't understand it.

Similar Messages

  • Create Service Request with Multiple Choices

    Dears,
    I need to create Service Request to appear in the portal with Multiple Choices like blow 
    Mohamed Fawzi | http://fawzi.wordpress.com

    Hi Mohamed.
    I am sitting almost in the same sudation, I am designing a service request form in the portal and will be using multiple checkboxes for various new equipment aka desktop, laptop, mobile blah blah.
    were you able to get multiple checkboxes to work in the portal, and if so, could you possibly share the solution. also if I may ask, can you have two or there checkboxes in the same row (next to each other), or only in a column?
    thanks in advance

  • SQL Dealing with multiple choice answers in a DB with no unique identifier

    I am working with a Database that has forms set up with multiple select fields.  As seen below, (Question_ID 2533) the Patient_ID, Visit_ID, and Question_ID are the same and there are 3 different answers that were chosen.  I am trying to figure
    out how to seperate these Multiple answers so I can use SSRS to pull them into seperate fields. I believe I know how to use SSRS to pull the data after I have differentiated each answer. I need help with the SQL code...
    Patient_ID   Visit_ID   Form_ID   Question_ID   Answer_ID     Answer
    124            1685        164          2533             1490             
    Muscle pain
    124            1685        164          2533             1492             
    Weight loss
    124            1685        164          2533             1494            
     Shoulder joint pain
    124            1685        164          2534            
    678                Good
    124            1685        164          2535            
    678                Good

    I was able to get the unique identifier by creating a new table using the ROW_NUMBER()OVER and PARTITION BY Functions.  Then I was able to identify each answer of the multiple choice fields.  Here is the full code.
    CREATE TABLE Multiple_Answer(
     Patient_ID INT,
     Visit_ID INT,
     Visit_Date DateTime,
     Form_ID INT,
     Form_Name nvarchar(255),
     Question_ID INT,
     Question_Name nvarchar(1000),
     Answer_ID INT,
        Answer  nvarchar(1000),
        Multiple_Answer INT)
        INSERT INTO Medred_Reporting.dbo.Multiple_Answer
               ([Patient_ID]
               ,[Visit_ID]
               ,[Visit_Date]
               ,[Form_ID]
               ,[Form_Name]
               ,[Question_ID]
               ,[Question_Name]
               ,[Answer_ID]
               ,[Answer]
               ,[Multiple_Answer])
    SELECT        Patients.Patient_ID, Patient_Visits.Visit_ID, Patient_Visits.Visit_Date, Forms.Form_ID, Forms.Form_Name, Questions.Question_ID, Questions.Question_Name, Answers.Answer_ID,
                             Answers.Answer,
                             ROW_NUMBER()OVER
                             (PARTITION BY Patients.Patient_ID, Patient_Visits.Visit_ID,Forms.Form_ID,Questions.Question_ID
                             ORDER BY Questions.Question_ID)
                             AS Multiple_Answer
    FROM            Patient_Visits INNER JOIN
                             Patients ON Patient_Visits.Patient_ID = Patients.Patient_ID INNER JOIN
                             User_Visit_REL ON Patient_Visits.Visit_ID = User_Visit_REL.Visit_ID INNER JOIN
                             Users ON User_Visit_REL.User_ID = Users.User_ID INNER JOIN
                             Visit_Question_Answer_REL ON User_Visit_REL.User_Visit_ID = Visit_Question_Answer_REL.User_Visit_ID INNER JOIN
                             Symptom ON Visit_Question_Answer_REL.Symptom_ID = Symptom.Symptom_ID INNER JOIN
                             Question_Answer_REL ON Symptom.Question_Answer_ID = Question_Answer_REL.Question_Answer_ID INNER JOIN
                             Answers ON Question_Answer_REL.Answer_ID = Answers.Answer_ID INNER JOIN
                             Form_Question_REL ON Question_Answer_REL.Form_Question_ID = Form_Question_REL.Form_Question_ID INNER JOIN
                             Questions ON Form_Question_REL.Question_ID = Questions.Question_ID INNER JOIN
                             Protocol_Form_REL ON Form_Question_REL.Protocol_Form_ID = Protocol_Form_REL.Protocol_Form_ID INNER JOIN
                             Forms ON Protocol_Form_REL.Form_ID = Forms.Form_ID

  • Does New Flash conflict with Gmail & YouTube ???

    I installed the Master CS 5 Beta today and noticed two puzzling differences in my computer. (Besides requiring over 15 gigabytes of hard drive !)
    First - The Advanced document attachment features in Gmail and the ability to see progress bars when attaching files to messages, and attach multiple files at once to a Gmail message, stopped working. I just had a white box where the "Attach Files" link used to be. This feature, according to Gmail, requires Flash. Once I reverted to the basic feature (and turned off the Flash-dependant features), I was able to attach files again.
    Second - All YouTube videos, no matter where I link to them, appear now as just a vibrant pink box full of large pixels. Audio works but video is scrambled pink squares that move erratically.
    Anybody know if its Flash or some other part of the new master Creative Suite 5 that is not playing nicely with YouTube video ??
    VLC and QuickTime still work OK.
    Mac OSX 10.6.3 on an old 2.8 GHz Intel Core 2 Duo iMac.
    Binky4Binky

    Hi,
    Try to remove the version and reinstall it. It should not affect the Gmail and YouTube

  • Flash Masks with multiple objects

    hey i was wondering if anyone knows whats with flash and
    masking an item to multiple graphics within a graphic
    IE i have a bunch of squares. they are each individual
    graphic objects. there are about 40 of these squares in another
    graphic called squareContainer
    im trying to mask a bitmap across squareContainer but when i
    do it it will only mask against one of the 40 or so squares - how
    do i get it to mask against all?
    -Carl

    I would also like to do this, any ideas?

  • New flash version with chrome

    Hi,
    I have Chrome and was playing facebook games perfectly until the other day.  All of a sudden, I would have to click 1/4" lower than the actual buttons I wanted to click in order for it to work.  I tried the same games in IE and they worked fine.  I then thought that the problem was Chrome, so I uninstalled it and reinstalled it.  Hey, everything was great, well for a couple days anyway.  This morning, I go to play my games and it says I need a new version of Flash, as it's intergrated with Chrome...I went to about:plugins and enabled the one of the 2 that I was supposed to and then proceeded to my games.  SAME THING AGAIN!! I have to click 1/4" lower.  This is very annoying and I cannot play some of the games because of this..  I now realize that the problem is not with Chrome but it'swith Adobe Flash...how can I fix this?
    Please help,  thank you!

    I tried this and it didn't work. I didn't have this issue until I "upgraded" to the latest and greatest version of Firefox. Is there any way I can go back to a prior version without the problem? I really don't want to use IE.

  • Report with multiple choice in column for same dimension......

    Hi All,
    We have a report with two dimensions in col , one in row remaining in pov...user want to select multiple members [its more than 10 members..so we thought prompts will not be good.] for one column for different members in second dimension of column and want see the variance between them.
    can anyone suggest me how can i achieve this. thank you
    regards,
    Ravi

    Hi All,
    Can any one suggest me on this. thanks inadvance.
    Regards,
    Ravi

  • How do I create a flash website with multiple urls?

    I am not great at flash and am making a website that has a few different tabs for different pages.  How do I make different urls for each page?  I want to track each page seperately.
    Thank you.

    use getURL() (as2) or navigateToURL()  (as3).

  • Create new payment terms with multiple breakdown of payment

    Hi Gurus,
    I'm creating new payment terms like this:50% Down Payment; 20% upon delivery; 20% completion & installation; 10% retention
    How can I create this kind of payment terms?
    Hoping to your suggest
    Thanks,
    Marina

    HI
    Use OBB9 to create installment payment terms,
    Use OBB8 to create the payments
    Assign the repective installement payment terms to the primary payment terms at OBB8
    regards
    Prasanna

  • Flash Gauge with multiple pointers (needles)

    I am trying to display three different values on a singular gauge. Can this be done using ApEx's built-in gauge functionality or via third party flash gauges?
    Any help or insight would be greatly appreciated.

    I would also like to do this, any ideas?

  • Multiple choices in droplist?

    For as much as I know, a droplist cannot have multiple selected items when using normal javascript in Designer 7.1. Has this changed with Designer 8 / ES and if so, is there any special limitation in version of the Reader to use? 8.0 or 8.1?
    If no on the above questions, does anybody know of any workaround so that it is possible with multiple choices although it is a droplist or is it completely impossible with PDF?

    In Designer ES I know that it should be possible to use multiple selections in lists but it doesn't seem to be possible in dropdown lists. At least that is what I get out of Stefan's blog below. If anyone has any other experience, please let me know.
    http://forms.stefcameron.com/2007/02/01/new-list-object-properties-and-methods/

  • Menu Button in ALV toolbar (multiple choices for a button)

    Hi abapers,
    I would like to have a button with multiple choices in the toolbar;
    at the moment I have created a menu button with just one function.
    Here is my code:
    CLASS lcl_event_receiver (Definition)
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS:
        handle_toolbar
            FOR EVENT toolbar OF cl_gui_alv_grid
                IMPORTING e_object e_interactive.
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    CLASS lcl_event_receiver (Implementation)
    CLASS lcl_event_receiver IMPLEMENTATION.
      METHOD handle_toolbar.
        DATA: ls_toolbar  TYPE stb_button.
    *Separator
        CLEAR ls_toolbar.
        MOVE 3 TO ls_toolbar-butn_type.
        APPEND ls_toolbar TO e_object->mt_toolbar.
    *Button
        CLEAR ls_toolbar.
        MOVE 1 TO ls_toolbar-butn_type.
        MOVE 'EDIT' TO ls_toolbar-function.
        MOVE icon_change TO ls_toolbar-icon.
        MOVE ' Modifica'(l02) TO ls_toolbar-text.
        MOVE ' ' TO ls_toolbar-disabled.
        MOVE 'Modifica' TO ls_toolbar-quickinfo.
        APPEND ls_toolbar TO e_object->mt_toolbar.
      ENDMETHOD.                    "handle_toolbar
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION

    hi,
    check this code and reward me if it helps you..
    TYPE-POOLS : slis,icon.
    *Structure declaration for tcodes
    TYPES : BEGIN OF ty_table,
            tcode TYPE tcode,
            pgmna TYPE progname,
            END OF ty_table.
    *Structure for tocde text
    TYPES : BEGIN OF ty_itext,
            tcode TYPE tcode,
            ttext TYPE ttext_stct,
            sprsl TYPE sprsl,
            END OF ty_itext.
    *Structure for output display
    TYPES : BEGIN OF ty_output,
            tcode TYPE tcode,
            pgmna TYPE progname,
            ttext TYPE ttext_stct,
           END OF ty_output.
    *internal table and work area declarations
    DATA : it_table TYPE STANDARD TABLE OF ty_table INITIAL SIZE 0,
           it_output TYPE STANDARD TABLE OF ty_output INITIAL SIZE 0,
           it_ittext TYPE STANDARD TABLE OF ty_itext INITIAL SIZE 0,
           wa_table TYPE ty_table,
           wa_output TYPE ty_output,
           wa_ittext TYPE ty_itext.
    *Class definition for ALV toolbar
    CLASS:      lcl_alv_toolbar   DEFINITION DEFERRED.
    *Declaration for toolbar buttons
    DATA : ty_toolbar TYPE stb_button.
    Data declarations for ALV
    DATA: c_ccont TYPE REF TO cl_gui_custom_container,   "Custom container object
          c_alvgd         TYPE REF TO cl_gui_alv_grid,   "ALV grid object
          it_fcat            TYPE lvc_t_fcat,            "Field catalogue
          it_layout          TYPE lvc_s_layo,            "Layout
          c_alv_toolbar    TYPE REF TO lcl_alv_toolbar,           "Alv toolbar
          c_alv_toolbarmanager TYPE REF TO cl_alv_grid_toolbar_manager.  "Toolbar manager
    *Initialization event
    INITIALIZATION.
    *Start of selection event
    START-OF-SELECTION.
    *Subroutine to get values from tstc table
      PERFORM fetch_data.
    *subroutine for alv display
      PERFORM alv_output.
          CLASS lcl_alv_toolbar DEFINITION
          ALV event handler
    CLASS lcl_alv_toolbar DEFINITION.
      PUBLIC SECTION.
    *Constructor
        METHODS: constructor
                   IMPORTING
                     io_alv_grid TYPE REF TO cl_gui_alv_grid,
    *Event for toolbar
        on_toolbar
           FOR EVENT toolbar
           OF  cl_gui_alv_grid
           IMPORTING
             e_object.
    ENDCLASS.                    "lcl_alv_toolbar DEFINITION
          CLASS lcl_alv_toolbar IMPLEMENTATION
          ALV event handler
    CLASS lcl_alv_toolbar IMPLEMENTATION.
      METHOD constructor.
      Create ALV toolbar manager instance
        CREATE OBJECT c_alv_toolbarmanager
          EXPORTING
            io_alv_grid      = io_alv_grid.
       ENDMETHOD.                    "constructor
      METHOD on_toolbar.
      Add customized toolbar buttons.
      variable for Toolbar Button
          ty_toolbar-icon      =  icon_generate.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button1'.
          APPEND ty_toolbar TO e_object->mt_toolbar.
          ty_toolbar-icon      =  icon_voice_output.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button2'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
         ty_toolbar-icon      =  icon_phone.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button3'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
         ty_toolbar-icon      =  icon_mail.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button4'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
       ty_toolbar-icon      =  icon_voice_input.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button5'.
         APPEND ty_toolbar TO e_object->mt_toolbar.
      Call reorganize method of toolbar manager to
      display the toolbar
         CALL METHOD c_alv_toolbarmanager->reorganize
          EXPORTING
            io_alv_toolbar = e_object.
       ENDMETHOD.                    "on_toolbar
    ENDCLASS.                    "lcl_alv_toolbar IMPLEMENTATION
    *&      Form  fetch_data
          text
    -->  p1        text
    <--  p2        text
    FORM fetch_data .
    Select the tcodes upto 200 rows from TSTC
       SELECT   tcode
               pgmna
               FROM tstc
               INTO CORRESPONDING FIELDS OF TABLE it_table
               UP TO 200 ROWS
               WHERE dypno NE '0000'.
    *Select the tcode textx
       IF it_table[] IS NOT INITIAL.
         SELECT ttext
               tcode
               sprsl
               FROM tstct
               INTO CORRESPONDING FIELDS OF TABLE it_ittext
               FOR ALL ENTRIES IN it_table
               WHERE tcode = it_table-tcode
               AND sprsl = 'E'.
       ENDIF.
    Apppending the data to the internal table of ALV output
       LOOP AT it_table INTO wa_table.
        wa_output-tcode = wa_table-tcode.
        wa_output-pgmna = wa_table-pgmna.
       For texts
        READ TABLE it_ittext INTO wa_ittext WITH KEY tcode = wa_table-tcode.
        wa_output-ttext = wa_ittext-ttext.
         APPEND wa_output TO it_output.
        CLEAR wa_output.
       ENDLOOP.
       ENDFORM.                    " fetch_data
    *&      Form  alv_output
          text
    -->  p1        text
    <--  p2        text
    FORM alv_output .
    *Calling the ALV
      CALL SCREEN 0600.
      ENDFORM.                    " alv_output
    Calling the ALV screen with custom container
    On this statement double click  it takes you to the screen painter SE51.Enter the attributes
    *Create a Custom container and name it CC_CONT and OK code as OK_CODE.
    *Save check and Activate the screen painter.
    Now a normal screen with number 600 is created which holds the ALV grid. PBO of the actual screen , Here we can give a title and *customized menus
    *&      Module  STATUS_0600  OUTPUT
          text
    MODULE status_0600 OUTPUT.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0600  OUTPUT
    calling the PBO module ALV_GRID.
    *&      Module  ALV_GRID  OUTPUT
          text
    MODULE alv_grid OUTPUT.
    *create object for custom container
      CREATE OBJECT c_ccont
           EXPORTING
              container_name = 'CC_CONT'.
    *create object of alv grid
      CREATE OBJECT c_alvgd
          EXPORTING
              i_parent = c_ccont.
    create ALV event handler
      CREATE OBJECT c_alv_toolbar
        EXPORTING
          io_alv_grid = c_alvgd.
    Register event handler
      SET HANDLER c_alv_toolbar->on_toolbar FOR c_alvgd.
    Fieldcatalogue for ALV
       PERFORM alv_build_fieldcat.
    ALV attributes FOR LAYOUT
      PERFORM alv_report_layout.
       CHECK NOT c_alvgd IS INITIAL.
    Call ALV GRID
       CALL METHOD c_alvgd->set_table_for_first_display
        EXPORTING
          is_layout                     = it_layout
        CHANGING
          it_outtab                     = it_output
          it_fieldcatalog               = it_fcat
        EXCEPTIONS
          invalid_parameter_combination = 1
          program_error                 = 2
          too_many_lines                = 3
          OTHERS                        = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDMODULE.                 " ALV_GRID  OUTPUT
    *&      Form  alv_build_fieldcat
          text
         <--P_IT_FCAT  text
    FORM alv_build_fieldcat.
       DATA lv_fldcat TYPE lvc_s_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '1'.
      lv_fldcat-fieldname = 'TCODE'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 8.
      lv_fldcat-scrtext_m = 'TCODE'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
       lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '2'.
      lv_fldcat-fieldname = 'PGMNA'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 15.
      lv_fldcat-scrtext_m = 'PROGNAME'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '3'.
      lv_fldcat-fieldname = 'TTEXT'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 60.
      lv_fldcat-scrtext_m = 'Description'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
    ENDFORM.                    " alv_build_fieldcat
    *&      Form  alv_report_layout
          text
         <--P_IT_LAYOUT  text
    FORM alv_report_layout.
       it_layout-cwidth_opt = 'X'.
       it_layout-zebra = 'X'.
    ENDFORM.                    " alv_report_layout
    PAI module of the screen created. In case we use an interactive ALV or
    *for additional functionalities we can create OK codes
    *and based on the user command we can do the coding.
    *&      Module  USER_COMMAND_0600  INPUT
          text
    MODULE user_command_0600 INPUT.
    ENDMODULE.                 " USER_COMMAND_0600  INPUT
    thanks,
    gupta

  • New Flash Media Encoder

    So, I've been playing with the new Flash Media Encoder here:
    http://labs.adobe.com/technologies/fme/
    It was a really simple download and works seamlessly with
    Flash Media Sever. I think you have to update FMS2 to the January
    07 update to use it, though. Anyway, below are some options for
    trying it out. Have fun :)
    Per Chris H from adobe:
    1. You don't need a main.asc file on your FMS app to publish
    and broadcast live streams with FME.
    2. You can get a live stream from FME to playback in the
    normal FLVPlayback component that ships with Flash 8 Professional.
    Just make sure you have the "isLive" parameter set to true and the
    contentPath should be:
    rtmp://server_name/app_name/inst_name/stream_name.
    Option from FMS livedocs:
    1 New Flash Document with two layers: actions and video
    display.
    2 Add this code from the FMS livedocs to the actions layer:
    var my_nc:NetConnection = new NetConnection();
    my_nc.connect("rtmp://<YOUR RTMP ADDRESS>/streamtest");
    var my_ns:NetStream = new NetStream(my_nc);
    my_video.attachVideo(my_ns);
    my_ns.play("stream");
    3. Open Window > Library > Click little dropdown toggle
    next to library title and select a new video display object and
    specify actionscript control.
    4. Drag Video Display out of the library and give it an
    instance name of my_ns and publish it. I used a laptop for this
    part so that I could stream to the file from my FMS server. I saved
    the .swf as video_receiver.swf.
    5 Stop Flash Media Server and create a folder called
    streamtest in the FMS Apps folder, then start it again.
    6. Fire up FMEncoder, specify the RTMP address you specified
    in the Flash 8 AS code, and be sure that the stream is named,
    "stream" (no quotes). Also, toggle off the save stream file, unless
    you want to save the recording.
    7. Click start on FME and open the video_receiver.swf and you
    should see the stream playing.
    Another idea:
    Use the receiver from this tutorial:
    http://www.adobe.com/devnet/flashcom/articles/broadcast_receiver.html

    We have our own FMS and I have just installed the FME on a
    workstation. FME reads video perfect but when I try to connect to
    the server it won't accept my username and password. Where do I set
    this? I have installed the add-in for FMS and also upgraded to the
    latest 2.0.7 release. I'm green to the Flash Media Services so this
    may come as a dumb question. Please help!

  • Adobe Captivate - Multiple Choice Quiz Question - Radio Button and Text Alignment

    I have created a quiz with multiple choice questions.
    No matter what I do I cannot align the radio button and the text for the choices (see below).
    I would like to align the center of the radio button with the center of the letter A) and B).
    I have tried every option that I can think of in the Properties options.
    Please let me know if anyone has a solution for this.
    Thank you

    Thanks for the reply.
    Previously I tried several different combinations of fonts and font sizes, but didn't see any change.
    Does anyone else know of anything else that could effect this situation?

  • SP2013: Scaling search with multiple app server

    Hi Team,
    I am scaling a new SP environment with multiple App Server.
    I have used AutoSPINstaller to install SP2013 and Search. My search components are spread across all servers. All Search components on all servers and I have a blank publishing site as part of my content source.
    My issue is when i start full/Incremental crawl. It keeps on crawling for the whole day and do not produce any crawl error neither it stops. We waited for even 2 das but the crawl kept on going on.
    Any help will be really appreciated.
    Thanks Ba$va

    Hi Basva ,
    Follow these steps (one at the time) to reset the Content Source crawl:
    Start -> Run -> Services.msc -> Restart the “SharePoint Server Search 15”.
    Make sure  the Application Server Administration Service Timer Job working .
    Navigate to Central Administration-> Manage service application->
    Search Service Application,
    Reset Index and see if that fixes the problems.
    Go into the Services.msc  on each server and change the "RECOVERY" method of the “SharePoint Server Search 15” from "FIRST FAILURE"  to "TAKE NO ACTION" so that the service did not restart before
    all the servers had their "SharePoint Server Search 14" stopped.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

Maybe you are looking for

  • Entitlements not taken into account

    Dear all, We are setting up 4 equal domains. (these will be loadbalanced) Now we have a problem with our entitlements. On 1 they are working without any problem. On 2 others some of the entitlements are working. And on the last one none of the entitl

  • I'd like to know how to center my whole webpage, right now its aligned on the left...

    I'm new to DW, but I managed to create a site: www.bemyconfidant.com Its good, I like it but I would like it to be centered instead of it being aligned on the left (when I "maximize" my browser there's empty space on the right.) Please, help! Thank y

  • Singed using my own CA

    Dear ALL, I'm trying to simulate some environment (VISA chip processing ) in my office. So I have few clarifications regarding key crypto keys. Before that let me explain exact simulation what I'm going to do. I want to simulate VISA CA at my office

  • Itunes application could not open. Unknown error ocurred (-50)

    Since this morning im having trouble accesing my itunes due to the error (Itunes application could not open.Unknown error ocurred (-50)). I restarted the computer, unistalled and installed the current version of itunes and still have the error. Do an

  • Can't boot to any OS X Install Disk

    I have a strange problem and this is going to be long. I just added a 2007 MacPro to our Apple family and am having an issue that I can not get past. First, I bought it used and the gentleman that sold it to me described what he did to prep it for me