Home
Developers

Developers

  • Documentation
    • Developer Guide
    • API Reference
    • Style Guide
    • How-To
    • Troubleshooting
  • Submit a Flake
  • Support

Pageflakes API Reference

  • Flake System Object
  • Flake User Object
  • Pageflakes Functions
  • Array Extensions
  • String Extensions
  • ContentProxy
  • App
    • Inline Browser
    • Popup Windows
    • Compact Framework
  • RSS
  • Tooltip Manager
  • Public, Shared, and Private Pages
  • Server-Side Scripting
Home » Documentation » API Reference » App

Compact Framework

When a flake is exported and placed on an external web site (i.e. not on pageflakes.com), it runs on a different, less functional version of the Pageflakes framework, also known as the Compact Framework. For example, you can’t use App.showHtmlViewer or create popup windows.

The following methods will not work in the Compact Framework:

FSO.resize()
FSO.close()
App.showHTMLViewer()
App.createPopup()
App.createPopupPage()

In addition, blockUI() and unblockUI() have a limited effect within the IFRAME that the flake is being displayed in.
Because of this, when a flake is running inside an IFRAME on a different website, those features should be turned off. The Compact Framework can be detected as follows:

if (App.IsCompactFramework)
{
//do necessary things for compact framework display
}

‹ Popup WindowsupRSS ›
»
  • Printer-friendly version