Product: | Platform: | Area: | Version: |
INM Impressario for Director |
Windows |
Email Function |
3 |
Summary
The issue is in projector mode only. When you call the e-mail function and open an e-mail application, when returning to Director, the cursor appears as an arrow over the Impressario sprite and the scrollbar is not responding. The Magnify tool works, but the magnifying glass cursor doesn't appear until your mouse is down.
Solution
The workaround solution is to minimize all the Director windows before calling the email() function and restore them when coming back to the Projector.
-- We need to minimize all director windows, then open the Mail Client, then restore director windows
if(isMX2004() AND the platform contains "win") then
repeat with x=1 to (the windowlist).count
(the windowlist[x]).minimize()
end repeat
end if
-- Call the Email() function
member("myPDF").Email(toAddress, fromAddress, subject, message)
-- Restore all Director windows
if(isMX2004() AND the platform contains "win") then
repeat with x=1 to (the windowlist).count
(the windowlist[x]).restore()
end repeat
end if
-- utils --
on isMX2004
return (offset("10.", the productVersion) = 1)
end isMX2004