Using authorware map file in powerpoint

Hello,
where can I get Infos about the macromedia authorware
player component for map files for programming in VBA?
I want to run Authorware map files in powerpoint using
this component. Alternative I'm using the webbrowser
component for it and this works in powerpoint...
Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As
Object, URL As
Variant)
If URL = "" Then
WebBrowser1.Navigate ActivePresentation.Path &
"\course1253.aam"
End If
End Sub
Thanks
Uwe

Hi,
I downloaded the lastest player and install it.
So I have only one problem:
My authorware aam File is running correctly in (on?) MSIE.
But Authorware control in powerpoint shows the
loading bar "initalize .." and nothing happens.... So I
think,
I have somthing to do in VBA, but I'm not sure... So
I'm searchimg for somebody, who can use this control
in powerpoint correctly.
But I think it's ok for my presentation using webbrowser and
don't waste the time on authorware control. All other
controls
are working without any problem (VRML, Flash, PDF, etc.)
Many thanks for your interest !
Uwe
"Steve Howard **AdobeCommunityExpert**"
<steve@$NoSpam$tomorrows-key.com>
schrieb im Newsbeitrag
news:e7u0vt$4mr$[email protected]..
>> Do you mean the Macromedia Authorware Webplayer
Control? This Component
>> doesn't work on my powerpoint 2003 (german). What I
see in my
>> presentation
>> is only the loading bar and nothing happens or on
other computer
>> powerpoint
>> gets an error (has an problem ...)
>>
>
> I cannot test it ere, so I need you to tell me more
about "gets an error
> (has an problem ...)"
>
> Provided all the appropriate Xtras etc are there with
the aam file, I
> would have expected it to work for you.
>
> Steve
>
>
> --
> ACE - Adobe Community Expert, Authorware
> My blog -
http://stevehoward.blogspot.com/
> Authorware tips -
http://www.tomorrows-key.com

