Pacchetto | mx.graphics.shaderClasses |
Classe | public class SoftLightShader |
Ereditarietà | SoftLightShader Shader Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
The 'softlight' blend mode can be set on Flex groups and graphic elements. The visual appearance in tools like Adobe Illustrator and Adobe Photoshop will be mimicked through this blend shader.
Proprietà pubbliche
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
Constructor. | SoftLightShader | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Descrizione della funzione di costruzione
SoftLightShader | () | Funzione di costruzione |
public function SoftLightShader()
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Constructor.
SoftLightShaderExample.mxml
<?xml version="1.0" encoding="utf-8"?> <!-- SoftLightShaderExample.mxml --> <s:Application name="SoftLightShader" xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx"> <s:Panel title="SoftLightShader Example" width="75%" height="75%" horizontalCenter="0" verticalCenter="0"> <s:Group blendMode="normal" horizontalCenter="0"> <s:Rect width="200" height="220"> <s:fill> <s:SolidColor color="0x33CC99" /> </s:fill> </s:Rect> </s:Group> <s:Group id="group2" horizontalCenter="0"> <s:BitmapImage source="@Embed('/assets/ks5792.jpg')" x="20" y="10"/> </s:Group> <s:Button label="Apply SoftLight" click="group2.blendMode='softlight'" x="15" y="265" /> </s:Panel> </s:Application>
Tue Jun 12 2018, 02:44 PM Z