Writing custom code to interact with captivate soundHandler

The end goal of this is to design a Flash Avatar that I can plop into a captivate simulation, that Avatar will have moving lips while sound is going, and none when there is no sound.
Been swimming through flash debug of Captivate objects and looking at the .as files for the soundhandlers but can't seem to get access....I realize this is probably not something anyone really bothers with.
Anyways, if anyone has done custom code work like this please me out thanks!

hi Anurava,
create generic extraction, see
http://help.sap.com/saphelp_nw04/helpdata/en/3f/548c9ec754ee4d90188a4f108e0121/frameset.htm
the way we enhance generic datasource is just same as business content, enhancement RSAP0001 is used.
yes, it should be delta-enabled, check doc how to generic delta
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b062adbb3e33
http://help.sap.com/saphelp_nw04/helpdata/en/37/4f3ca8b672a34082ab3085d3c22145/frameset.htm
generic extraction using function module, take a look Siggi's weblog
/people/siegfried.szameitat/blog/2005/09/29/generic-extraction-via-function-module
http://help.sap.com/saphelp_nw04/helpdata/en/86/1c8c3e94243446e10000000a114084/frameset.htm
sample code can see in RSAX_BIW_GET_DATA_SIMPLE
hope this helps.

Similar Messages

  • Writing customer code in SALES ORDER MODULE using UI API.

    Hi Experts,
    I have a problem in writing a data in Sales Order fields...
    here's the scenario
    after i select the business partner code in my UI i want it to write the customer code in customer textbox of the Sales Order module.
    but after i write the error appears.
    error: {"Item - Can't set value on item because the item can't get focus.  [66000-153]"}
    Please help me in this problem.
    thanks,
    Edited by: Joey Bryan Dante on Aug 26, 2011 7:38 AM

    Dim oItem As SAPbouiCOM.Item
                                Dim oItems As SAPbouiCOM.Items = oForm.Items
                                oItem = oItems.Item("3")
                                Dim oEdit As SAPbouiCOM.EditText
                                oEdit = oItem.Specific
                                oEdit.Value = oCardCode
    this is my code.
    thanks,

  • Custom code throws error with email subscription. Otherwise, the report works fine.

    I have a SSRS report that parses RTF to TXT and displays it in a report.  The report works fine and everything displays correctly.  The subscription email, however, contains a report with errors: Request for the permission of type
    'System.Security.Permissions.UIPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
    The report contains embedded code as well as references to System.Security and System.Windows.Forms.  I've updated .....\Reporting Services\ReportServer\rssrvpolicy.config and ....\Reporting Services\ReportManager\rsmgrpolicy.config to change permissions
    to FullTrust.  Not sure what else I need to do.  Please help.

    Hi Chimuelo,
    According to your description, if the report contains custom code and assemblies, the subscription email contains an error “Request for the permission of type 'System.Security.Permissions.UIPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
    failed”.
    In your scenario, the issue could cause by that the report can’t access those assemblies. Please modify the policy configuration files to grant additional permissions for those assemblies. For more information, please refer to this article:
    How to grant permissions to a custom assembly that is referenced in a report in Reporting Services.
    Similar thread for your reference:
    Custom assembly throwing #error in reports with subscriptions
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Interaction with Captivate within Presenter

    I have an interactive Captivate (swf) file that I'm trying to get to work in Presenter. I have imported the file (which works great stand-alone) amd checked the box in the "Manage Flash" option. However, Presenter ignores the interaction and plays the cp file straight through without stopping/waiting for the learner to click on the item to go ahead.
    Any ideas? Thanks.

    Adobe Presenter 7.07 was released last week in conjunction with Adobe Connect 8.1.2 as well as Captivate 5.5. All three now are AS3 based and fix this very complex issue.
    You can download the full Presenter 7.07 from the Adobe Presenter page...notice right side where there is a link for existing customers to download a trial version...just use your Presenter 7 license when asked:
    http://www.adobe.com/products/presenter/
    Adobe Connect 8.1.2 is being rolled out the next two weekends and on-premise customers can download the code here:
    http://kb2.adobe.com/cps/911/cpsid_91151.html
    Adobe Captivate 5.5 has been released for awhile and was the first to move to AS3. Now all are in sync. Suggest running all previous content in Presenter or Captivate and then uploading again. That would convert any AS2 issues to AS3.

  • Using wild card with Captivate 5 ( fill in the blank)

    I am training software package that requires many fill in the blanks besides the login screeen.  If I were to recording the actions using Captivate 5 record, I think,  I can only use a demonstration recording as oppsed to having my students interact with the product by filling in the blank. For example, my product asks for a login. When I login to demonstrate how it should be done, the product reponds correctly.  By my student is limited to watching as opposed to interacting.  While login is not such a big deal, there are several other areas where the same concept applies.  Ideally, I wish to use wild cards in fill in the blank so that any name or information can be used to interact with Captivate and move the slide along.    Is this possible, and if so, how?

    I think Lilybiri may be misinterpreting your use of the term "wildcards" to mean using them in the programming sense.
    Perhaps you are referring to the characters that appear in a typical Password field to hide what the user is actually typing?
    If so, the text field object in Captivate has an option to use these password characters so that the user's typing characters are hidden.  The characters used are asterisks, which are what some people refer to as wildcard characters.

  • Using UI Automation Framework to interact with Flex applications

    Hi all,
    I created a small flash app using Flex builder 4.
    I am writing a tool to interact with flash applications using UI Automation Framework which is similar to UI Spy. I've read in so many forums that accessibility can be done using UI Automation or MSAA.
    Using the tool, I am able to get all the fields that are present in the application. (button, text, edit fields etc). Now, I want to use InvokePattern on buttons from my tool so that, if I click "Invoke" in my tool, the associated button will be clicked in the flash app. Here, I find no issues to do anything.
    But, if there is a textinput field on the flash application and I use ValuePattern of UI Automation to set some value in the field using SetValue(), then I am getting
    "System.InvalidOperationException"
    even when I tried simple SetFocus() on to that field, I am getting the same exception Looks like, I cannot interact with flash text fields in the same way I do with other window's fields.
    I used UISpy and other tools to see if they are doing any better with setting values on a text field. But, they too failed with same exception.
    Can someone tell me why this is failing? Does flex/flash support UI Automation to this extent? Are there any examples or links that can help me here?

    @riatest Thanks for the info.
    I downloaded flex sdk to see if there is anything that will help me. But, In flex sdk, I cannot find anything that would ease my path. I want to stick to developing in C# to talk to Flash applications. What is the best way to proceed? Are there any sdks that I can download and use for C# development to interact with the flex controls? What is the way to go? I seem not to find any good hits in the web as well
    Thanks
    Sailesh

  • Video grabbing and interaction with windows

    hi, few questions...
    is there any way to work with the usb camera or any video device, even if it does not have a api/sdk ... something like Windows Image Acquisition ??
    can i write code that interacte with windows events ?? i mean a program that in case of click on the desktop will do something ??
    it would really really help
    Jaimon

    I'd think that Java is not exactly the language you need... I'm sure you can do much more in VC++. Java's point is having as little to do with the OS as possible; you won't get around using native code.

  • Need Help with Cue Points/Custome Code

    So I've figured out that videos with a playback component need cue points in order to set up all the interactivity I want to use. The only way to make animated graphics, interactive graphs and text is to apparently create custom code, which I no zip about.
    Should I hire someone to do that for me? I was thinking elance, but does anyone have any suggestions on how to make an interactive video other ways (or cheaper)ways.
    p.s
    how much do you think I should charge for that:)?

    My advice... start with a very simple "proof of concept" project before you attempt the entire package.
    It will be much easier to scale up if you first have a very good understanding of what's going on.
    So one simple video with just one cuepoint and only one button and additional display. You'll also have to work out the interaction of pausing the video when a cuepoint is reached or button pushed to display the graph, giving the viewer time to read the graph... then when the viewer closes the graph, the video should "resume".
    Start very simple and build on that only after you understand the fundamentals.
    Second, you mention "video reports"... plural. So that most likely means that you will need a video player with a "playlist".
    This may mean that you'll need to learn to use a little .xml to bring in the playlist data. You may also find xml an excellant way to bring other data into you project.
    At the link listed above there is an excellant tutorial on "Integrating Flash and XML"
    "Flash and XML"
    "XML Video Playlist"
    "ActionScript 3 XML Basics"
    "ActionScript 3 Advanced XML"
    Personally I would not even begin a project like this without considering how I could use xml to feed data into the project.
    Here's an example of a video player I created that has a playlist, thumbnails, categories, transcipts, "Now Playing" etc. All that data comes into the main .swf via various xml files. Super good way in input data into Flash.
    http://www.drheimer.com/video/
    Yours is a rather ambitious project and will take awhile to gain the skill and assemble the pieces. So when you come to a new part... first create a real simple "proof of concept" model so you can learn how that section works. Don't expect to be able to assemble the entire project all at once.
    Best wishes,
    Adninjastrator

  • Issue in OTR creation with Numeric Range of Customer Code

    Dear All,
    I am facing error while creating OTR with reference to Sales order in SAP TM system. The Error message “Business partner internal ID 0000710420 does not exist” appears when I Use Customer Code as Numeric, whereas if I create customer with Alpha-Numeric, then there is no issue.
    I have debugged the same and found the error is in Class “/SCMTMS/CL_TRQ_ICPY_TRQ_REQSRV” under Method “PREPARE_MD”. In this method, the system is converting the Business partner Code (Field: EXT_BP_ID) of Customer to 60 Character for Numeric Customer Code. Due to which system is not getting the KEY (Field: INT_BP_KEY) of the Business partner as shown in below screenshot:
    Whereas for Alphanumeric Customer Code, system is not converting the Business partner Code to 60 Char and hence not giving error. Below is the screenshot:
    Kindly advice how to resolve the issue.
    Regards,
    Vibhu Gupta

    Dear Marcelo,
    Yes same number range is maintained in both systems and infact BP is creating in TM system. But while creating OTR, TM system is calling a functional module in method I mentioned above, which will cusion the Business partner ID to make it 60 Character internally while creating OTR, due to which system is able to fetch its Key and hence give error message.
    This is happening only when Business Partner Number range is Numeric. If I use Alpha Numeric, then system do not cusion the business partner code and hence do not give error.
    Regards,
    Vibhu Gupta

  • How do I do use the custom code and format for a percentage with 2 decimals in Report Builder 3.0?

    In Report Builder 3.0, I have the following custom code entered:
      Public Function SafeDivide(Numerator as String, Denominator as String) as String
    Try
    If Numerator = “” or Denominator = “” then
    Return “-“
    End if
    If Numerator = “-“ or Denominator = “-“ then
    Return “-“
    End If
    If CDbl(Numerator) =0 or CDbl(Denominator) = 0 then
    Return “-“
    End if
    If IsNothing(Numerator) or IsNothing(Denominator) then
    Return "-"
    End if
    Return Val( ( (CDbl(Numerator) / CDbl(Denominator) )*100 ) )
    Catch
    Return "-"
    End Try
    End Function
    I call the custom code in the cell with the following equation:
      =Code.SafeDivide(sum(Fields!TY_UNITS.Value)-sum(Fields!LY_UNITS.Value),sum(Fields!LY_UNITS.Value))
    I have the format for the cell set to 0.00%, but it’s not being followed.
    I want the result to be formatted as a Percentage, but instead I get values like: 
    -78.9473684210
    80
    300
    -100
    I have the format for the cell set to 0.00%, but it’s not being followed.
    How do I do use the custom code and format for a percentage with 2 decimals?

    Hi AngP,
    After testing the issue in my local environment, I can reproduce it. Based on my research, I find this issue is caused by the type of Units_VAR_Percentage cell is string, while the type of CDbl(Parameters!Var_Threshold.Value) is double, so they cannot be
    compared.
    To fix this issue, we can add a hidden column (Textbox91) next to the Units_VAR_Percentage column, and type =(sum(Fields!TY_UNITS.Value)-sum(Fields!LY_UNITS.Value)) /sum(Fields!LY_UNITS.Value) as the expression. Then use the expression below to control the
    BackgroundColor:
    =iif(iif(reportitems!Units_VAR_Percentage.Value=CStr(format(reportitems!Textbox91.Value,"0.00%")),reportitems!Textbox91.Value,0)>CDbl(Parameters!Var_Threshold.Value),"Yellow","PaleTurquoise")
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Why can't i sign in successfully to my FaceTime on my macbook? Customer Code: 7675-0789-4146. It says FaceTime can't be used with your apple id at this time

    why can't i sign in successfully to my FaceTime on my macbook? Customer Code: 7675-0789-4146. It says FaceTime can't be used with your apple id at this time

    Hello Clinton,
    Thank you for the details of the issue you are experiencing with FaceTime and Messages on your iMac.  I recommend following the steps in the article below for the issue you are experiencing:
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/ts3970
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Strange problem with NWDS - Custom code vanishes!

    Hi all:
    I am very much new to SAP NWDS world. I have got background in core Java coding and now trying to pick up the Java WebDynpro for which I am practising some examples in SAP NWDS.
    I have got a Java WebDynpro application with 2 views. In the implementation tab of one view I am trying to put in some custom code for the function  :
    public void wdDoInit()
        //@@begin wdDoInit()
        //@@end
    However after I hit the Save all metadata button, the custom code vanishes and the function wdDoInit() goes back to the initial form ( shown above ). As a result I cant save the custom code.
    Any help with this issue?
    Cheers!
    Thanks
    Anindya

    Yes that's what  I thought. But couldn't really find any forum on WebDynpro Java. So I put it in the NetWeaver Platform forum!
    Thanks and regards,
    Anindya

  • Problem with custom code in infoset query

    Hi,
    I have created a infoset. In the infoset i added a few additional fields and wrote code in the field code for those fields. I saved and generated the infoset. But in the output of the query, i am getting blank values for those additional fields. When i checked the generated program (SE38), the code is not present in the program.
    If anyone has encountered a similar problem and resolved it, please let me know where i am going wrong.
    Thanks.

    Hello,
    After adding the code for additional fields in Infoset, please syntax check and then activate the Infoset. Then the program will be regenerated with your custom code.
    Thanks,
    Venu

  • Generating a blank document with custom code

    Is there a way I can generate a blank document with custom code in it?  I have been looking at several methods of doing this but so far I have been unsuccessful.  So any assistance here would be appreciated.  This is for an extension I am currently working on.
    Many thanks

    This is a public forum; please do not post your email address or other private data (by sending the forum notification with all its headers back to the forum).

  • How can our customer edit our Captivate 6 content with Captivate 5?

    Our company has decided to dive into the e-learning business and create e-learnings.  We just purchased a Captivate 6 subscription, unfortunately before finding out our customer uses Captivate 5.  He would like to edit our files once in a while when he needs to if he doesn't have enough time to have us do it.   Is there anyway he can edit content produced in Captivate 6 with his Captivate 5.  Can I export files of a certain type that he can in turn import and add to his Captivate 5 and edit himself?  In other words, what kind of files can I export from Captivate 6 than he can import with Captivate 5 and make small changes to?
      Vielen Dank,
                 Ryan

    Thank you.  I see that I can export content as an .xml file.  Isn’t this something he can upload with Captivate 5?    Thanks for bearing with my naivety. : )
    Von: RodWard [email protected]
    Gesendet: Mittwoch, 1. August 2012 14:25
    An: Scharfer, Ryan
    Betreff: How can our customer edit our Captivate 6 content with Captivate 5?
    Re: How can our customer edit our Captivate 6 content with Captivate 5?
    created by RodWard<http://forums.adobe.com/people/RodWard> in Adobe Captivate - View the full discussion<http://forums.adobe.com/message/4591371#4591371

Maybe you are looking for

  • Account determination error for Account key

    Hi Everyone, I have maintain one condition manual pricing e.g ZMRG where i m manually putting the margin of sales price this condition is only for calculation and i dont want to post it to account. But at the time of bill it is giving me account dete

  • CVP Studio mediaserver faiover

    For microapps I simply use ip host mediaserver = CVP1 IP and ip host mediaserver-backup = CVP2 IP and set media_server var = "mediaserver" and RunExtScript failsover and sue the backup mediaserver in case of an issue. But for CVP Studio Projects, I s

  • Duplicating an edited clip.

    I want the same short clip to appear several times throughout my video. Is there a simple way to do this where I don't have to edit out this clip from a larger video multiple times?

  • Can't use the forward or back buttons on click wheel

    My mini was working fine until a couple of weeks ago, now I can't use the forward or back button - if I hit it, it just goes to the previous menu. The Menu and Select buttons work fine, as does the scroll function of the click wheel. Anyone have any

  • After downloading iOS7, I'm having problems with typewriting Korean in the apps such as the Pages and Keynote.

    After downloading iOS7, I'm having problems with typewriting Korean in the apps such as the Pages and Keynote. When I type "한글", it should appear as such but it appears as "하 ㄴ 그 ㄹ"