Flash8.ocx ActiveX control help

Where is the documentation for the Flash8.ocx ActiveX
control? I am trying
to use the ActiveX control in Excel with VBA. No browser,
Internet
connection, web page, html, or JavaScript is present. In the
object
browser, I can see methods such as
Function CallFunction(request As String) As String
The only Macromedia site search hits for "CallFunction" are
in user comments
under a manual page for the External API. I have searched the
Flash Support
Center for the words "scripting" and/or "ActiveX". I have
seen "Scripting
with Flash". It is incomplete. I have seen "How can I use
Macromedia's
ActiveX components in my programs? (TechNote tn_12062)". I
have read the
"Support" paragraph therein. We have completed Flash8 Player
Distribution
License. Do we really need to buy a support contract to get
the doc's for
this control?
Thanks.
John Goodfellow

If the registration worked, then go to the front panel add a ".NET and Active X" ->  "ActiveX Container" control to your block diagram. then right-click on it and choose "Insert ActiveX control". A dialog box will appear and in the drop-down, hopefully your OCX control will be listed (with it's full name, not the filename).  Sometimes it depends on which specific control it is (which you have not yet mentioned).

Similar Messages

  • OCX ActiveX controls obsolete in ECC6?

    We have a Visual Basic (well, VBA in Excel) program that runs RFCs in SAP using the ActiveX controls supplied with the SAP GUI.
    We have been told that this method is obsolete from SAP ECC6 onwards.
    However, I can connect our system to an ECC6 system without any problems.
    Can anyone confirm whether this method is, indeed, obsolete, or maybe just no longer supported but still in place?

    Hi Tristan,
    SAP is alwyz backwards compatible. So Active X will still be working.
    Also simply connecting to SAP ECC6 system doesnt confirm whether the VB program is working fine. Execute the VB program, so that the RFC is called in ECC6.0.
    This will confirm whether it works.
    Best regards,
    Prashant

  • Setting up and using an ActiveX control

    Trying to use an ActiveX control I added to my CVI project.  I use the ActiveX Controller Wizard to create an ActiveX control.  Then I tried using one of the ActiveX control functions but it requires I get an Object Handle.  The ActiveX Control Help says I can get the Object Handle by using GetObjHandleFromActiveXCtrl or an ActiveX method or property.  I looked through all the functions my ActiveX control has and could not find anything that would get an Object Handle.  The GetObjHandleFromActiveXCtrl function requires a panel handle which my project does not have or use.  Any suggestions on what to do next?
    The ActiveX control I am using is Mint Controls Build 5708 from ABB. 

    Hi
    New in ActiveX controls...I cannot help to recreate examples like Media Player (which works perfectly on my PC).
    Well I take the first method of"Programming with ActiveX Controls" topic:
    From the Tools menu of any LabWindows/CVI window, select Create ActiveX Controller. When you run the wizard in this manner, you need to select the ActiveX server that corresponds to your control.
    First I find two "Windows Media Player", which one ? Some trials lead me to the second one, where I retrieve functions names of the example (?).
    Next window : I let Instrument Prefix as "MediaPlayer", I browse a target fp file as "wmp" in my project directory, let the default compatibility options.
    Next window : I don't change any "Advanced Options", success...
    I find a new intrument "Windows Media Player", and 5 files wmp.fp/c/h/sub/obj. OK.
    But I want to see the control on a panel : I open my uir, go to "Create/ActiveX", select "create control".
    But what about "Validate servers" check box ? Il let it unchecked.
    I find "Windows Media Player" (only one) in the list, and the control appears on the panel, but the aspect is different from the example (some property changed?):
    If I edit the control, I find a property list that seems different from the example (even if I expand all) :
    Well it seems that controls are different ?
    I insert some lines in my code ("hello.mp3" is in the project directory):
    GetObjHandleFromActiveXCtrl (PanelHandle, PANEL_WINDOWSMEDIAPLAYER,&mediaHandle);
    MediaPlayer_IMediaPlayer2SetFileName (mediaHandle, NULL, "Hello.mp3");
    MediaPlayer_IMediaPlayer2Play (mediaHandle, NULL);
    Build OK. But nothing played. Error code from "SetFileName" function = -2147467262, error text : "Cette interface n'est pas prise en charge" something like "this interface is not supported" :
    Any idea ?
    Thanks in advance !
    JP
    (Windows XP/CVI2010)

  • Need help inserting ActiveX Control

    We provide an ActiveX control to talk to an instrument. We sell very few of these but nonetheless I've been asked to upgrade the LabVIEW sample (even though it only accounts for 10% of our few sales). I did make a sample a long time ago for labiew 5.1 but was going to make a new one for labview 2011 (as its too difficult to import the sample from 5.1).
    For testing (and that I'm not releasing any proprietary stuff) I wrote a simple ActiveX control that contains some of the features of the instrument control. This includes going to a particular position, scanning between two positions and receiving events (data, message and status). I was very easily able to write a quick demo in VB6 and C#2010 but I've forgotten everything about labview (except I remember it was relatively complicated for a non-graphical programmer like myself to use an activex control back in the 5.1 days).
    I would like to make a simple demo (like the one for C#)
    On a button press it starts a collect, first taking the two values from the appropriate inputs as the range (sets the StartPos and StopPos properties) then calls BeginRun.
    On another button press it "goes to" a position (calls GoToPos with a parameter from another numeric input).
    Receives OnStateChanged events and displays the enumerated type in a string indicator. This event is fired when the state is changed (eg. by calling BeginRun).
    Receives OnData events and displayes the position and value from the event in an indicator. This event is fired during a run for each sample.
    Receives OnMessage events and displays the message string in an indicator. This event can occur any time - in this sample I'm firing it randomly about once per second and its just sending the time as a string.
    Events are asynchronous - calling BeginRun returns immediately but events will follow later.
    Can anyone help me build this simple example - I've forgotten all the (little) labview I did back in 2003. I've attached the ActiveX control (XTestControl.ocx) a very simple VB6 sample, a better compiled C#2010 sample and my fiddling, far-from-complete LabVIEW 2011 sample. Everything is 32-bit (although I'm running on 64-bit Win7).
    There's a lot I don't understand about LabVIEW and the time I've already spent on this so far probably means several years ROI for the small company I work for because of the low volumes.
    TIA
    Attachments:
    ActiveXTest.zip ‏277 KB

    Thanks for your reply nathand and taking the time to look at my sample.
    Yes, it is a very ligh VI because it doesn't have to do much. I want to numeric inputs that set the StartPos and StopPos properties of the ActiveX control and then call the BeginRun method (ie. 3 controls). Data is returned in the OnData event asynchronously and displayed (ie. 1 numeric display). I'me used to programming with the likes of VB and C# where events are a matter of course and you just select the event you want to code for and write the code so all this talk of "separate VIs" and "User Parameter List" is all confusing to me. The VB and C# samples I provided literally took me 15 minutes to write both and I won't tell you how embarrassingly long I spent playing with labview. From memory in (HP) VEE it was relatively easy to make a basic demo using our ActiveX control but we won't be supplying a demo for that this time (or possibly the old demo still works). This is supposed to be such a basic labview sample being provided by the vendor (our small company) as you suggested.
    I downloaded the 30-day LabVIEW 2011 trial, which I was assuming had proper "event structure" but its counter-intuitive to use.
    I've modified the attached control slightly (put a Run button on and a CallBack VI thingy) but I don't know how to wire up the run button to do something when clicked nor the event output to the (string) display.
    Attachments:
    ControlTest2.zip ‏15 KB

  • The activex control for flash player could not be registered.  Please help!

    Can't install flash player.  Keep getting activex control for flash player could not be registered.  I have tried all of the solutions provided on this forum.  Running windows 7 32-bit running IE8.
    Please help.

    Hi, Did you use the Administrator Account? If you received that message it is usually a Permissions Issue.
    We have had several reports this past week of a Virus(AntiVirus8 or AV8) that can set a Kill-bit on the very Registry Key that FP uses for that ActiveX Control.
    You may want to look and see if this is perhaps the problem. This needs to be ruled out first before we proceed, because if that key has the Kill-bit, then it wouldn't matter what you do.
    http://forums.adobe.com/thread/782435?tstart=0
    Thanks,
    eidnolb

  • OCX and ActiveX controls

    Hi there,
    Can anybody please answer to my following questions?
    1. What are OCX controls and ActiveX controls in D2K.
    2. Whats the difference between using OCX and ActiveX control and when to use them
    in our application.
    3. A small procedure exlpaining how to use them in D2K.
    4. Send me a sample form (.fmb) using OCX and ActiveX control (if don't mind).
    Note: One can give answer to one question and other can give to other questions.
    Thanks in Advance.
    Regards,
    Aqueel([email protected]).

    Nevermind, I stopped using the OCX to connect. Maybe they just don't work.

  • I need a little help help with the Spreadsheet 9 ActiveX control

    Here's the situation: I want to import data from an Excel file to the MS Office Spreadsheet 9.0 ActiveX control on the LV front page. I can retrieve the data just fine but I can't get it to display in the control on the front page. I can select a range and when I try to write to the Value property I find that I cannot. The problem seems to be the Value property itself cannot handle 2-D data arrays. I can select a 2D range and write a single value which gets written to every cell in the range but when I read the data I get only the first cell in the range and an error if I try to caste the Variant output to a 2D array.
    I've noticed a Value2 property for the range when actually working with Excel but I haven't been able to determine where or if it exists for the Spreadsheet 9 control. I've attached a little test program to better show what I'm experiencing/talking about. Anyone have any suggestions on this? It seems like it would be possible or else why have the control there but I haven't found a way around it. Thanks in advance.
    Gary D
    Attachments:
    spreadsheet 9 test.vi ‏41 KB

    Jack J. wrote:
    Hey Gary,
    What version of MS Office does the 9.0 ActiveX control come with. I have version 11.0 here. I could get your program working on my computer but I had to reinitialize the activex control to the 11.0 control. I also had to reselect the properties. All the properties are essentially the same except Value. In this ActiveX version, I see the Value2 property (the Value property does not exist). And your method of reading and writing to the Value2 property handles 2D arrays.
    If you can tell me what version of Office you are using, I will try to find a computer with that version and try your program.
    Jack J.
    Applications Engineer
    National Instruments
    Most of the computers have Office 2000 which uses the Value property and the Spreadsheet 9.0 control. I too have been able to duplicate it ona computer with Office 2000 (Spreadsheet 11.0). I think it may just be a functionality of the Excel version though for some reason if I use Excel and go through the song and dance with the methods and properties, I get to the Value2 property.
    After writing that it seems weird that using Excel properties and methods gets me to the point where I can select the Value2 method and read/write accordigly, but with the Spreadsheet 9.0 control (which, I assume is simply embedding Excel in the app) I get to a different set of properties. Perhps Spreadsheet 10 (or 11) is on the computer but not showing up? That's the only sensible conclusion I can come to, though it seems weird for it to not show up on multiple computers which effectively kills that idea anyway.
    Anyway. thanks for any help you can provide.

  • Flash player 10.1 Help ( ActiveX control and Download manager)

    I've been trying for several hours to download the new flash player 10.1. I tried everything in the FAQ and still nothing. I tried un-installing the older version that I had (9.3.3),   and still nothing.Then when the download manager gets to the end of the download, it keeps saying Error: Installation failed but Adobe Air was still able to download so the problem is obviously flash 10.1. Then it tries to finish installing it and when its done it says that it couldn't register ActiveX control and that error 19166 occured. I already enabled ActiveX so I dont know what the problem could be.
    Help would be appreciated and could someone explain what error 19166 is and how to register or install activex
    ps. I had this problem a while back but somehow I was able to download flash version 9.3.3, so even if I can't download 10.1, can someone give me a link to download version 9 instead.
    System information: Windows 7
                                  Internet explorer 8
                                  32-bit
                                  Norton 360

    Thanks for your reply.I've tried/done everything on that page and I'm still having issues. And I've already disabled Norton and windows firewall and still nothing works.

  • ActiveX Control+OLE Container+ Bean Area. Help Required

    I am a beginner and using forms 6i, where can i find detailed information about ActiveX Control,OLE Container and Bean Area.

    Hello,
    Forms 6i is a very old version and is unsupported for a long time. Are you forced to use this version ? If you are a beginner, why don't you start with the current version ?
    Francois

  • Integrating custom ActiveX control with SapGUI

    Hi everybody
    I'm in the process of writing a custom MFC based ActiveX control written in C++ that we want to use in a product. I am currently at the point where I can instantiate the control and interact with the various methods that it exposes but I have a problem integrating the control more tightly with the SapGUI e.g. change of colors, fonts etc.
    I want to make the control to reflect the user changes when the user modifies any settings of the SapGUI. I've tried catching various events that are exposed by some of the dictionary classes such as cl_gui_props_consumer=>color_change/global_prop_change and cl_gui_resources=>resources_changed but these events only fire in my control once the PAI of the client program that encapsulates the control fires which is hardly appropriate since it means that the control will have to wait for user input before it will change reflect any changes in user settings.
    I've written a test program for my control and when I change my SapGUI colors the rest of the controls etc on the screen do change color but my control only change color once I've performed some action that fires the PAI. Personally I think the controls written by SAP intergrates with the SapGUI through some interface that is called behind the scenes by the SapGUI since the GUI will have some way of knowing the set of ActiveX controls instantiated inside it  and I cannot find any event in the ABAP controls framework (e.g. CL_GUI_OBJECT, CL_GUI_CONTROL) that will allow this type of integration. I'll be digging for the answer but any suggestions will by greatly appreciated.
    Thank you in advance for any help.
    Kind regards
    Ettienne Hugo

    Hello Ettienne Hugo,
    To get the SAP GUI Theme or font changes events you need to add your MFC application or ActiveX MFC dll into u201CSAP Configuration->Application Tab->Addu201D and u need to call the functions SapHookInit and to stop getting the change events u need to call SapHookExit.(sapfhook.dll provides these functions)
    I tried with exe, never tried with ActiveX MFC dll/ocx. With EXE it works.
    Thanks and Regards,
    Ashwini

  • How do I update my ActiveX controls without breaking existing VIs?

    Hi, I'm new to LabView. I've inherited a labview application that makes use of several user-written VIS. All these vi files use an ActiveX control. For better or worse, the way they've done it is to put a ActiveX Container on the front panel. They then picked "Insert ActiveX Control", and picked the correct OCX. In the block diagram, they set up a "Invoke" Node and wire the ActiveX control to that.
    The problem occurs when I update the ActiveX control. I added a couple of methods and reregistered it. When I run one of my vi files, I get:
    Error 0 occurred at VI Open & Init Spinstand
    Possible Reasons....
    I then thought that going to the front panel and deleting the ActiveX control and reinser
    ting it would work. Instead I got the message:
    Error 1598667368 occurred at VI open & Init...
    I should point out that I'm not even attempting to use the new function yet; I'm just running an old .vi file with the updated ActiveX control.
    The version of LabView I'm using is 6.0.2. Can anyone tell me what's going on? Is there a way to gracefully update the ActiveX control? I'm I adding ActiveX controls in the best way?
    Any help or references would be greatly appreciated.
    Thanks,
    Andrew Walker

    Updating *.OCX OR *.DLL Component When Active X Automation Interface has Changed
    Given that you have changed the ActiveX automation interface, e.g: by appending new functions, then, the original 'registered' ActiveX server automation interface is no longer compatible with the new one.
    In this case you must: (1) �un-register� the original interface; (2) Copy the New *.OCX/*.DLL File over the previous ones; (3) Then �re-register the new interface�; (4) After that you must visit ALL your LabVIEW Diagram �PROPERTY� and �METHOD� ActiveX automation nodes and re-reference those same functions.
    These FOUR (4) Steps are further explained below:
    1. Unregister the *.OCX or *.DLL file by running the command
    Regsvr32 /u ��
    Make sure that points to the full path name for your *.OCX or *.dll file. You must use the opening and closing quotes if your file path has spaces.
    2. Copy the new *.OCX or *.DLL files over the old ones
    This means that you will be over-writing the old *.OCX or *.DLL with the new files. Replacing these files is re-commended so that you do not end up with multiple copies of the same file.
    3. Register The New *.OCX Controls
    Register the new controls by running the command
    Regsvr32 ��
    This will now honor your new ActiveX automation interface in place of the last one.
    4. Re-Visit All �PROPERTY� and �METHOD� Nodes and Re-Reference the same functions that appear in those nodes
    This means that you will be right-clicking on all the existing PROPERTY and METHOD nodes and choosing the functions accordingly from the drop-down list-view/menu. If the list view is grayed-out, then Steps 1 to 3 did not take!
    NB: GOTCHA FOR *.DDL Users
    If you have sub-VIs that use the *.dll Ref icon then you will have to cut and re-insert this reference control in all those sub-Vis. A quick way is to copy the top level *.Dll ref icon and paste it over the control and indicator versions of the same in those sub VIs.
    These four Steps plus the 'Gotcha Step' have worked consistenly when I have had to update ActiveX controls featuring a changed automation interface.

  • In PowerPoint I Have Shockwave ActiveX Control - How do I Get Shockwave Flash Object?

    I'm running the latest versions of Windows 7 and PowerPoint via Parallels on my Mac. I want to insert a Flash movie into a PowerPoint slide. The instructions I've found tell me to look in Developer section->More Controls, find Shockwave Flash Object, use it to insert a Flash Object, and then to edit the Movie property of that object. But, I do not see Shockwave Flash Object. Instead I see Shockwave ActiveX Control. The properties of Shockwave ActiveX Control do not include a Movie property.
    I have gone to "http://get.adobe.com/shockwave/" and clicked the option to install the Shockwave Player, but the site says the Shockwave Player is already installed.
    How can I get the Shockwave Flash Object for PowerPoint into my installation?
    Thanks very much in advance to all for any info.

    Hi Vik..  I don't use Powerpoint but I do know about Shockwave Flash Object. It is in the manage add ons and installs when Flash Player is installed. It is an ActiveX Control and if you have the latest FP installed, Flash10d.ocx should be listed on the same line. It may or may not list the version #, which would be 10.0.42.34. It must be enabled.
    Beyond that info I could give you a link to a thread that involved powerpoint 2003 and 2007 if you think that would be of
    any help to you.
    Just post back.
    Thanks
    eidnolb

  • App says "Evaluatio​n Copy" but ActiveX controls are not evaluation copies.

    App has been running for 3+ years in a Win95 machine. Just moved to Win98 machine and now "Evaluation Copy" appears in app. I have copied the two OCX files from the Win95 machine and registered them on the new machine. I purchased ComponentWorks 3 years ago - I never had evaluation copies of these OCX files. Could this be a Win95 to Win98 problem?

    I doubt that this is a Windows problem; there are several reasons why an ActiveX control could turn to evaluation mode (see KB link below). I would suggest that you uninstall the OCX controls from your new computer and instead run the ComponentWorks installer for proper installation/registration.
    If you have version 3.x or later of the CW controls, you could also run the Measurement Studio License Fixer Utility found in the following Knowledgebase article:
    http://digital.ni.com/public.nsf/websearch/86256A4​7004E16D186256A99007BEFB7?OpenDocument
    This utility will help you diagnose the license state of your controls and will try to fix any broken licenses. Please read the KB carefully as it may not apply to your particular setup.
    If none of the solutions off
    ered here works for you, please email us through http://www.ni.com/ask so we can assist you in a more direct way.
    Regards,
    Azucena Perez
    National Instruments

  • How compatible is Oracle forms with OCX / ActiveX components

    How compatible is Oracle forms 6.0 with OCX / ActiveX components?
    IFve got to very nice activeX controls (ctSchedule and ctMday)
    from DBI-TECH(www.dbi-tech.com) but they donFt work properly
    within Forms. They work great within VBA (word).
    Sometimes they donFt display things well or donFt react to the
    mouse in the properly manner.
    What can be wrong os is Oracle forms not 100% activeX compatible.
    Thanks
    Guido Reulen
    [email protected]
    null

    Hi b w,
    I do not know much about Simply Accounting, however, if the Crystal Reports can be integrated with this software, then their tech support would be the best one to answer the issue with limited access to reports.
    Secondly, if you can get an ODBC driver for your Simply Accounting, you might be able to create reports in Crystal reports (Again with no guarantee as Simply Accounting does not fall in the supported platforms for Crystal Reports).
    I would suggest you to contact the tech support of Simply Accounting to know if there is any specific version of Crystal reports that works best with your software.
    It is simple to create highly professional reports with Crystal reports and you can either refer to the help included with the software or can log on to SAP support site and download the Crystal Reports user's guide to get step by step instructions on creating reports.
    Please do let us know if you have any further questions.
    Regards,
    Abhishek Jain.

  • RE: Ocx / ActiveX

    Patrice,
    We use several Controls in our systems, I am not going to say it was always
    easy making them work but they all work fine. We have grid controls,
    calendars, IE 4.0, home grown controls, etc.
    Thanks,
    Russ Engelhardt
    IT Systems Consultant
    ITCO Consulting Services / ADE Technical Center (Forte)
    mailto:[email protected]
    -----Original Message-----
    From: BOURDON Patrice [mailto:[email protected]]
    Sent: Friday, January 29, 1999 2:39 AM
    To: 'forte-users'
    Subject: Ocx / ActiveX
    Hello world,
    has someone heard about (or used) a good ocx or activex library working
    well with Forté ?
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi,
    I tested some OCX like Acrobat Reader, Ms Calendar and Internet Explorer
    4.0.
    The best was Acrobat Reader 3.0 : easy to use and working very well (but
    needs memory).
    The less stable is Internet Explorer 4.0 (it works now to view HTML files).
    You can find samples and libraries on http://perso.club-internet.fr/dnguyen/
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    Url : http://perso.club-internet.fr/dnguyen/
    BOURDON Patrice a &eacute;crit:
    Hello world,
    has someone heard about (or used) a good ocx or activex library working
    well with Fort&eacute; ?
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Maybe you are looking for