I had a look through the Shell.explorer methods and I didn't seeanything (obvious) that would allow you to zoom the contents except for ExecWB so I'd try that first.
I don't have a specific example but you'll want to call the ExecWB method with the OLECMDID (which you've already figured out) and the parameter(s) that the ZOOM command needs. Which you can find at...
ssCore.Browser is a custom wrapper around the generic browser interface and doesn't expose that functionality. You can use ssCore.ActiveX to host a copy of the IE OCX yourself and call any method you...
Change the scale mode to "exact fit". However this may change the aspect ratio of your movie.
http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7e31.html
I saw your email before I saw this. Just because I am a moderator here on FK doesn't make this the right place to post product specific support questions.
The Select buttons not working is REALLY strange. All they do is attempt to open the standard Windows file dialogs (file open & browse for folder). There's very little code in there and it's not...
Yeah, there are ways to save and load data but if you have to do it and give others access to the data in a shared environment, your best bet is to send data to/from a server where everyone can...
The min/max buttons are not simply "chrome" that you can disable, they are there because when the developer who wrote the projector code created the window, he/she added styles to the window creation...
#1. You can't stay in fullscreen mode in a projector if you launch an application. It's not a bug, it's a security feature. It's so the user can see what you're doing and not trying to hide...
Search the archives of this forum. I created a utility you can use to detect the display resolution at startup and with that you can launch a different EXE for each resolution - including a...
Create an index in an XML file that contains information about all the documents you want to search. Load the XML at startup and search the XML instead of all the files in your directory. When you...
Depending on the version of Flash you're using you can set the stage scale mode or use fscommand("allowscale", "false") to prevent Flash from scaling your content no matter how you resize the window.
No matter what version of Flash you target in the Publish Settings you're still using the Flash CS5.5 EXE file. You need to either (a) find a copy of CS3 and republish or (b) find out why it's...
If your server doesn't define a MIME type for FLV then it can either (a) generate a 404 or (b) just not serve up files of that type. If you can't access the FLV file directly by entering its URL in a...
Not removing them may seem harmless but if you've ever wondered why your app is "leaking" memory you can stop blaming Flash... The listener ceates a reference to the object it's added to. If you want...
There's no replacing one SWF with another in AS3. After the new SWF has been loaded you have to add it to the display list using addChild and remove the calling SWF with removeChild. Make sure that...