Powerpoint 2013 Plugin Example using SDK2 and Gestures

Hi all
Does anyone have an example of a powerpoint add-in using VS2013 U4, Powerpoint 2013 and SDK2?
I am using the Kinect Nuget package but keeping getting an IO exception when loading gesture objects.
Apparently the Gesture Runtime is having trouble loading AdaBoostTech.dll and RFRProgressTecg.dll even through both are present in the correct bin folder as the Nuget install script sets this up.
Also tried the older WPF way from the samples using the post build script to copy the dlls 
xcopy "$(KINECTSDK20_DIR)Redist\VGB\$(Platform)\vgbtechs" "$(TargetDir)\vgbtechs" /S /R /Y /I
But I still get the DirectoryNotFoundException. Must be something in the way the plugin loads dlls.

Some additional information:
I am using firefox 18.0.2.
I can't copy of the text from the "about:support" page in firefox because when I type that in the address bar, firefox immediately crashes.

Similar Messages

  • Load Akamai plugin example using Static plugin loading method

    Hi,
    I want to load Akamai plugin example using Static plugin loading method. For that, I passed "com.akamai.osmf.AkamaiBasicStreamingPluginInfo" as a class defination, but I got error stating, ReferenceError: Error #1065: Variable AkamaiBasicStreamingPluginInfo is not defined.
    Makjosh once sent a post that the title was "Getting an error while loading the plugin using static plugin load method". I then follow the solution. But how can I add the dependent project(Flex/AS Build Path -> Library Path -> Add Project). As a result, I do not find the AkamaiBasicStreamingPlugin project only having the NetMocker project and the StrobeUnit project in it.
    So I try to link the AkamaiBasicStreamingPlugin project use the following method(project properties->Project References->select "AkamaiBasicStreamingPlugin"), it still causes the same error.
    Please help me.
    Thanks.

    Hi,
    A couple of things to look at:
    1) Make sure you have the import statement in your project:
                import com.akamai.osmf.AkamaiBasicStreamingPluginInfo;
    2) Make sure you add the AkamaiBasicStreamingPlugin folder to your Flex Build Path (right click project, select "properties", then "Flex Build Path", in "Source Path" you need to add the plugin folder).
    3) If you are still getting Error #1065, you can try a trick where you force the swf compiler to pull in the class:
                private static const loadTestRef:AkamaiBasicStreamingPluginInfo = null;
    Now you should be able to use getDefinitionByName to load the plugin:
                    var pluginResource:IMediaResource;
                    var pluginInfoRef:Class = flash.utils.getDefinitionByName(className) as Class;
                    pluginResource = new PluginClassResource(pluginInfoRef);
                    pluginManager.addEventListener(PluginLoadEvent.PLUGIN_LOADED, onPluginLoaded);
                    pluginManager.addEventListener(PluginLoadEvent.PLUGIN_LOAD_FAILED, onPluginLoadFailed);
                    pluginManager.loadPlugin(pluginResource);
    Hope that helps,
    - charles

  • Is there a way of copying from illustrator CC (mac) into powerpoint 2013 (pc) while using parallels?

    Keeping it as a vector, of course!

    What do you mean, 'how should that work?'
    Do you know what parallels is? It allows you to use both operating systems (windows and mac) at the same time while using a Mac.
    When I previously had illustrator on my windows, I could copy whatever shape or i had designed, from Illustrator into powerpoint 2013 without a problem. It comes in as a .emf which I can then scale, change colours, change the points in the shape.... all things vectors can do. Now I have to export it from illustrator as an emf and them import it into powerpoint to get the functionality that I need. It just adds an extra step to the process, but since i do this a lot it would save me tons of time. This blog post made me think there may me a patch available.

  • Looking for Analog Out example using DMA and C++; cannot find sample "GenMultVoltUpdates_SWTimed"

    Looking for example for Analog Out to multiple channels using DMA and C++.  Found reference to sample "GenMultVoltUpdates_SWTimed" which I do not have and cannot find.

    Hello Gerry,
    When you install DAQmx, there is an option to install
    support for Measurement Studio.  When you
    select this option, it will install these examples onto your hard drive.  All of the examples can be found at the
    following location: (C:\Documents and Settings\All Users\Documents\National
    Instruments\NI-DAQ\Examples\DotNET2.0\Analog Out\Generate Voltage)
    Respectfully,
    Rob F
    Test Engineer
    Condition Measurements
    National Instruments

  • Outlook 2013 - ActiveSync: not using SmartReply and SmartForward

    Hi guys,
    this is my first question in this forum and it is a heavy one..
    Is there any way to force Outlook 2013 to use the SmartReply and SmartForward commands?
    Outlook 2013 is always using just the normal "SendMail" command..
    Thanks!

    Hi Patrick De Zordo,
    Welcome to Microsoft Office forum.
    First I want to know whether we are talking about the commands run on Exchange(http://msdn.microsoft.com/en-us/library/ee217283(EXCHG.80).aspx), or the add-ins run on Outlook?
    I noticed there's an add-in called "SmartReply" and this is why I need to confirm.
    If it's the commands, SmartForward, SmartReply and SendMail are all based on Exchange, I would suggest you post the question in Exchange Server Development forum to get more specific support:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?category=exchangeserver
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Worked example using 'patch' and 'sed' to make a pkg

    I would like this to be reviewed, please. The methododology may need to be standardized a bit more. Also, of course, the way I have used scripts may be a bit controversial. Certainly, anyone who knows what they are doing could easily do without these scripts, but maybe also they are stepping stones to acquiring that sort of proficiency! Also, I would not rule out that the PKGBUILD, itself, can be criticised/ improved with guidance.
    Introduction
    Here is a method for creating patches for Makefiles which uses sed to convert #PREFIX# to $Startdir/pkg in literal path form, so that the build is fully portable. I asked a while back on the forum whether this was possible. Xentac held my hand, while I picked up the method from him. What follows also incorporates some of his cautions about retaining md5sum integrity. (A point about which I earlier had a weak understanding!) My thanks also to dp who sorted me out on the use of $pkgname and $origname.
    Description
    The PKGBUILD method is an example of automation, which these scripts follow in that variables are assigned values and then a template-like feel follows on. Despite this resemblance, you will need to make these two files executable by applying
    $ chmod +x FILENAME
    You will need to execute them in a terminal with the commands
    $ cd YOUR_WORKING_DIRECTORY_PATH
    $ ./Makefiles_ready
    or
    $ ./PATCHMAKER
    This will all work under fakeroot, provided the files have 'user users' permissions. The attached scripts are annotated examples; and enough is provided so that the reader can fabricate his/her own Makefile_new and test out the method for his(her)self.
    I reckon this might be useful practice for learning the technique. I need to mention that for full functionality postfix needs to be installed and set up so that sendmail can work, but a lot of the functionality can be tested without doing this.
    The command for starting the application is
    $ FaxMail
    You can, of course, run it for testing purposes from $startdir/pkg/usr/bin. Note the distinction between $origname and $pkgname, which you will see in the following files.
    Getting Directory and Files Ready
    You could start by making a new directory in $HOME, possibly called 'TESTBED' and by creating empty files named as per the following, ready for copying and pasting. It could also be useful to create a file called HOWTO and paste these notes into it. You will then need to check the 'user users' permissions and to make the two new scripts exucutable.
    Then, you are ready to roll -- completing the whole process with a straight 'makepkg' in the terminal.
    File Contents
    Makefiles_ready
    #! /bin/sh
    # Makefiles_ready... generates two clean copies of the Makefile.
    origname=FaxMail
    pkgver=2.3
    ### RESULTS:-- two appropriately named copies of clean Makefile.
    ### 'Makefile_new.scratch' is so named as a safeguard against
    ### inadvertently overwriting any earlier 'Makefile_new'. So, if you just
    ### want a clean 'Makefile_pristine' with which to make a new patch,
    ### delete the generated 'Makefile_new.scratch'.
    ### REQUIREMENTS:-- Either a downloaded and compressed source file
    ### in the main directory, and appropriate source array in PKGBUILD.
    ### Or just the latter.
    ### NOTES: If there is already a ./src_old, it should first be deleted by
    ### hand. If there is already a $pkgname-$pkgver.pkg.tar.gz, it will need
    ### to be removed or deleted. This script will produce a failed make
    ### but will produce the results we are looking for.
    mv ./src ./src_old
    makepkg -o
    # downloads and extracts files; does not build.
    cp ./src/$origname-$pkgver/Makefile Makefile_new.scratch
    cp Makefile_new.scratch Makefile_pristine
    echo ">> When and if ammended, Makefile_new.scratch "
    echo ">> needs to be renamed as Makefile_new. If you do this"
    echo ">> and you want to retain your earlier Makefile_new, you "
    echo " should first rename it to something like Makefile_prev_new."
    PATCHMAKER
    #! /bin/sh
    # PATCHMAKER... makes a patch file
    origname=FaxMail
    pkgname=faxmail
    pkgver=2.3
    ### RESULTS:-- $pkgname-$pkgver.patch; md5sums
    ### REQUIREMENTS:-- Clean Makefile_pristine; Edited Makefile_new;
    ### PKGBUILD ammended to include $pkgname-$pkgver.patch in source array.
    ### '#PREFIX#' stands in for '$startdir/pkg' -- see the sed command
    ### in PKGBUILD which inserts the required literal path, prior to making
    ### for real.
    ### It is a good idea to look at the patchfile produced here, and checkout by
    ### eye that the lines set for deletion are really from the Makefile_pristine.
    ### The two scripts have worked consistently, according to my tests.
    ### Makefiles_ready can be used to ensure you have clean makefile copies
    ### to start from.
    diff -aur Makefile_pristine Makefile_new >$pkgname-$pkgver.patch
    makepkg -go
    ## tests sources and produce md5sums; does not start the build process.
    echo ">> Check $pkgname-$pkgver.patch"
    echo ">> If it is OK, paste md5sums into PKGBUILD"
    PKGBUILD
    # $Id: PKGBUILD, $
    # Maintainer:
    origname=FaxMail
    pkgname=faxmail
    pkgver=2.3
    pkgrel=1
    pkgdesc="A front end for sending faxes via email."
    url="http://wol.ra.phy.cam.ac.uk/FaxMail/"
    depends=('tcl' 'tk' 'imagemagick' 'postfix')
    makedepends=('tcl' 'tk')
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(ftp://sunsite.unc.edu/pub/Linux/apps/serialcomm/fax/$origname-$pkgver.tar.gz
    ./$pkgname-$pkgver.patch)
    md5sums=('55dc96aee65ccd3bee2ec38bb6ca0ffd' 'b419add4472576a2a4fc4272e8c7da48')
    build() {
    cd $startdir/src/$origname-$pkgver
    patch Makefile $startdir/src/$pkgname-$pkgver.patch
    sed -i "s%#PREFIX#%$startdir/pkg%g" Makefile
    mkdir -p $startdir/pkg/usr/bin/ $startdir/pkg/usr/man/man1/
    $startdir/pkg/usr/info/
    make
    make install
    faxmail-2.3.patch
    --- Makefile_pristine 2004-08-21 20:12:23.000000000 +0100
    +++ Makefile_new 2004-08-20 12:28:29.000000000 +0100
    @@ -3,19 +3,19 @@
    # where can I put the FaxMail wrapper and the tryfax executable
    -INSTALLBINPATH = /usr/local/bin
    +INSTALLBINPATH = #PREFIX#/usr/bin
    # where can I put the FaxMail manual
    -INSTALLMANPATH = /usr/local/man
    +INSTALLMANPATH = #PREFIX#/usr/man
    # where can I put the FaxMail info page. If you don't have gnu info,
    # you can set this to /tmp or something. If you do, remember to add
    # in an entry to the `dir' file.
    -INSTALLINFOPATH = /usr/info
    +INSTALLINFOPATH = #PREFIX#/usr/info
    # what is the toplevel FaxMail directory.
    # Contains the coverage list and FaxMail.tcl script.
    -FAXMAIL_DIR = /usr/local/lib/FaxMail
    +FAXMAIL_DIR = #PREFIX#/usr/lib/FaxMail
    # external program locations
    @@ -23,7 +23,7 @@
    WISH_CMD = /usr/bin/wish
    # where can I find smail or sendmail
    -MAIL_CMD = /usr/lib/sendmail
    +MAIL_CMD = /usr/sbin/sendmail
    # where can I store temporary files
    TMP_DIR = /tmp
    @@ -39,7 +39,7 @@
    CFLAGS =
    LDFLAGS =
    # Uncomment the following line if linking of tryfax fails.
    -#LDFLAGS = -lresolv
    +LDFLAGS = -lresolv

    I have looked at possibilities for executing
    $ makepkg -o -p Makefiles_ready
    and
    $ makepkg -go -p PATCHMAKER
    The second is a serious candidate for doing it that sort of way. The first, however, needs the embedded makepkg and encasing with makepkg therefore executes that process a second time.

  • How can i add to Outook 2013's ribbon using VBA and/or get a ribbon button's name within a macro?

    Everything I found on Google for this question refers to Excel or Word and what they say doesn't work for Outlook.
    I need to be able to do two things:
    Add buttons to a custom group on the "Home" tab of the Outlook 2013 ribbon using VBA from within Outlook 2013.
    Within the macro that runs when each button is clicked I want to be able to tell the name of the button that was clicked.
    For #1: I cannot find any useful information online.
    For #2: The idea is that I want to have a variable number of buttons like "Do 1", "Do 2", "Do 3", ..., "Do X" and each of them would run the same macro/sub and within the macro/sub I can see what the name of the button
    is so I know what to do. Otherwise I'd have to create a sub/macro for each button and I'm trying to avoid that.

    Hi IMThreNachoMan,
    >>Just to confirm, I can have the ribbon run a normal macro (Sub Blah()) but not if it tries to reference the ribbon (Sub Blah(c as IRibbonControl))?<<
    I've tested it on managed project, it works as expected, but it seems the *.OfficeUI file makes the VBA as an expectation.
    I'm trying to involve some senior engineers into this issue and it will take some time. Your patience will be greatly appreciated. Sorry for any inconvenience and have a nice day!
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Using ConnBean and CursorBean with a Data Source

    Hi all,
    I',m making a web app. using the Jdev (RUP4) with OA Extension. I looked in the help menu under "About Data-Access JavaBeans and Tags". Here I found the following example, but for some stange reason I cannot get the setProperty to work.
    Example: Using ConnBean and CursorBean with a Data Source This following is a sample JSP page that uses ConnBean with a data source to open a connection, then uses CursorBean to execute a query.
    <%@ page import="java.sql.*, oracle.jsp.dbutil.*" %>
    <jsp:useBean id="cbean" class="oracle.jsp.dbutil.ConnBean" scope="session">
    <jsp:setProperty name="cbean" property="dataSource"
    value="<%=request.getParameter("datasource")%>"/>
    </jsp:useBean>
    <% try {
    cbean.connect();
    String sql="SELECT ename, sal FROM scott.emp ORDER BY ename";
    CursorBean cb = cbean.getCursorBean (CursorBean.PREP_STMT, sql);
    out.println(cb.getResultAsHTMLTable());
    cb.close();
    cbean.close();
    } catch (SQLException e) {
    out.println("<P>" + "There was an error doing the query:");
    out.println("<PRE>" + e + "</PRE>\n<P>"); }
    %>
    Does anyone know how to set the "Property" to a datasource and make it work?
    Best regards,
    MHCI

    There is no point-and-click (Import Data Source Metadata) way to use an LDAP server as a datasource. You have to use the Java Function provided on dev2dev. If you need help with it, please post here.
    - Mike

  • PowerPoint 2013: New problem experienced in last seven days - Placeholders not taking objects Cut from them and attempted to re re-anchored.

    Hello,
    I am running Office 2013 Professional Plus and in PowerPoint 2013 (15.0.4605.1000 64 bit) on Windows 8.
    Ihave always been able to anchor content to placeholders (tables, text, images, and so on). In the last week this is no longer the case if an object has been anchored already.
    For example, I have an existing slide with a Content placeholder, and a table anchored to it. I cut the table, reselect my placeholder to get the white handles, and attempt to paste. It will paste the table as it was, but it is no longer anchorable to a
    placeholder.
    This is a critical issue for us as we are about to upgrade our corporate  brand/template and be required to upgrade thousands of documents and hundreds of thousands of pages of content.
    Can anyone advise a workaround? This is my first post on MDN and apologize for any missing elements.
    Anthony

    Hi Anthony,
    Thank you for posting in the MSDN Forum.
    Since the issue is more relate to the end-user, I'd like to move it to
    Office2013 pro general discussions forum.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks for your understanding.
    Best regards
    Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Project Server 2013: I am using Project Server Permission Mode and need help with permission assignments?

    Hi 
    Project Server 2013: I am using Project Server Permission Mode and need help with permission assignments?
    How can I change Permissions for the individual users to see specific projects or all projects in project center and to see specific quick launch items?
    For Example: if i have 4 users, A, B, C and D. what i want is:
    User A can see everything and act as a project manager or Admin.
    User B can view all projects in project centre but can change the schedule or resource assignment etc.
    User C can only act as approver of projects and can view all projects in project centre.
    User D can only view specific projects for which permissions are given.
    can i have some expert help in sorting and understanding permission modes... as i was playing with project server mode permissions and can't figure out how to apply the above scenario to set of my user.
    Thanks in Advance
    Cheers
    AJ
    Ajay Kumar

    Hi Ajay,
    Please refer to this link for detailed explanations about PS2013 security model. 
    http://technet.microsoft.com/en-us/library/cc197638(v=office.15).aspx
    Actually, it will take a couple of days to explain in detail the security model that is a fundamental and tricky aspect of every PS implementation. But basically, you NEVER set permissions for a single user. You have groups in which your insert users. Groups
    define "what users can do". Then you associate groups to a corresponding category. Categories define "what user can see". Thus the association of a group with a category will set "what the user can do on the objects he can see". Then, for more advanced security
    level, you can use the RBS that will consist in "branches" in which you'll insert users. Based on those branches, you'll customize categories to fine-tune what user can see (for projects and resources) depending on the RBS branch and level.
    I'd advice you to start "playing" in a test environment with the default categories/groups that might probably cover your need.
    Concerning your 4 users:
    user A : add him to the "administrator" group. Be careful that you're mentionning either project manager or administrator, which are 2 groups/categories with totally different permissions level.
    user B : basically can see everything and change everything? it could be in the project manager group, assuming that there are no project visibility restrictions on the category via the RBS.
    user C : waht do you mean by "approver"? Workflow approvals? Then it will be the portfolio manager group. Task update or timesheet approval? Then it is another long topic: please refer in the documentation to the "status manager" and "timesheet manager"
    concepts. There are not related to the security model. In a few words, the status manager is the owner of the project plan, is defined for each task and approves tasks updates. The timesheet manager is an attribute defined for each resource in its parameters
    and approves resource timesheet.
    user D : you have to define which permission level must be given to this user. Basically it could be a team member that will see only projects he's in the project team. Note that team member cannot interact with the project plan in another way than submitting
    timesheets and/or tasks updates which must be approved.
    Once more, those are large and complex subjects that require a deep dive into your business model and tons of tests in a test environment.
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • Is anyone using Adobe Presenter 10 with PowerPoint 2013?

    I was online with the chat support who was trying to help me solve my Adobe Presenter 10 addin in problem with Powerpoint 2013.  He had me remove the software.  When I went to reinstall, the browser logged me off the chat.   When I went back in, they were gone for the day.   Now I have no presentation which was due to be uploaded last Saturday!   Can anyone help?

    Hi Alpi,
    After uninstalling Office 365 (powerpoint 2013 32bit) and reinstalling it , I was able to get the addin to work.
    Before this I reinstalled Adobe Presenter 10 , 3 times without success.
    I am using OS WIN 7
    So this solved my addin issue.   It did not solve my issue with my presentation missing the audio files.    When I publish the presentation in HTML it opens in Firefox perfectly.    But when I go to send the packaged  OR zip files they are missing the audio files.   No where to be found  but it has sound in Firefox HTML.    In the end I copied the audio files from a folder I found , into the folder to share.  Then zip the file using Windows. 
    I won't know if it worked because the network administrator is not back til tomorrow.
    Thanks for trying to assist me with this.   It has been a long day trying to resolve this issue.   I almost wish I had just redone the lecture in powerpoint and skipped the Adobe Presenter 10.   It may have taken me 2 or 3 hours.  But this is better than the 10 hours it took to deal with this issue.
    Have a good night
    Marybeth

  • How to burn a powerpoint 2013 presentation to a DVD R and or USB flash drive.

    My Powerpoint 2013 slideshow includes photo's, clip art with transitions and animations and embedded music.   I want to
    burn this presentation to either  a DVD disk or a USB flash drive and send it to a friend.   My friend has a windows 7 desktop
    computer and a DVD player attached to a TV.   Ideally I want to know how to burn the presentation to a DVD so that the presentation can be played back on the TV using the DVD player.    I do not want to lose any of the transitions
    or animations when I burn the presentation to a DVD.          I know most TV's have a USB connection but have no idea how this works if the
    presentation is copied to a USB flash drive.   What are my best options to keep the integrity of the presentation intact, and how do I go about doing this?   I need detailed instructions please.   Thanks in advance
    for your assistance.
     

    Hi,
    The factor of keeping the integrity of presentation when you burn this presentation to either a DVD disk or a USB flash drive depends on performance of DVD disk and USB flash drive.
    There are two ways to put PowerPoint presentation on a DVD convert PPT to video.
    1. Convert PPT Files To DVD is to use a screen capture software.
    2. Convert and Burn PowerPoint Presentation onto DVD would be to use a professional PowerPoint to DVD converter software.
    For more detail information:
    http://worldclassmedia.com/how-to-convert-powerpoint-files-to-dvd-put-a-powerpoint-presentation-on-tv/
    If your TV doesn’t have built-in processors or Windows installed, it can’t run PowerPoint presentations in their native environment from a USB connectors. If so, you should convert it to video format first.
    Detail information:
    http://www.free-power-point-templates.com/articles/methods-to-play-powerpoint-on-tv/
    Feel free to post back.

  • So I am trying to copy my hard drive "Macintosh HD" to an external hard drive, i want to use Terminal and have tried many ways. For example cp -r /Volumes/"Macintosh HD" /Volumes/"NO NAME". When i do it says No such file or directory. Ideas?

    So I am trying to copy my hard drive "Macintosh HD" to an external hard drive, i want to use Terminal and have tried many ways. For example cp -r /Volumes/"Macintosh HD" /Volumes/"NO NAME". When i do it says No such file or directory. Ideas?

    The reason that threadjacking is frowned on (as mentioned in the terms use which you can read by clicking the link to the right on this page) is for the most part a practical one:
    By starting your own thread your problem can get individual attention, focussed on your particular set of circumstances.
    By joining somebody else's thread it becomes tricky to answer more than one question at the same time, and can lead to confusion for both parties.
    So if you don't mind the minor inconvenience, please start your own thread (in the correct forum) so we can get to grips with your particular problem!

  • I purchased a used macbook and the other persons apple id information is still on this for example apple updates it wont allow me to update apps unless i am logged in with his email. how do i change that

    i got a used macbook and the other persons apple id is still connected to the macbook. for example i cant update apps unless i have his passwod but i dont wanna pay for apps such as iphoto and more. is there anything i can do? this is a macbook 13 inch late 2008 model

    You're going to have to purchase those apps for yourself. The seller shouldn't have left anything he had purchased on the computer when he sold it to you.

  • Plugin created using C++ 6 and Acrobat 6 SDK Not Working in Windows

    I have an Acrobat plugin compiled in Visual C++ 6 using Acrobat 6 SDK. The plugin works flawlessly in Acrobat versions 6 to 9 in Windows XP. While the plugin is able to add a menu iterm and tool bar icon in Windows 7, it causes Acrobat to hang everytime when activated in which event I have to close Acrobat. Since Visual C++ 6 is a 32 bit app, I have to believe that Acrobat 6 SDK is responsible for the behavior described herein in attempting to get the plugin to work in Windows 7. Any comments or suggestions regarding what Visual C++ version to use along with the appropriate Acrobat SDK to get the plugin to work in Windows 7 are appreciated. In doing so, I would also be interested in knowing what backward compatibility one may expect w/regard to previous versions of Acrobat in updating the plugin to work in Windows 7. As for the answer, correct me if I am wrong but I'm thinking Acrobat 9.

    Adobe hasn't supported Acrobat 6, VC6 or the Acrobat 6 SDK for at least 5 years.  You will need to move to the Acrobat 9 SDK if you wish support.
    And Acrobat 9 and its SDK are fine with Windows 7.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Thu, 1 Dec 2011 01:15:42 -0800
    To: Leonard Rosenthol
    Subject: Re: Plugin created using C++ 6 and Acrobat 6 SDK Not Working in Windows Plugin created using C++ 6 and Acrobat 6 SDK Not Working in Windows
    Plugin created using C++ 6 and Acrobat 6 SDK Not Working in Windows
    created by gomfp49<http://forums.adobe.com/people/gomfp49> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4056529#4056529

Maybe you are looking for

  • Html tags in .properties files.

    Hi all, I want a small clarification regarding the .properties file in JSF. I want to execute html tags in the properties file. my resource file is... code = Section Code I want to make the Section Code as bold. If i give like this code = < b > Secti

  • Problem setting vty password in packet tracer

    I'm trying to configure a vty password in packet tracer and I think I'm doing something wrong. These are the commands I'm using: line vty 0 password test end When I do showrun I can see the command, but when I try to get access to the vty line, it ne

  • Events vs projects files---am i using twice the hard drive space?

    If i have a movie in events file...then move it to projects file, does it utilize twice as much hard drive space becuase there are two movies--one in each file?

  • How can i play aiff files on my ipad??

    Hello all, How can i play .aiff files on my ipad?? I mean without converting them into mp4 format. (Converting does by far not keep the quality!) Many thanks

  • Query to see registered objects

    Is there a query to see what PL/SQL procedures are registered as a callback to a specific queue? I would like to verify that the call to dbms_aq.register was successful. _mike