Similar Messages

  • Authorware map file error

    While attempting to load MHC Interactive GED Integrated
    Online Solution. The following error was received:
    Authorware Web Player Error
    Error reading the Authorware Web Player Map File.
    Invalid file version. file://C:\Program files\MHC
    Interactive\GEDONLINE\cab\xtras\BUDAPI.X32
    Is anyone familiar with this type of error?
    Any help you can give is greatly appreciated. Thank you.
    Jewels42359

    Search the forum archive via Google and the AwareListserv
    http://ls.kuleuven.ac.be/archives/aware.html)
    as I think this came up
    before.
    If I recall, under Vista, the fix is to somehow run the
    browser in
    compatible mode?
    The error could possibly be resolved by the publisher
    updating the
    version of the BudAPI Xtra they use, but I think it's more of
    a Vista
    'security feature' issue.
    Is the OP running Vista too?
    Erik
    Aptiva_Dude wrote:
    > Is this by chance software from MCCC ? I am having the
    same issue but I am Running VISTA.
    > It works fine on XP MEDIA Edition.
    >
    > I have tried eveything......
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - Authorware
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    samples, tips, products, faqs, and links!
    *Search the A'ware newsgroup archives*
    http://groups.google.com/group/macromedia.authorware

  • How to load data using two maps for the same source file in Import Manager

    Hi,
    I am trying to load the source data to MDM using two map files, since one map is too big (creating memory error).
    However the first map data able to see after loading (SAP data) but when loading second map(nonSAP data) using the remote key to match the previously loaded SAP key ,even if MDM is processing the data it is not reflecting in data manager.
    Is there any reason for this.
    Appreciate your suggestion and tips on this.
    regrds,
    Reo

    Hi Reo,
    As ur requirement seems,In the second pass perform recording matching by select default import action as "<b>update null fields only"</b> for those data records which are matching and "<b>create</b> " for those data records which are not matching with previous data records from SAP system.
    If you define "update null fields only", then only the key of the new record from NON SAP will get appended to the existing record. And if you select "create" then it will create new records and will apply NON SAP key on it.
    Please check the remote key values using data manager.Key is applied in the records or not.
    Remember that import maps are client specific. Remote key comprises of both key and client system.So be sure that you are connecting to two different client systems.
    I have tried this and this is working fine on my system.
    Thanks,
    Shiv Prashant Dixit
    Thanks,

  • Calling report using Mapping File with user parameters

    Please provide an example of Key mapping file that provides user parameters to an Oracle Reports report, where paramform=no.
    I call an Oracle Reports report via APEX, and can't get the URL to work. If I don't use the mapping file, the call works. But I can't seem to get it to work using the mapping file to hide all the other params like userid etc.

    Please provide an example of Key mapping file that provides user parameters to an Oracle Reports report, where paramform=no.
    I call an Oracle Reports report via APEX, and can't get the URL to work. If I don't use the mapping file, the call works. But I can't seem to get it to work using the mapping file to hide all the other params like userid etc.

  • Memory mapped files Are they still used.

    To System  programmers.
    In some of my old code David used memory mapped files in handling huge sets of random points.  The code reads in the whole file and then sets flags similar to an async process.  The filemapping handles memory instead of using mallocs.  the
    data maybe stored on the heap or in hte global stack.  I went back to Viusal Studio 6 and tried to take out the code as the standard c++ handles a full file read as a char buffer as a void * structure.  I found some valloc data types and
    then found the newer filemapping routines in VS2013. Plus an explanation of global stack and heap.
    Are software developers using file mapping or are they using say vectors to form stl structures.
    Cheers
    John Keays
    John Keays

    Here is some typical code in the old C.  This is close to the code I used in Visual studio 6.  I need to put this in vs2013 under c++ or C++ 11/14.  I have guessed the file handle open and size code.
    main{
    int fsize, numRecords;
    Point *allPoints;
     fsize = readAllFile(name, &allPoints);
    numRecords = fsize/ sizeof(Point);
    for (i=0; i < numRecords:; I++)  printf("rec %d values x %.3f\n", i, allPoints[i].x);
    int
    readAllFile(char*name, void **addr){
    file *fh;
    int fsize;
    openf(fh, name);
    fsize = getfilesize(fh);
    *addr = malloc(sizeof(char)*fsize);
    fclose(fh);
    return fsize;
    This is the boilerplate for the file reads.  Even tried this with text files and parsing the text records.  Instead of the mallocs you suggest vector and the scheme of the code remains the same.
    For a lidar file the xyz records have grown from 10,000 in the 1990's to 1,000,000 points in the mid 2000's.  For this size file 24 M bytes are allocated in one hit.  The whole of the Gold Coast in terms of lidar points in 2003 was 110 million
    points.  It could be more.
    Where is the data stored in the Malloc, Vector or memory Mapped file.  What is good and bad practice.
    Cheers
    john Keays
    John Keays

  • How can I generate a map file with LabVIEW?

    We wish to use a product which inserts code into our executable to prevent tampering with it by crackers.  The program, however, takes the executable file, as well as the map file (which is commonly generated by c++ compilers) and uses the map file to determine where in the exe the critical routines that need protection are at.  I can not, however, determine how to create such a map file for a LabVIEW generated executable.  Is there a special build option I need to invoke?

    Yes, I'm familar with NI's licensing technology, having talked with someone (you, Dennis, I believe) about it before.  The problem we have is our software is sold to factories in China where there are no internet connections.  We have a physical key 'dongle' which must be present in order for the executable to be willing to run.  However, it appears that people are taking the executable  which LabVIEW creates and they are editing it, probably by using a a debugger and tracing to the the code which checks for the dongles presence and bypassing it.  To my knoweledge, NI's products don't do anything to prevent this, right?
    We found a company which sells a product that encryptes, checksums, etc... an executable file, but it needs to know the layout of functions in the exe in order to determine which areas to focus the obfuscation on.  They were sort of matter of fact when they said it needs the exe and the map file, as if they expected any language which produced an exe could produce a map file.

  • Creating external mapping file for C# application

    Hi,
    I'm using Robohelp 7 and producing HTMLHelp files. So far, the programmers have been making internal links in the program to call my help, but I'd like to take this over using an external mapping file.
    Is it possible to use regular map files, using the built-in Map ID functionality, for C# .NET applications? If so, is there something special I have to do? Or do I just create a regular map file?
    Thanks!

    I mean that, in the past, they have hard-coded the link to each help page within the application. But, I'd like to take that over by maintaining a Map file where I specify the link between the topic and the Map ID.
    However, I'm not sure that the map file works for C# .Net applications, and the engineers aren't sure either. I told them I'd go investigate.
    Is there a way to create a Map file, or something that works like a map file, for a C# .Net application? Or do they have to go on hard-coding the links to each topic?

  • Is it possible to reuse the map file that was produced to map FrameMaker styles to RoboHelp when creating a PDF in RoboHelp?

    I'm using RoboHelp 11 to produce WebHelp. The documentation was previously written in FrameMaker and posted in PDF format, however it has undergone many releases since those days. I'm now being asked to create the help in PDF and WebHelp. Not really an issue except that the help format does not look particularly good in PDF (not designed for both).
    Ideally I'd like to just use the map file from the original Frame to RoboHelp conversion in reverse (with a little editing)--to convert the RoboHelp styles to the original FrameMaker formats when I create the PDF, however A) there doesn't seem to be an option for that, and B) the original FrameMaker to RoboHelp map file doesn't seem to have been preserved after that conversion.  Is it there and I'm just not seeing it?
    If necessary I can just create another CSS to redefine the styles, but if I don't have to, I rather not.

    I suspect that even if you could find the mapping information (pass as to where) it would simply tell you that Style A in Fm was mapped to Style B in Rh but not give you any information about how Style A was defined in Fm.
    I think your only options are to create a CSS as you suggest or, as I would, create redefine the Word Style Mapping Template to suit. By going to Word first, you can edit the output for better page breaks and other tweaking you might want.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How to add descriptor Customizer in the mapping file

    I am using TopLink 11g. Is it possbile to specify descriptor customizer in the mapping file? It seems it cannot be done in the TopLink workbench and the example shows it is able to be done using JPA annotation in the JAVA code. We like to use the mapping file because it is more flexible and without messing up with the JAVA code.
    Thanks a lot!
    Ming-Wen

    Are you using JPA or the native API?
    For JPA you can set a DescriptorCustomizer through the annotation, or through the persistence.xml property "eclipselink.descriptor.customizer.<entity>".
    For the Mapping Workbench and the native API you can set a amendment method in the Mapping Workbench to call a static method that customizes the descriptor.
    James : http://www.eclipselink.org

  • Error code 1450 - memory mapped file

    Hello,
    in my application I am using memory mapped files. I have three of it, the maximum size of the biggest one is 5MB. I store 64 Waveforms from a DAQ card in it. 
    The application runs fine, but sometimes comes an error, when I try to access the MMF. The error code is 1450, "insufficient system resources"
    Is a size of 5MB too big? Should I rather create one MMF for each waveform?

    Hi mitulatbati,
    which development tools are you actually using?
    Which platform, libraries and so on...?
    Can you post example code?
    Marco Brauner NIG 

  • How to .map files with OS X?

    The title is basically the question. I am about to start work on an RPG and the python module I am going to use requires .map files for many functions.
    I found 1 or 2 programs for Windows machines, but none for OS X.
    If you know any programs or suggestions please respond. If I have to program my game on MS it will never get done.

    Yes, you can install OS 9 onto the same volume.  However, when you initially formatted the drive you had an option to install Mac OS 9 drivers.  If you did not choose that option then you can only use OS 9 through the OS X Classic emulator.  You cannot boot directly into OS 9 unless the OS 9 drivers were installed when the drive was formatted.
    To install the Mac OS 9 drivers you would need to re-partition the drive which is a destructive process that will remove all the data currently installed.
    There is afirmware update needed for your particular model.  The update must be installed while booted directly into OS 9.1 or higher.  You may want to check with your sister to find out if the update has already been installed.

  • Memory-mapped file is possible?

    Hi everyone, I'm a new Labview user and I want to start a new project that uses Memory mapped file.
    I have a working C# code to read the $gtr2$ MMF, where i simple use 
    MemoryMappedFile.OpenExisting("$gtr2$")
    to get data from it.
    How it is  possible to read this kind of file in labview? I can't find anything useful on the web.
    I'm using a LabVIEW 2013 student edition.
    Thanks to everyone who wants to answer my question.
    Have a nice day.

    Hi,
    I too only have done the CLAD…
    You have to look for DotNet examples, you will find them here in the forum…
    And usually it helps to read the documentation for that MMF class to recreate your C++ code in LabVIEW!
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Memory mapped files

    Does anyone know if there is any way to use memory mapped files in Java? If so, what are the calls that emulate the C++ calls to CreateFileMapping() MapViewOfFile() and OpenFileMapping()?

    http://java.sun.com/j2se/1.4.1/docs/api/java/nio/MappedByteBuffer.html

  • How can I make a transparent background to export my file to Powerpoint? I'm using CS photoshop

    I want to use my logo as a transparent file in Powerpoint. Some say save as a PNG file
    but I I don't have a save option of PNG in my CS photoshop?
    Thank you!

    Charisse1 wrote: I don't have a save option of PNG in my CS photoshop? 
    Yes you do: in Save as... (and Save for web).

  • I am new to iTunes. How do I transfer files of Powerpoint slides into iTunes from PC and then into my iPad for use at a meeting

    I am new to iTunes and the iOS in general, having just migrated from Android devices. Please advise as to how I can easily transfer files of Powerpoint slides in documents on my PC into iTunes, so that I can use Adobe or other app to get them into my iPAD to be able to use them at a conference. Thank you.

    Welcome to the Apple Community.
    I have had an iTunes account for a while, but never really taken the time to learn to use it.  Now I have two computers, with two different versions of iTunes, with content on one that I want to transfer to the other.  Or I'd like to directly access the older libarary from the new computer. 
    There are a number of ways you might achieve this. The following article(s) may help you.
    Moving your iTunes library to a new computer
    Alternatively you might just use home sharing to share the libraries.
    Plus I have some videos and audio CD's that I have never imported, and would like to bring them into iTunes and store on an external hard drive to keep from loading up my computer.  I have no idea how to accomplish all of this, and cannot find clear instructions on the website.  Is there a screen where I can access written step-by-step instructions?  I don't have the time or patience to play around and do it by trail and error.  Thanks.
    If you place a CD into the CD drive, iTunes will ask you if you want to import it.
    If you want iTunes to store content on an external drive, you need to tell it to do so, which you do at iTunes preferences > Advanced.

Maybe you are looking for

  • How do I stop my itunes video playback from skipping

    We just bought a full season of a show and while trying to watch it the video playback is either really slow or it stops and skips while the audio keeps playing. Any suggestions how to fix?

  • Magic Quick Selection Tool NOT working right. Help please?

    We've used the magic quick selection tool lots and most of the time it works well. It's very slow.............. v  e r y slow and I'm wondering if there's a patch to download from Adobe or what to do to fix this.  We have pictures to edit and it's ma

  • Charts (bar and line) in a tablix

    Hi, I need to do this: As you can see the bar graphic is inside the tablix (this is an excel sample btw), I found this tutorial and it really helped me, the problem is the line chart (this one was good too), in my report looks like this How can I mak

  • Setting javacOptions using asadmin

    I'd like to use asadmin to increase the heap for the javac process run durig deployment, but I have trouble escaping special characters and keep getting various error messages. The first command I tried, without escape, was: set admin-server.java-con

  • Samsung CLP300 prints via old G4 Power(10.4) but not with MacBook (10.5.5)

    I bought an Airport Express so I wouldn't have to keep my old power-hogging G4 running as a print server. If I try and print wirelessly to my Samsung CLP300 printer with the G4, it works fine. But when I try and print via my MacBook (10.5.5), the pri