Is Buddy API baSetDisplay working in Director 11.5 under Windows 7?

Hello,
I'm trying to update some of my old games.
The "baSetDisplay" of Buddy API is not working under Windows 7 in Director 11.5
Did someone had made it working?
Any solution to change resolution to have a fullscreen game?
Thanks
Sebastien

Were you looking for someone to test other platforms such as Vista?... or are you looking for verification... or a solution?
I'm guessing a solution is not going to be available, but I would recommend constraining the video from going off the monitor if you haven't already added that 'feature' for win7 (you can test the OS easily enough using the platform property).
Anyways, if you can clarify what assistance you are looking for then that'd help.

Similar Messages

  • MS6191 USB Not working under Windows XP Home.

    My usb ports on my ms6191 Mother Board stop working after about 10 minutes under Windows XP home edition. They work fine under 98SE and ME, any sugggestions any1?  

    Quote
    Originally posted by Itchy1976
    My usb ports on my ms6191 Mother Board stop working after about 10 minutes under Windows XP home edition. They work fine under 98SE and ME, any sugggestions any1?  
    Does you pc made by Tiny computers in uk if it is can you plase send me a copy of your bios as mine is damaged and I can't seem to find anywhere on the web
    Thank you
    Kuru

  • Is Buddy Api 4.07 Compatible with Director 12

    I'm trialling Director 12 Win
    Using the demo version and publishing a Mac projector it issues the error 'Can't find the Xtra file "Buddy API Xtra.x32" even though the xtra is in the Xtras folder.
    Anyone know if this is a Demo limitation or an incompatibility between Buddy and D12
    Thanks

    OK .cpio wasn't in the "Adobe Director 12\Configuration\Cross Platform Resources" directory so I put it in.  Launched Director and open the file to publish but got the same error.
    So is this because its a trial version??
    I don't know whether D12 is available as a cloud component.  I wouldn't mind forking out £30/40 to find out if it is being in demo mode that is the issue.  However I don't fancy paying £300 only to be presented with the same error.

  • How do I open to a specific page or destination in a pdf file using Buddy API Xtra?

    Hello,
    I'm working with a CD ROM catalog that utilizes the Buddy API Xtra to open PDF files when a link is clicked. The client would like to be able to open to a specific page within a pdf file.
    I can open a pdf file using the Buddy API baOpenfile() function but I'm having trouble opening to a specific page when I add #page=4:
    baOpenfile("@\pdfs\Powder Cores\Magnetics_Powder_Core_Catalog_2011.pdf#page=4","normal")
    I've also tried working with the code below which seems to me like it should work... I didn't realize that the "open..." part of it was a function in Director.
    on mouseUp me
      pageNum = 4
      theApp = baShortFileName(baFindApp("pdf"))
      theDoc = baShortFileName("@\pdfs\Powder Cores\Magnetics_Powder_Core_Catalog_2011.pdf")
      theArgs = "/s /A page=" & string(pageNum)   & "&pagemode=bookmarks"
      -- (translates to "/A page=4" in this example)
      open theApp && theArgs && theDoc
    end
    Thoughts?
    Thank you in advance!

    Thank you Dee! This works perfect!
    It would be cool to know how to use bashell() for this.
    The help files give the following examples:
    Result = baShell( Operation, Filename, Args, WorkDir, State )
    ok = baShell( "open", "c:\windows\notepad.exe", "myfile.txt" , "", "normal" )
    ok = baShell( "edit", "myfile.htm" , "", "", "normal" )
    So I tried:
    on mouseUp me
      -- Close the program group
      tWindowList = baWindowList( "" , "pdf" , false )
      if tWindowList <> [] and count(tWindowList) > 0 then  baCloseWindow(tWindowList[1])
      pageNum = 4
      theApp = baFindApp("pdf")
      theDoc = _movie.path & "pdfs\Powder Cores\Magentics Powder Core Catalog.pdf"
      theArgs = "/A "&QUOTE&"page="&string(pageNum)&"=OpenActions"&QUOTE
      baShell( "open", theApp, theDoc , theArgs, "normal" )
    end
    It opens the pdf file without going to a specific page. Any thoughts as to why it wouldn't accept theArgs?
    Thanks again!

  • Buddy API HELP

    I have just downloaded Buddy API for Director 11 (windows)
    and it is not working for me. I have downloaded the file and place
    'Buddy API Help.chm', 'Buddy API Xtra.x32' and 'Read me.txt into
    'C:\Program Files\Adobe\Adobe Director 11\Configuration\Xtras'. I
    have also added #namePPC:"Buddy API Xtra", #nameW32:"Buddy API
    Xtra.x32" to the bottom of the xtrainfo.txt file.
    I made a new project and named it 'test.dir' and saved this
    in a filder called 'test' on the desktop. I placed one button on a
    frame and added the code:
    'on mouseUp me
    baOpenFile( the moviePath & "test.txt" , "normal" )
    end
    I created a text file and named it 'test.txt' and saved this
    into the test folder on the desktop.
    I then saved a projector of the project into the same folder.
    When I click on the button, nothing happens???? WHAT AM I
    DOING WRONG?????

    In the Modify, Movies, Xtras list, it will likely be called
    'Buddy API
    Xtra'.
    When you say that you push the button and "nothing happens".
    Do you
    mean that literally? Or do you get an error message of some
    sort? If
    you have not added BuddyAPI into the projector, you should
    get an error
    stating that baOpenFile is not available (or perhaps a less
    useful
    "script error").
    If you are not even getting that, then I assume you are using
    a
    #flashComponent button and you need to go into the Property
    Inspector's
    Flash Component tab and change the 'eventPassMode' to
    #passAlways in
    order to make the button work.

  • Overwritre files with Buddy Api

    Hi!
    I am trying to use the Buddy API to move files. I am using
    the MoveFileOn Reboot function which works fine normally. However I
    really need it to overwrite a file that is in the target folder
    with one with the same name. This does not happen, I guess the xtra
    won't overwrite files with the same name. Has anyone come across
    this and found away round it? Got a bit of a nightmare if not.
    Cheers in anticipation,
    Simon

    Result = baCopyFile( SourceFile , DestFile , Overwrite )
    "Always" always copies the file
    "IfNewer" copies the file if SourceFile is newer than
    DestFile
    "IfNotExist" copies only if DestFile does not already exist
    hth
    scott
    StuckInYork wrote:
    > Hi!
    >
    > I am trying to use the Buddy API to move files. I am
    using the MoveFileOn
    > Reboot function which works fine normally. However I
    really need it to
    > overwrite a file that is in the target folder with one
    with the same name. This
    > does not happen, I guess the xtra won't overwrite files
    with the same name. Has
    > anyone come across this and found away round it? Got a
    bit of a nightmare if
    > not.
    >
    > Cheers in anticipation,
    >
    > Simon
    >

  • Getting Dynamic Context Sensitive Help API to work with Visual Studio 2012 and 64 bit?

    We have RH 9.
    Our developers are working on implementing RH's dynamic CSH API inside of our software product:
    http://help.adobe.com/en_US/robohelp/robohtml/WSa7dd8288c271d662-26f4398e12b0c229082-8000. html
    The instructions our developer found say:
    Call your Help projects with the function RH_ShowHelp. The source code for this function is contained in the support files which you import into your development project. Languages supported are Visual Basic, C/C++, JavaScript, and Java. The files are in C:\Program Files\Adobe\Adobe RoboHelp [version]\CSH API. The files are:
        CSH API\RoboHelp_CSH.cpp (C/C++, dependent on the .h)
        CSH API\RoboHelp_CSH.h (C/C++, dependent on the .cpp)
    I zipped up the CSH API from my RH 9 version and sent it to the developer. We're using Visual Studio 2012.
    But now the dev is asking, "Is there a newer version? This one doesn't compile in win32 without me making some tweaks, and doesn't work at all in x64..." and "Is RoboHelp10 an option? 9 doesn't seem VS2012 compatible or x64 compatible."
    Does anyone know if there are there is a later version of the API available that works for 64-bit / VS 2012?

    Hi,
    The RoboHelp 10 API should work for WebHelp created with RoboHelp 9. Since the RH10 API will now support Multiscreen HTML5 (introduced with RoboHelp 10), I imagine it will work with VS 2012. But I’ve not tried that. You can try the RH10 API, but Adobe won’t support it
    Alternatively: A colleague of mine created a custom C# API some time ago. That might work for you: http://www.wvanweelden.eu/blog/2012/08/03/custom-webhelp-apis
    Greet,
    Willam

  • Buddy API sendKeys

    I am using webxtra(5.1) with BuddyAPI (using Win7, and Dir8.5 and ba version 4.07). After opening a website that has a text field, I want Dir to auto-fill this field in order to go to the next screen.  Here what I am doing
    baPlaceCursor( 94 , 453 ) -- place the cursor over the text field (it works)
    baMouseClick( "left" ) -- simulate a click (it works, the text cursor starts blinking)
    set OK = baSendKeys( "hello" ) -- (nothing happens)
    This works if I do it for a field within Director itself but not on the webXtra or any other window (MSWord or Explorer etc).  Is the correct use of this command? I also have Dir11.5 but non of the ba commands work!
    Hope you can help,
    Al

    Sean
    bActivateWindow() return 0 which means it isn't successful after using your code.  However, I tried the same code to type into another application (Explorer) and it works.  So it seems the problem is that even though I am clicking on the webXtra sprite, baSendKeys is not recognizing that as a window, instead it is sending these keys to the Director or the Stage window which explains why it is not working.  So the trick is to find the window handle for the xtra which logically should be obtained as you suggested, so I am puzzled.
    Many thanks for your help and any other suggestion you may come up with.  I will keep trying and keep you posted.
    Al

  • Need help in getting common DOM API to work

    Grettings, all -
    I'm up against the wall. I have spend a lot of time trying to get Common DOM API to work to no avial. So far I tried it with Netscape 6.2.3, Mozilla 1.0 and MSIE 6. My problem is that while I get non-null Document, all calls on it return null. Here is the code snippet I have:
    public class Foo extends Applet {
    Applet m_appletThis;
    StringBuffer m_sbuf;
    public void init() {
    m_appletThis = this;
    m_sbuf = new StringBuffer();
    addItem("initializing... ");
    try {
    JSObject jsWin = JSObject.getWindow(this);
    JSObject jsDoc = (JSObject)jsWin.getMember("document");
    String sName = (String)jsDoc.getMember("name");
    Object oLocation = (JSObject)jsDoc.getMember("location");
    addItem("location=" + oLocation);
    String sTitle = (String)jsDoc.getMember("title");
    addItem("title=" + sTitle);
    addItem("initialized! ");
    catch (JSException e) {
    e.printStackTrace();
    public void start() {
    addItem("starting... ");
    DOMService ds = null;
    try {
    ds = DOMService.getService(this);
    String sTitle = (String)ds.invokeAndWait(new DOMAction() {
    public Object run(DOMAccessor da) {
    Document doc = da.getDocument(m_appletThis);
    return doc.getNodeValue();
    addItem(sTitle);
    // let's try again
    Document doc = (Document)ds.invokeAndWait(new DOMAction() {
    public Object run(DOMAccessor da) {
    Document doc;
    NamedNodeMap nnm;
    Node node;
    doc = (Document)da.getDocument(m_appletThis);
    nnm = doc.getAttributes();
    NodeList nl = doc.getChildNodes();
    if (null == nl)
    addItem("no children!");
    else
    for (int i = 0; i < nl.getLength(); i++) {
    node = nl.item(i);
    addItem((null == node) ?
    ("no node" + i) : node.getNodeName());
    if (null == nnm)
    addItem("no attribs!");
    else {
    node = nnm.getNamedItem("location");
    if (null == node)
    addItem("no node!");
    else
    addItem(node.getNodeValue());
    return doc;
    catch (DOMUnsupportedException e1) {
    e1.printStackTrace();
    catch (DOMAccessException e2) {
    e2.printStackTrace();
    addItem("started! ");
    public void stop() {
    addItem("stopping... ");
    public void destroy() {
    addItem("preparing for unloading...");
    void addItem(String newWord) {
    System.out.println(newWord);
    m_sbuf.append(newWord + "\r\n");
    repaint();
    public void paint(Graphics g) {
    Dimension dim = getSize();
    //Draw a Rectangle around the applet's display area.
    g.drawRect(0, 0, dim.width - 1, dim.height - 1);
    //Draw the current string inside the rectangle.
    g.drawString(m_sbuf.toString(), 5, 15);
    This produces the following output:
    initializing...
    location=file:///foo.bar.html
    title=
    initialized!
    starting...
    null
    no children!
    no attribs!
    started!
    As starting/started lines show all of my attempts to get access to browsers DOM fail.
    I will really appreciate any advice you can provide. Thanks in advance.
    - Andrew

    hi,
    i desperately tried similar things and, after studying some forum entries, it seems to me that common dom DOES NOT WORK...
    sorry for us, but bugparade promises to fix that in 1.4.2 (somewhen in 2003 :-( )
    if you need dom-access try jsobject or the ibm directDOM-technology, that seems to work much better..
    greets,
    dirk

  • Director 11.5 and Windows 7

    Has anyone tried Director 11.5 on Windows 7 (release candidate)? Is it compatible? Windows 7 will be out in October, so it would be nice to have a compatible version of Director available at that time.

    I'm afraid that if it doesn't work right off, then it will not likely work. Of course, Win7 is not out yet officially, so there may be changes coming, but Adobe has proven their lack of concern about MX 2004 working on modern OSes with the latest Mac release (Snow Leopard).  MX 04 does not work on Snow Leopard and Adobe is not doing anything about it.  Therefore, I would expect the same level of commitment if it does not work on Win7... i.e. no commitment whatsoever.
    I have not used Win7 at all, but I understand that it comes with a XP compatibility mode (a XP VM built in).  See if you can make it work in there.  That would be the only way I can think of to get it going.  Post back if you do figure out a way to work it, since I'm sure many people will be wanting to continue using MX 04.  I still can't bring myself to use Director 11.x.  If it wont work on Win7, then I will just keep using XP.

  • H264 Video in Director 11.5 with Windows 7

    I have a director movie that loops a quicktime mov file (H264 encoding). The arrow keys move the movie around on the stage. Anytime the movie reaches the edge of the monitor the program crashes.
    The director file is in this zip file:
    http://www.jsteinkamp.com/test-off-screen.zip  
    I have tried this on three different brands of computers, running Windows 7 and they all crash. The same director projector works fine under Windows XP.
    Director version: 11.5 w/ hotfix 1
    QuickTime Player version: 7.6.6
    Windows 7 Professional is fully Updated

    Were you looking for someone to test other platforms such as Vista?... or are you looking for verification... or a solution?
    I'm guessing a solution is not going to be available, but I would recommend constraining the video from going off the monitor if you haven't already added that 'feature' for win7 (you can test the OS easily enough using the platform property).
    Anyways, if you can clarify what assistance you are looking for then that'd help.

  • Will Photoshop 7.0 work under Windows 7?

    Will Photoshop 7.0 work under Windows 7?

    To get Photoshop 7.0 (or 7.0.1 in my case) to work under Windows 7 64-bit, I ran the CD's Autorun under Windows XP service pack 2 compatibility. I also set the same compatibility prefs in Win 7 for the setup.exe file in the Photoshop directory of the CD-ROM.
    You'll possibly encounter an error about the scratch disk being full - this is because PS 7 fails to understand big hard drives (the huge free space number looks like an empty disk, it's kinda like a Y2K problem, since PS7 programmers or the API writers never imagined so much free space, I guess). In this case, two things are important:
    You need a partition that's less than 1TB (not sure about the size, it's in another thread) for the scratch disk. I used my system's recovery partition (only 2GB free, however). Other advice I found was to create a scratch partition using Windows 7 partitioning. Maybe a USB key would work? Surely not very fast...
    PS 7 will fail on startup with the "scratch disk full" error and exit. To get PS 7 to allow you to specify it, hold down CTRL and ALT when the program is launching. You'll be given a chance to indicate the partitions.

  • Photoshop CC2014 running under window 8.1.  How do I access mini bridge.  It does not show under FILE or WINDOW-EXTENSIONS.  Works ok with CS6

    Photoshop CC2014 running under window 8.1.  How do I access mini bridge.  It does not show under FILE or WINDOW-EXTENSIONS.  Works ok with CS6

    Photoshop: Spring Cleaning | PHOTOSHOP.COM BLOG

  • HT3492 mini displayport to vga adapter not working under windows 7

    i've read the article above. How can this firmware affect operation under Windows 7 OS? I have a dual boot system and tested several mini dp-vga adapter, all of them seem to either stop working after a while or doesnt work at all. i have a macbook pro 13"(early 2011) and a macmini i5 4gb

    I'm having the same problem. When I try to connect to the switch in our conference room (connecting both a flat panel display and/or a projector, both with much higher native resolutions), all I get is 640x480. This is a huge problem to using bootcamp, and I really need to get this to work. I was able to get a higher resolution 1280x800 on a separate, portable display, so I'm wondering if people have the problem with standalone projectors or only with projectors connected to some sort of switch, in my case an Extron MPX423A. I have also tried this in both Windows Vista (32-bit) and Windows 7 RC1 (32-bit), with the bootcamp drivers and the latest NVidia drivers, and the behavior is the same all around.

  • Can't work with Macbook mini-dvi adapter to s-video out under Windows..??

    hi..
    My macbook can work well with mini-dvi adapter to tv out under mac os,but it can't work under windows os..
    If anyone's using their Macbook and has any comments please let me know..
    Thanks.
    Richard

    Yes, if you can get an s-video cable and plug that into the SCART adapter, that would be better than plugging in composite video.
    Clearly, having an SCART connection is not going to "improve" the video going in, you're going to be limited by the lowest quality connection. An s-video connection will provide a higher (but probably not a lot) quality signal than composite video.
    -Doug

Maybe you are looking for

  • Error message in ical

    When I try to utilize iCalendar I get this error message: Authentication of account "marilyn's calendar" failed. Please check your login and password information. Any ideas what to do about this? Thanks, Marilyn

  • I think I've got a memory leak and could use some advice

    We've got ourselves a sick server/application and I'd like to gather a little community advice if I may. I believe the evidence supports a memory leak in my application somewhere and would love to hear a second opinion and/or suggestions. The issue h

  • I don´t know why i loose some contacts if i don´t erase them

    i don´t know why i loose some contacts if i don´t erase them

  • Addition of new TAB at Material Master screen

    Hi Experts, I want to add one new tab in between "Descriptions" and "Unit of Measure" tab (under "Additional Data" section in material master). That should hold few language dependent "Brand and Product" data. But, I have no idea is it possible or no

  • 4.2 DM DTS Error

    Hi,<br> <br> I have a 4.2.419 installation and have the following error when running an import from the DM.<br> Type Mismatch (log below)<br> <br><br> [Package Result = Error]<br> <br><br> Package:                     Import<br> Appset: