Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 5 of 5
  1. #1
    Join Date
    Aug 2006
    Posts
    355

    PopupNitify Not Wok correctly

    Popup notify does not work correctly

    it well only works if in menu autoplay single is necessary to execute file.run... with others actions, when executing them in same menu, no longer shows popup they are going to correct this serious error?

    some suggestion?

    I leave an example of which it does not work correctly...

    download:

    http://www.box.net/public/7fzmogay1j

  2. #2
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    Solmos,

    Thanks for the example, that'll help me track down the issue. Hopefully I can get that fixed up this weekend.

  3. #3
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    Took a minute to look into this tonight. Actually, this isn't a problem with PopupNotify at all. The problem is that you are using a relative path to the BMP file. When you manipulate the folders in your code, you are changing your "working folder". The next time you call SetBackGroundImage, the relative path is no longer valid to the background image, so the popup does not show.

    You could either set the working folder back to your AMS app's before you call SetBackGroundImage
    Code:
    Folder.SetCurrent(_SourceFolder);
    PopupNotify.SetBackGroundImage("Autoplay\\Images\\popup.bmp", 16711935)
    or use the full path to the BMP in your call to PopupNotify
    Code:
    PopupNotify.SetBackGroundImage(_SourceFolder.."\\Autoplay\\Images\\popup.bmp", 16711935)
    Let me know if I can be of further assistance. The project with corrected code is attached.
    Attached Files
    Last edited by Worm; 02-24-2007 at 08:18 PM. Reason: Attaching corrrected project

  4. #4
    Join Date
    Aug 2006
    Posts
    355
    thanks works perfect

  5. #5
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    Glad to help

Similar Threads

  1. Then the resolution is changed, hotspots is not correctly working
    By Smart Guy in forum AutoPlay Media Studio 6.0
    Replies: 2
    Last Post: 09-05-2006, 08:27 AM
  2. ActiveX component still not correctly registered
    By Thierry_Zoller in forum Setup Factory 6.0
    Replies: 5
    Last Post: 06-07-2004, 12:49 PM
  3. memory requirement not correctly shown
    By vamsi in forum Setup Factory 5.0
    Replies: 1
    Last Post: 05-28-2001, 03:53 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts