Advertisement
Advertisement
| 02.04.2008 at 02:33PM PST, ID: 23136563 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: |
<?xml version="1.0" encoding="utf-8"?>
<Application xmlns="http://www.adobe.com/2006/mxml" xmlns:l="*" layout="absolute"
xmlns:controls="qs.controls.*"
creationComplete="initTimer();" xmlns:containers="qs.containers.*"
viewSourceURL="/source/FlexBook.zip"
>
<!--
Copyright (c) 2006 Adobe Systems Incorporated
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
-->
<Script>
<![CDATA[
import mx.containers.Form;
import mx.core.UIComponent;
import mx.controls.Alert;
public function focusOn(target:*):void
{
if(landscape.selection.length == 1 && landscape.selection[0] == target)
{
landscape.selection = [];
Alert.show("Zoomout")
}
else
{
landscape.selection = [target];
Alert.show("Zoomin")
}
}
[Bindable] public var dataSet:Array;
]]>
</Script>
<containers:Landscape width="70%" top="40" bottom="1" paddingLeft="1" paddingTop="1" paddingBottom="1" paddingRight="1" id="landscape" zoomLimit="none" clipContent="false" cachePolicy="on">
<Canvas width="100%" height="100%" >
<controls:FlexBook id="book" y="47" left="40" right="40" top="40" height="80%" animateCurrentPageIndex="true" showCornerTease="true" edgeAndCornerSize="80" itemSize="halfPage">
<!-- Book's cover -->
<controls:cover><controls:SuperImage maintainAspectRatio="true" width="100%" height="100%" source="images/page001.jpg" click="focusOn(event.currentTarget)" /></controls:cover>
<controls:itemRenderer>
<Component>
<VBox>
<controls:Zoomer>
<controls:SuperImage maintainAspectRatio="true" width="100%" height="100%" data="{data.slice(0,data.indexOf(','))}" click="outerDocument.focusOn(event.currentTarget)" />
</controls:Zoomer>
</VBox>
</Component>
</controls:itemRenderer>
<!-- Images of the other pages of the book -->
<String>images/page002.jpg</String>
<String>images/page003.jpg</String>
<String>images/page004.jpg</String>
</controls:FlexBook>
</Canvas>
</containers:Landscape>
</Application>
|