Tag Archives: Documentation

Introducing Web Platform Docs… a unified approach

On the 8. October 2012 something historically happened… W3C, in collaboration with Adobe, Facebook, Google, HP, Microsoft, Mozilla, Nokia, Opera, and others, announced the alpha release of Web Platform Docs (docs.webplatform.org), a new community-driven site that aims to become a comprehensive and authoritative source for web developer documentation.

In the past, developers who use HTML5, CSS and other technologies of the Open Web Platform have had to consult multiple sites to understand how to use these technologies in a way that works across browsers, operating systems and devices. This was time-consuming and in many cases increased development costs.

With Web Platform Docs, the vision is that web professionals will save time and resources by consulting a single site for current, cross-browser and cross-device coding best practices, including:

  • How to use each feature of the Open Web Platform, with syntax and examples;
  • The interoperability of various technologies across platforms and devices;
  • The standardization status of each technology specification;
  • The stability and implementation status of features.

The project is implemented as a Wiki, which means that anyone can contribute content to Web Platform Docs. The organizations mentioned above – collectively known as the “stewards” – have launched this new site with initial documents contributed as raw material for the community to shape. The W3C will serve as the site’s convener. As the Open Web Platform evolves, the entire community, including the original stewards and new stewards, will help maintain and improve the content. All materials on the site will be freely available and licensed to foster sharing and reuse.

“People in the web community — including browser makers, authoring tool makers, and leading edge developers and designers — have tremendous experience and practical knowledge about the web,” said Tim Berners-Lee, W3C Director. “Web Platform Docs is an ambitious project where all of us who are passionate about the web can share knowledge and help one another.”

The W3C and the stewards envision webplatform.org as the home of future collaboration with developers and designers. Those interested in contributing to this effort as a steward or as an editor can visit docs.webplatform.org

Tagged ,

by popular demand: The SkinnablePopUpContainer

A frequent question is how to open PopUp windows in a target platform neutral way and in compliance with strict Flex4 coding practices…

Here is a quick sample of how to do that…

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
			   xmlns:s="library://ns.adobe.com/flex/spark"
			   xmlns:mx="library://ns.adobe.com/flex/mx">

	<fx:Declarations>
		<fx:Component className="MyAlert">
			<s:SkinnablePopUpContainer>
				<s:TitleWindow title="Launching World Domination..." close="close()">
					<s:VGroup horizontalAlign="center" width="100%">
						<s:Label text="World Domination failed. Sorry!"/>
						<s:Button label="OK, nevermind" click="close()"/>
					</s:VGroup>
				</s:TitleWindow>
			</s:SkinnablePopUpContainer>
		</fx:Component>
	</fx:Declarations>

	<s:Button label="Launch World Domination" click="(new MyAlert()).open(this, false)"/>

</s:Application>
Tagged ,

Introducing Adobe "Blueprint"

Blueprint is a plugin for Adobe Flash Builder that allows users to query for Adobe Flex and Adobe Flash code examples found on the Web directly inside of the development environment. The purpose of this preview is to assess the level of community interest in this type of customized search interface for code examples.

blueprint_screen_345x160

I have installed it and have already found it to be an interesting addition to the existing documentation… check it out…
http://labs.adobe.com/technologies/blueprint/

Tagged , ,

Adobe Flex : MXML 2009 Specification

The MXML 2009 (Adobe Flex 4, Gumbo) specification is made available in an “as is” version…

Check it out…
http://opensource.adobe.com/wiki/display/flexsdk/MXML+2009

Tagged ,

Adobe Flex : Documentation for Gumbo (Flex 4)

The Adobe Flex 4 (Gumbo) documentation is made available in an “as is” state…

Check it out…
http://livedocs.adobe.com/flex/gumbo/langref/

Tagged ,
Follow

Get every new post delivered to your Inbox.