Spark.effects.Fade and effectEnd (Gumbo)

Hello all,
I'm sure this is going to be a really daft question and I'll slap my head when someone points me in the right direction, but I can't seem to figure it out... Basically I'm trying to use the spark.effects.Fade class on a sprite that I have - that works no problem at all (it's surprisingly verbose though in AS3). But what I can't seem to do is add a handler for when the effect ends (effectEnd).
The documentation ( http://help.adobe.com/en_US/Flex/4.0/langref/spark/effects/Fade.html - which is largely MXML orientated from what I can see) suggests that effectEnd is inherited from mx.effects.Effect - could this be where the issue is coming in. Do I need to cast the Fade object?
This is the code that I'm using at the moment:
var fadeAni:spark.effects.Fade = new spark.effects.Fade( );
fadeAni.target = _tip;
fadeAni.alphaFrom = 1;
fadeAni.alphaTo = 0;
fadeAni.duration = 500;
fadeAni.effectEnd =function ( e:Event ) {
    removeChild( _tip );
    _tip = null;
fadeAni.play();
And with that mxmlc says:
$ mxmlc app.mxml
Loading configuration file /usr/local/flex_sdk_4.0.0.10485/frameworks/flex-config.xml
/Users/allan/Desktop/Flex/flex_test/components/ToolTip.as(130): col: 13 Error: Access of possibly undefined property effectEnd through a reference with static type spark.effects:Fade.
fadeAni.effectEnd =function ( e:Event ){
Many thanks,
Allan

This is all correct, but here's a couple of tips for de-verbosifying effects:
- You don't need an "alphaFrom" if the sprite already has the alpha value you want - it will pick up the current value as the value it starts from.
- You don't need a 'duration' if you're animating for 500 ms - that's the default
- Fade works with the state values when used in a transition. So, for example, if an object exists in one state and is removed in the next state, then a transition with a Fade (no arguments declared) on the target will automatically fade it out. Examples on this here:
http://graphics-geek.blogspot.com/2009/08/video-fade-effect-in-flex-4.html
(yes, this is an mxml solution, or at least a solution that involves states, as opposed to the dynamic approach in the Allan's original example, but it seemed worth mentioning, because effects are tuned to be particularly simple when used in transitions).
Chet.

Similar Messages

  • Flash Symbol w/ filters + spark parents + Fade effect bug

    I've come across an interesting bug which I've narrowed down to a combination of:
    • Flash symbols containing 1 or more Filters (defined in the Flash IDE)...
    • Parented within certain Spark components (ex. symbol in Group that's in another Group)...
    • Modified by an effect like spark.effects.Fade
    What you see when you combine those elements above is a 1-frame, fully-opaque flicker after the Fade has completed (if fading out) or before it begins (if fading in). This flicker is noticeable and obviously not an intended part of the animation.
    Here's a small test project that reproduces what I'm talking about. If you change the VGroup component to a VBox the flicker stops happening (at least for me). The same is true if you remove the middle DataGroup component. (The bug may not stop altogether but it does occur less frequently in that case.)
    Application.mxml
    <?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"
                   xmlns:local="*">
         <fx:Script>
              <![CDATA[
                   import mx.collections.ArrayCollection;
              ]]>
         </fx:Script>
         <fx:Declarations>
              <s:Sequence id="sequence">
                   <s:Fade target="{ vbox }" alphaTo="0" />
                   <s:Fade target="{ canvas }" alphaTo="1" />
                   <s:Fade target="{ canvas }" alphaTo="0" />
                   <s:Fade target="{ vbox }" alphaTo="1" />
              </s:Sequence>
         </fx:Declarations>
         <!-- If you replace the VGroup with a VBox, this bug does not show itself. -->
         <s:VGroup id="vbox" horizontalAlign="center" horizontalCenter="0" verticalCenter="0">
         <!--<mx:VBox id="vbox" horizontalAlign="center" horizontalCenter="0" verticalCenter="0">-->
              <!-- Changing this DataGroup to a regular Group lowers the frequency of the bug, but it still occurs. -->
              <s:DataGroup id="dataGroup" dataProvider="{ new ArrayCollection( [ BasicSymbol, SymbolWithGlow, SymbolWithBevel ] ) }">
                   <s:layout>
                        <s:HorizontalLayout verticalAlign="middle" />
                   </s:layout>
                   <s:itemRenderer>
                        <fx:Component>
                             <local:DataGroupItemRenderer />
                        </fx:Component>
                   </s:itemRenderer>
              </s:DataGroup>
              <s:Button label="Play" click="sequence.play()" />
         <!--</mx:VBox>-->
         </s:VGroup>
         <mx:Canvas id="canvas" width="200" height="200" horizontalCenter="0" verticalCenter="0" backgroundColor="0xCC6600" mouseEnabled="false" alpha="0" />
    </s:Application>
    DataGroupItemRenderer MXML
    <?xml version="1.0" encoding="utf-8"?>
    <s:ItemRenderer autoDrawBackground="false" width="70" height="70"
                    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:Script>
              <![CDATA[
                   override public function set data( value:Object ):void {
                        super.data = value;
              ]]>
         </fx:Script>
         <mx:Image source="{ data }" />
    </s:ItemRenderer>
    In addition to the below MXML, I am also happy to provide the FLA that I've created the symbols in as well as a video demonstrating the glitch. (I will try to attach the video as a follow-up comment.)

    Suppose not.
    Defect created: https://bugs.adobe.com/jira/browse/SDK-30475

  • [svn:cairngorm3:] 18029: Moved Spark effect behavior into behavior package and legacy Flex 3 effect behavior into mx package .

    Revision: 18029
    Revision: 18029
    Author:   [email protected]
    Date:     2010-10-06 06:47:03 -0700 (Wed, 06 Oct 2010)
    Log Message:
    Moved Spark effect behavior into behavior package and legacy Flex 3 effect behavior into mx package. Renamed focus bug example https://bugs.adobe.com/jira/browse/CGM-41
    Ticket Links:
        http://bugs.adobe.com/jira/browse/CGM-41
    Modified Paths:
        cairngorm3/trunk/libraries/Popup/.flexLibProperties
        cairngorm3/trunk/libraries/PopupTest/.actionScriptProperties
        cairngorm3/trunk/libraries/PopupTest/src/PopUpBehaviorsSample.mxml
        cairngorm3/trunk/libraries/PopupTest/src/PopUpMXMLExample.mxml
        cairngorm3/trunk/libraries/PopupTest/src/PopUpParsleyExample.mxml
        cairngorm3/trunk/libraries/PopupTest/src/samples/ModulePopups.mxml
    Added Paths:
        cairngorm3/trunk/libraries/Popup/src/com/adobe/cairngorm/popup/behavior/ZoomAndFadeBehavi or.mxml
        cairngorm3/trunk/libraries/Popup/src/com/adobe/cairngorm/popup/behavior/mx/
        cairngorm3/trunk/libraries/Popup/src/com/adobe/cairngorm/popup/behavior/mx/ZoomAndFadeBeh avior.mxml
        cairngorm3/trunk/libraries/PopupTest/src/BugCGM41StartUpFocus.mxml
    Removed Paths:
        cairngorm3/trunk/libraries/Popup/src/com/adobe/cairngorm/popup/behavior/ZoomAndFadeBehavi or.mxml
        cairngorm3/trunk/libraries/Popup/src/com/adobe/cairngorm/popup/behavior/spark/
        cairngorm3/trunk/libraries/PopupTest/src/BugStartUpFocus.mxml

  • [svn:fx-trunk] 10075: Cleanups from the spark text changes and some bug fixes for VideoElement.

    Revision: 10075
    Author:   [email protected]
    Date:     2009-09-08 18:01:58 -0700 (Tue, 08 Sep 2009)
    Log Message:
    Cleanups from the spark text changes and some bug fixes for VideoElement.  Also some PARB changes for UIComponent.
    TitleBar: Changing the skin part type from Label to Textbase
    UIComponent: skipMeasure()->canSkipMeasurement() to be in line with GraphicElement.  This has been PARB approved.
    UIComponent: same with hasComplexLayoutMatrix...this replaces hasDeltaIdentityTransform.  This has been PARB approved.
    StyleProtoChain: cleanup around what interfaces to use
    TextBase: clean up code that?\226?\128?\153s no longer needed.
    VideoElement: Fixing 4 bugs:
    SDK-22824: sourceLastPlayed keeps track of what video file we?\226?\128?\153ve called play() with last.  This way if a user pauses the video and wants to start it up again at the same point, we can call play(null) on the underlying FLVPlayback videoPlayer.  However, anytime the souce changes, we want to null out sourceLastPlayed.  This was causing a bug when someone set the source to null and then reset it to it?\226?\128?\153s previous value.
    SDK-23034 (GUMBO_PRIORITY): This deals with some FLVPlayback quirks around sizing.  I had put in a fix so we weren?\226?\128?\153t setting width/height on the underlying videoPlayer too many times, but apparently we need to make sure it always gets called once.  Hopefully when switching to Strobe we can cleanup this logic...I put a FIXME in to do this.
    SDK-21947/ SDK-22533 - some video files don?\226?\128?\153t always send out a metadata event.  I?\226?\128?\153m not quite sure why this is, but in case this happens, we do a check in the ready handler to see whether we should call invalidateSize() to make sure it gets sized properly.
    QE notes:-
    Doc notes:-
    Bugs: SDK-22824, SDK-23034, SDK-21947, SDK-22533
    Reviewer: Glenn, Corey
    Tests run: checkintests, Button, GraphicTags, VideoElement, and VideoPlayer (some VideoPlayer were failing, but I think it should be fine)
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
        http://bugs.adobe.com/jira/browse/SDK-22824
        http://bugs.adobe.com/jira/browse/SDK-23034
        http://bugs.adobe.com/jira/browse/SDK-21947
        http://bugs.adobe.com/jira/browse/SDK-22533
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/windowClasses/TitleB ar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/spark/src/mx/core/UITLFTextField.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Group.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Label.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichEditableText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/GroupBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/Skin.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/TextBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AddActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/RemoveActionIns tance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as

  • Export Quicktime Movie only exports fades and composites (FCP6)

    I'm trying to add a couple of lower thirds and a fade in and out to a live capture of a lecture; but for some reason, it's only exporting the effects - the fades and lower thirds. Everything else is skipped in the final QT movie.
    I right-click the sequence and say 'Export > QuickTime Movie', leaving the settings as they are. The exported movie is 1.45GB - around the same size as the imported movie - but it's only 29 seconds long. Can anyone enlighten me as to what's going on? I tried clicking 'recompress all frames' but I have two problems with this: (1) it's going to recompress unnecessarily, and (2) it's looking like that will take about two hours.
    Any help would be appreciated.

    FCP6. Right there in the question title. Version 6.0.6, if that's important.
    It was actually recorded off WireCast, with one camera and desktop streaming. Sequence settings are 720p square pixels, H.264 video.
    Export from the File Menu has the same effect.

  • Spark.effects.Resize in flex 4.6

    Hi,
         I am using the spark.effects.Resize for a textInput, if I use it several times it change the hight and the width of my field. control. Is there a way to correct that problem?
    Regards,

    Hi,
    you could use mediaWidth or mediaHeight properties of the mediaPlayer to get those values.
    I think you have run into a stageVIdeo related issue - are you sure that stageVideo is not active?
    My recommendation is to raise an issue at http://bugs.adobe.com/jira/browse/FM , providing an example code that replicates your issue.
    Thank you in advance,
    S.

  • [svn:fx-trunk] 10131: Fixes to several effects bugs and one styles-related bug.

    Revision: 10131
    Author:   [email protected]
    Date:     2009-09-10 14:25:42 -0700 (Thu, 10 Sep 2009)
    Log Message:
    Fixes to several effects bugs and one styles-related bug.
    QE notes: Fixes to all filed auto-center feature bugs.
    Doc notes: None
    Bugs: sdk-22994, sdk-22992, sdk-22990, sdk-21850, sdk-22973
    Reviewer: Jason (+Glenn for RadioButton/CheckBox changes, 21850)
    Tests run: checkintests, Mustella (transform effects, Slider, DataGrid - all passed last week, prior to skin/test changes)
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/sdk-22994
        http://bugs.adobe.com/jira/browse/sdk-22992
        http://bugs.adobe.com/jira/browse/sdk-22990
        http://bugs.adobe.com/jira/browse/sdk-21850
        http://bugs.adobe.com/jira/browse/sdk-22973
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/CheckBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/RadioButton.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SoundEffectInst ance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/AnimateTransform.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/Move.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/Move3D.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/Rotate.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/Rotate3D.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/Scale.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/Scale3D.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/effects/supportClasses/AnimateTransfor mInstance.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as
        flex/sdk/trunk/tools/dependencychecker/frameworkSwcExceptionsList.txt

  • After Effects CS6 and CC crash when Composition panel is closed, moved, switched w/ Layer panel, etc

    Kind of hard to word the problem in a non-confusing way, but here goes. After Effects CS6 and CC will only work if the Composition panel is in its default spot in the Standard workspace, and that it's the only thing displayed there. No layer or footage panels can be opened  - it can only be Comp or nothing.
    In other words, AE is 100% certain to crash if:
    - The composition panel is closed or moved to another spot in the workspace.
    - A file from the project is double-clicked and opened as a layer/footage panel
    - Any attempt is made to switch the Standard workspace to another
    The crappiest thing about this is that I've searched Google using as many different phrases as I can and haven't found any discussion about this particular problem. It's as if I'm the only one on Earth who is having this issue.
    It should be noted that After Effects CS5 does not have this problem on my PC, but I need CS6 or better because that's what we're using at work now. I can't work from home (as I need to do occasionally) if AE won't work properly.
    System:
    Windows 7 PC, 12GB RAM, Quad-core AMD Phenom II X4 965 @ 3.7 Ghz, ATI Radeon HD 6700 series GPU (1GB)

    It's not like a regular crash that instantly closes the program and has a "sorry, AE crashed" popup. It basically just freezes until the process is forced to quit.

  • Error Code: 34 Mac OSX 10.8.4 for Photoshop CC, Bridge CC, After Effects CC, and Flash CC

    Hello,
    So I am installing all the CC versions of the software and all but Photoshop, Bridge, After Effects, and Flash installed without a hitch. On those 4 programs I get the same error code: 34. I am able to install the CS6 variants of them without any problem and run it. Here is the error code:
    Exit Code: 34
    Please see specific errors below for troubleshooting. For example,  ERROR:
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 0 error(s)
    FATAL: Payload 'Camera Profiles Installer_8.1_AdobeCameraRawProfile8.0All 7.0.0.108 {D5BBDFC0-C716-46B1-8908-85B0EA49FFA1}' information not found in Media_db.
    I have been unable to fix this on my own and with what I've found online. I'll list what I have done so far to try to fix this issue. I have tried to use the Adobe Creative Cloud Cleaner Tool but the issue is since PS, BR, AE, and FL won't install I can't clean them to try a fresh install. I tried installing the CS6 versions to see if it would dowload the 'Camera Profiles Installer_8.1".
    Any help on fixing this ASAP would be much appreciated!
    Thanks,
    NB

    Hey Guys I am experiencing the exact same iusse I spoke with adobe and they weren't able to solve the issue here's  log.
    I'm pasting the fatal errors from photoshop hope this helpful
    06/18/13 12:02:45:614 | [FATAL] |  | OOBE | DE |  |  |  | 19669 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 12:02:46:615 | [INFO] |  | OOBE | DE |  |  |  | 19669 |  - 1 fatal error(s), 0 error(s)
    06/18/13 12:02:46:615 | [INFO] |  | OOBE | DE |  |  |  | 19669 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 12:13:17:103 | [FATAL] |  | OOBE | DE |  |  |  | 26756 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 12:13:18:104 | [INFO] |  | OOBE | DE |  |  |  | 26756 |  - 1 fatal error(s), 0 error(s)
    06/18/13 12:13:18:104 | [INFO] |  | OOBE | DE |  |  |  | 26756 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 12:20:13:772 | [FATAL] |  | OOBE | DE |  |  |  | 31392 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 12:20:14:774 | [INFO] |  | OOBE | DE |  |  |  | 31392 |  - 1 fatal error(s), 0 error(s)
    06/18/13 12:20:14:774 | [INFO] |  | OOBE | DE |  |  |  | 31392 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:07:14:983 | [FATAL] |  | OOBE | DE |  |  |  | 16841 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:07:15:984 | [INFO] |  | OOBE | DE |  |  |  | 16841 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:07:15:984 | [INFO] |  | OOBE | DE |  |  |  | 16841 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:19:33:315 | [FATAL] |  | OOBE | DE |  |  |  | 24315 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:19:34:316 | [INFO] |  | OOBE | DE |  |  |  | 24315 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:19:34:316 | [INFO] |  | OOBE | DE |  |  |  | 24315 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:21:06:794 | [FATAL] |  | OOBE | DE |  |  |  | 25240 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:21:07:796 | [INFO] |  | OOBE | DE |  |  |  | 25240 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:21:07:796 | [INFO] |  | OOBE | DE |  |  |  | 25240 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:21:30:440 | [FATAL] |  | OOBE | DE |  |  |  | 25537 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:21:31:441 | [INFO] |  | OOBE | DE |  |  |  | 25537 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:21:31:441 | [INFO] |  | OOBE | DE |  |  |  | 25537 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:47:18:185 | [FATAL] |  | OOBE | DE |  |  |  | 9822 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:47:19:186 | [INFO] |  | OOBE | DE |  |  |  | 9822 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:47:19:186 | [INFO] |  | OOBE | DE |  |  |  | 9822 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:47:58:563 | [FATAL] |  | OOBE | DE |  |  |  | 10207 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:47:59:565 | [INFO] |  | OOBE | DE |  |  |  | 10207 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:47:59:565 | [INFO] |  | OOBE | DE |  |  |  | 10207 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:48:24:091 | [FATAL] |  | OOBE | DE |  |  |  | 10483 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:48:25:092 | [INFO] |  | OOBE | DE |  |  |  | 10483 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:48:25:092 | [INFO] |  | OOBE | DE |  |  |  | 10483 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:54:20:032 | [FATAL] |  | OOBE | DE |  |  |  | 14779 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 13:54:21:034 | [INFO] |  | OOBE | DE |  |  |  | 14779 |  - 1 fatal error(s), 0 error(s)
    06/18/13 13:54:21:034 | [INFO] |  | OOBE | DE |  |  |  | 14779 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 14:15:39:774 | [FATAL] |  | OOBE | DE |  |  |  | 28845 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 14:15:40:775 | [INFO] |  | OOBE | DE |  |  |  | 28845 |  - 1 fatal error(s), 0 error(s)
    06/18/13 14:15:40:775 | [INFO] |  | OOBE | DE |  |  |  | 28845 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 14:27:33:665 | [FATAL] |  | OOBE | DE |  |  |  | 37134 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 14:27:34:666 | [INFO] |  | OOBE | DE |  |  |  | 37134 |  - 1 fatal error(s), 0 error(s)
    06/18/13 14:27:34:666 | [INFO] |  | OOBE | DE |  |  |  | 37134 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 14:49:31:860 | [FATAL] |  | OOBE | DE |  |  |  | 48667 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 14:49:32:862 | [INFO] |  | OOBE | DE |  |  |  | 48667 |  - 1 fatal error(s), 0 error(s)
    06/18/13 14:49:32:862 | [INFO] |  | OOBE | DE |  |  |  | 48667 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 16:05:56:669 | [INFO] |  | OOBE | DE |  |  |  | 16619 |  - 0 fatal error(s), 2 error(s)
    06/18/13 16:09:05:111 | [INFO] |  | OOBE | DE |  |  |  | 19310 |  - 0 fatal error(s), 2 error(s)
    06/18/13 16:29:47:953 | [FATAL] |  | OOBE | DE |  |  |  | 11765 | Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    06/18/13 16:29:48:954 | [INFO] |  | OOBE | DE |  |  |  | 11765 |  - 1 fatal error(s), 0 error(s)
    06/18/13 16:29:48:955 | [INFO] |  | OOBE | DE |  |  |  | 11765 | FATAL: Payload 'Camera Profiles Installer 7.0.0.108 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db.
    Error Code: 34 Mac OSX 10.8.4 for Photoshop CC, Bridge CC, After Effects CC, and Flash CC

  • After turning on iMAC the sign in page comes up and accept my password. It then goes to a page with a background pictures but nothing else. If I leave it there it eventually fades and shows the clock.  How to I get it to open from there?

    After turning on iMAC the sign in page comes up and accept my password. It then goes to a page with a background pictures but nothing else. If I leave it there it eventually fades and shows the clock.  How to I get it to open from there?

    Hello,
    See if it'll Safe Boot from the HD, (holding Shift key down at bootup).

  • Date Effective SDO and named bind variable

    Hi.
    I have a problem with named bind variable in date effective ADF Business Component (:Bind_SysEffectiveDate).
    Service interface of my EmployeeHistorySDO has next methods:
    getEmployeeHistoryView1
    updateEmployeeHistoryView1
    findEmployeeHistoryView1
    createEmployeeHistoryView1
    deleteEmployeeHistoryView1
    If I invoke getEmployeeHistoryView1 method I'm getting next SQL statement:
    [332] EmployeeHistoryView1 ViewRowSetImpl.doSetWhereClause(-1, SysEffectiveDateBindVar, null)
    [333] EmployeeHistoryView1 ViewRowSetImpl.doSetWhereClause(-1, SysEffectiveDateBindVar, null)
    [334] Column count: 7
    [335] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.doSetWhereClause(-1, SysEffectiveDateBindVar, null)
    [336] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.setWhereClauseParams caused params changed
    [337] EmployeeHistoryView1 ViewRowSetImpl.doSetWhereClause(-1, SysEffectiveDateBindVar, null)
    [338] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.setWhereClauseParams caused params changed
    [339] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.setWhereClauseParams caused params changed
    [340] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.setWhereClauseParams caused params changed
    [341] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.doSetWhereClause(-1, SysEffectiveDateBindVar, null)
    [342] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.setNamedWhereClauseParam(SysEffectiveDateBindVar, null)
    [343] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.doSetWhereClause(-1, fbkKy__0, null)
    [344] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.setNamedWhereClauseParam(fbkKy__0, 3)
    [345] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.setNamedWhereClauseParam(SysEffectiveDateBindVar, 2010-10-01)
    [346] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.doSetWhereClause(-1, SysEffectiveDateBindVar, 2010-10-01)
    [347] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.doSetWhereClause(-1, fbkKy__0, 3)
    [348] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.execute caused params to be "un"changed
    [349] Column count: 7
    [350] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.doSetWhereClause(-1, SysEffectiveDateBindVar, 2010-10-01)
    [351] EmployeeHistoryView_0_findByKey_ ViewRowSetImpl.doSetWhereClause(-1, fbkKy__0, 3)
    [352] executeQueryForCollection ViewObject:EmployeeHistoryView_0_findByKey_, RowSet:EmployeeHistoryView_0_findByKey_
    [353] ViewObject: [com.test.sdo.dateeffective.employee.history.EmployeeHistoryView]EmplHistoryAppModule.EmployeeHistoryView_0_findByKey_ close prepared statements...
    [354] ViewObject: [com.test.sdo.dateeffective.employee.history.EmployeeHistoryView]EmplHistoryAppModule.EmployeeHistoryView_0_findByKey_ Created new QUERY statement
    [355] EmployeeHistoryView_0_findByKey_>#q computed SQLStmtBufLen: 403, actual=380, storing=410
    [356] SELECT EmployeeHistory.HISTORY_ID,         EmployeeHistory.POSITION,         EmployeeHistory.WAGE,         EmployeeHistory.EMPL_ID,         EmployeeHistory.START_DATE,         EmployeeHistory.END_DATE FROM EMPLOYEE_HISTORY EmployeeHistory WHERE (EmployeeHistory.HISTORY_ID = :fbkKy__0) AND (:SysEffectiveDateBindVar BETWEEN EmployeeHistory.START_DATE AND EmployeeHistory.END_DATE)
    [357] pStmt = conn.prepareStatement("SELECT EmployeeHistory.HISTORY_ID, EmployeeHistory.POSITION, EmployeeHistory.WAGE, EmployeeHistory.EMPL_ID, EmployeeHistory.START_DATE, EmployeeHistory.END_DATE FROM EMPLOYEE_HISTORY EmployeeHistory WHERE (EmployeeHistory.HISTORY_ID = :fbkKy__0) AND (:SysEffectiveDateBindVar BETWEEN EmployeeHistory.START_DATE AND EmployeeHistory.END_DATE)"); // JBO-JDBC-INTERACT
    [358] Bind params for ViewObject: [com.test.sdo.dateeffective.employee.history.EmployeeHistoryView]EmplHistoryAppModule.EmployeeHistoryView_0_findByKey_
    [359] Binding param "SysEffectiveDateBindVar": 2010-10-01
    [360] // ERROR: Unknown data type oracle.jbo.domain.Date // JBO-JDBC-INTERACT
    [361] pStmt.setObjectAtName(SysEffectiveDateBindVar, "2010-10-01"); // JBO-JDBC-INTERACT
    [362] Binding param "fbkKy__0": 3
    [363] // ERROR: Unknown data type oracle.jbo.domain.Number // JBO-JDBC-INTERACT
    [364] pStmt.setObjectAtName(fbkKy__0, "3"); // JBO-JDBC-INTERACT
    Environment successfully binds today date to :SysEffectiveDateBindVar.
    But if I try to invoke updateEmployeeHistoryView1 method environment binds already the variable that doesn't presents in SQL query, so I have an exception:
    [606] EmployeeHistoryView_1_findByKey_ ViewRowSetImpl.doSetWhereClause(-1, SysEffectiveDateBindVar, 2010-10-01)
    [607] EmployeeHistoryView_1_findByKey_ ViewRowSetImpl.doSetWhereClause(-1, Bind_SysEffectiveDate, 2010-10-01 00:00:00.0)
    [608] EmployeeHistoryView_1_findByKey_ ViewRowSetImpl.doSetWhereClause(-1, fbkKy__0, 3)
    [609] executeQueryForCollection ViewObject:EmployeeHistoryView_1_findByKey_, RowSet:EmployeeHistoryView_1_findByKey_
    [610] ViewObject: [com.test.sdo.dateeffective.employee.history.EmployeeHistoryView]EmplHistoryAppModule.EmployeeHistoryView_1_findByKey_ close prepared statements...
    [611] ViewObject: [com.test.sdo.dateeffective.employee.history.EmployeeHistoryView]EmplHistoryAppModule.EmployeeHistoryView_1_findByKey_ Created new QUERY statement
    [612] EmployeeHistoryView_1_findByKey_>#q computed SQLStmtBufLen: 403, actual=380, storing=410
    [613] SELECT EmployeeHistory.HISTORY_ID,         EmployeeHistory.POSITION,         EmployeeHistory.WAGE,         EmployeeHistory.EMPL_ID,         EmployeeHistory.START_DATE,         EmployeeHistory.END_DATE FROM EMPLOYEE_HISTORY EmployeeHistory WHERE (EmployeeHistory.HISTORY_ID = :fbkKy__0) AND (:SysEffectiveDateBindVar BETWEEN EmployeeHistory.START_DATE AND EmployeeHistory.END_DATE)
    [614] pStmt = conn.prepareStatement("SELECT EmployeeHistory.HISTORY_ID, EmployeeHistory.POSITION, EmployeeHistory.WAGE, EmployeeHistory.EMPL_ID, EmployeeHistory.START_DATE, EmployeeHistory.END_DATE FROM EMPLOYEE_HISTORY EmployeeHistory WHERE (EmployeeHistory.HISTORY_ID = :fbkKy__0) AND (:SysEffectiveDateBindVar BETWEEN EmployeeHistory.START_DATE AND EmployeeHistory.END_DATE)"); // JBO-JDBC-INTERACT
    [615] Bind params for ViewObject: [com.test.sdo.dateeffective.employee.history.EmployeeHistoryView]EmplHistoryAppModule.EmployeeHistoryView_1_findByKey_
    [616] Binding param "SysEffectiveDateBindVar": 2010-10-01
    [617] // ERROR: Unknown data type oracle.jbo.domain.Date // JBO-JDBC-INTERACT
    [618] pStmt.setObjectAtName(SysEffectiveDateBindVar, "2010-10-01");  // JBO-JDBC-INTERACT
    [619] Binding param "Bind_SysEffectiveDate": 2010-10-01 00:00:00.0
    [620] // ERROR: Unknown data type java.sql.Timestamp // JBO-JDBC-INTERACT
    [621] pStmt.setObjectAtName(Bind_SysEffectiveDate, "2010-10-01 00:00:00.0");  // JBO-JDBC-INTERACT
    [622] ViewObject: [com.test.sdo.dateeffective.employee.history.EmployeeHistoryView]EmplHistoryAppModule.EmployeeHistoryView_1_findByKey_ close single-use prepared statements
    [623] pStmt.close(); // JBO-JDBC-INTERACT
    [624] QueryCollection.executeQuery failed...
    [625] java.sql.SQLException: Attempt to set a parameter name that does not occur in the SQL: Bind_SysEffectiveDate
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:199)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:263)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:271)
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectAtName(OraclePreparedStatement.java:11178)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.setObjectAtName(OraclePreparedStatementWrapper.java:815)
         at weblogic.jdbc.wrapper.PreparedStatement_oracle_jdbc_driver_OraclePreparedStatementWrapper.setObjectAtName(Unknown Source)
         at oracle.jbo.server.OracleSQLBuilderImpl.bindParamValue(OracleSQLBuilderImpl.java:4655)
         at oracle.jbo.server.BaseSQLBuilderImpl.bindParametersForStmt(BaseSQLBuilderImpl.java:3645)
         at oracle.jbo.server.ViewObjectImpl.bindParametersForCollection(ViewObjectImpl.java:19288)
    In Fusion Developer's Guide for Oracle Application Development Framework 11g Release 1 (11.1.1) at chapter 5.2 says that environmnet uses :Bind_SysEffectiveDate bind variable for passing effective date for Date Effective Business Components. But I see that in my case :SysEffectiveDateBindVar bind variabe is used for get method and both variables are used in update method.
    Why environment trying to bind :Bind_SysEffectiveDate if only :SysEffectiveDateBindVar is present in the query ? How can I solve this problem ?
    I'm using
    Oracle JDeveloper Studio Edition Version 11.1.1.3.0
    WebLogic Server Version: 10.3.3.0
    Oracle SOA Suite 11.1.1.
    Edited by: user2975420 on 01.10.2010 6:26

    As I understood ApplicationModule.EFF_DT_PROPERTY_STR is used to pass the value of SysEffectiveDate. This means that this value will bind to variable that present in query filter (:Bind_SysEffectiveDate).
    If this property is not set, the current date value binds to :Bind_SysEffectiveDate variable.
    But the reason of my problem is another.
    When I create date effective entity and date effective view object for this entity the query of VO is next (I see this query in query editor in JDeveloper):
    SELECT EmployeeHistory.HISTORY_ID,
    EmployeeHistory.POSITION,
    EmployeeHistory.WAGE,
    EmployeeHistory.EMPL_ID,
    EmployeeHistory.START_DATE,
    EmployeeHistory.END_DATE
    FROM EMPLOYEE_HISTORY EmployeeHistory
    WHERE (:Bind_SysEffectiveDate BETWEEN EmployeeHistory.START_DATE AND EmployeeHistory.END_DATE)
    But when I invoke getEmployeeHistoryView1 method of view object service interface, the query which I see in log is next:
    SELECT EmployeeHistory.HISTORY_ID,
    EmployeeHistory.POSITION,
    EmployeeHistory.WAGE,
    EmployeeHistory.EMPL_ID,
    EmployeeHistory.START_DATE,
    EmployeeHistory.END_DATE
    FROM EMPLOYEE_HISTORY EmployeeHistory
    WHERE (EmployeeHistory.HISTORY_ID = :fbkKy__0)
    AND (:SysEffectiveDateBindVar BETWEEN EmployeeHistory.START_DATE AND EmployeeHistory.END_DATE)
    Bind variable for SysEffectiveDate has *:SysEffectiveDateBindVar* name now instead of *:Bind_SysEffectiveDate*. But method invokes successfully.
    When I invoke updateEmployeeHistoryView1 environmet already tryes to bind *:Bind_SysEffectiveDate* variable that doesn't present in query. So I have exception:
    java.sql.SQLException: Attempt to set a parameter name that does not occur in the SQL: Bind_SysEffectiveDate
    I'm not understanding why environment binds :Bind_SysEffectiveDate parameter which doesn't present in query.

  • Has anyone seen this photo effect before and if so do you know the process involved?

    I have seen this photo effect before and was wondering if anyone on the forum has any knowledge of how it produced in Photoshop. I am sure Poster Edges has something to do with it but I can not seem to replicate the effect.

    Thanks I will check....  only reference I have found is under LED Effect but no Tuts, Thanks again I will let you know if I find anything. Really a cool visual effect.

  • I have a problem with the effect gallery and the saving libraries in Illustrator CS6

    Hi everybody
    I have a problem with the effect gallery and the saving libraries in Illustrator
    1. When you go to to effects > effect Gallery the the sketch filter always is black and white. Is this normal? In Photoshop you can set your background and foreground and the sketch effects takes those colors. Is there any way to do this in Illustrator? I have tried changing the colour of the fill and stroke but nothing...
    2. In the same area as before effects > effect Gallery .... In Photoshop you can add multiple filters with the create new button. Always is off is there anyway to make it available? or the only way is to by creating several individual ones and manage then in the appearance panel ...
    3. I saved a brush library and now it appears in the user defined area so I can get it in any document, that is good but any one knows how to delete a user undefined library?
    Many thanks in advance for the help .... I look forward for the reply =)

    I see that it is six months ago that I first posted this. Nothing has changed. When I use affixa to create a message with an attachment from my gmail account in firefox, the message is created in drafts, but the gmail window is closed and I have to re-open it. Not critical, but annoying.
    Now there is a plug-in on the affixa site that is supposed to be designed for Firefox, and which affixa support claims should take care of this. And I've downloaded it twice. When you download it and open it, it says that it will be installed when Firefox restarts, and gives you a button to restart Firefox. But after you click that button and firefox disappears and re-appears, the affixa plug-in is NOT in the plugin list.
    Please, somebody, HELP.

  • Clip effects drag and drop?

    Hello folks. I'm evaluating a switch from Pro Tools to Audition on behalf of a production company. What I'm missing in Audition so far is the ability to quickly copy effetcs settings between clips/regions. For instance when a talking head reaperars now and then, I want to be able to use the same EQ setting that I made earlier. In Pro Tools you would typicly automate the EQ for each track and use the Write to all enabled parameters function, but in Audition clip effects seems to be the way to go. Other sound editors like Soundtrack and even video editors like FCP and Avid  let me drag the effect icon from one clip to another to apply the same effect whit the same  settings. And even save the settings by dragging the icon to a bin. I haven't found out how to do this in Audition, part from saving presets and loading them after having chosen the same effect onto the new clip, which if course is way to dodgy.
    Any quick reply would be appreciated.
    Thanks

    No it's not. Normally if you want to apply the same effect to a load of separate clips, you'd put them all on one track and apply the effects to that; it's a lot less processor-hungry doing it this way, as you only have to run one instance of the effect. Dragging the clips accurately is easy, and doing it like this means that you can see what's happening much more easily than if you have the clips all over the place (although it's a PITA not having grouping, admittedly). It all works fine when you're used to it - but it doesn't work the same way as PT does; if your production company wants to change, then they'll have to get used to a new way of working, I'm afraid.
    And I can't honestly say that Audition is ideal for doing this sort of stuff in its present release. Indeed, it may take a couple more versions before it gets to the sort of level that many people think it should be at. But I'm reasonably confident that it will. So my take on this at present is that it's fine to evaluate the present release - but only really in terms of its overall usability and way of doing things. It's not really fair to evaluate it in terms of overall features, because they're not all there yet.
    Oh, and there isn't anything dodgy about saving effects presets and reusing them - that's what the facility is there for, and it works fine. The nice thing about it is that you can apply several effects to a clip, and save the whole lot as one preset - rather better than having to save each preset's settings individually.

  • Effects in and out points

    I'm working with Soundtrack version 2.0.2. In previous versions, when adding an effect to a channel - you could hit the "down arrow" on the track to reveal the volume and pan, etc, etc and the effect showed up as a purple line there that you could insert points (like adjusting volume) and take the effect in and out at as you wanted in certain parts of an audio file. That option is not in this version evidently - can anyone tell me how to insert points to activate and deactivate effects so they come in a certain times and don't just affect the whole track?

    Do you use any time-stretching/ time remapping? Also this behavior may occur with some combinations of source timecode usage, so turn that off in the prefs and elsewhere if you don't depend on it...
    Mylenium

Maybe you are looking for