Flvpayback preloader percent with VideoEvent.READY

Hello,
I'm trying to get a dynamic tex box to go from 0 to100%, 100% would be when videoEvent is ready. I cant think of a way to do this. Any suggestions? I guess I need to know how many bytes it takes for VideoEvent.READY to happen.
heres my code as of right now..
import fl.video.*;
import fl.controls.ProgressBarMode;
// Set Variables
var flvControl = display;
var flvSource = "main_vid.flv";
// Create event handler functions to control the progressbar
function progressHandler(event:VideoProgressEvent):void
   var bl = Math.round(event.bytesLoaded/1000);
   var bt = Math.round(event.bytesTotal/1000);
   // Update progress...
   pb.setProgress(bl,bt);
   loader_txt.text = Math.floor((loaded/total)*100)+ "%";
function readyHandler(event:VideoEvent):void
   // Remove progressbar when we start playing...
     removeChild(pb);
     removeChild(loader_txt);
// Set progress bar state
pb.mode = ProgressBarMode.MANUAL;
pb.indeterminate = false;
// Add listeners and load the video
flvControl.addEventListener(VideoProgressEvent.PROGRESS, progressHandler);
flvControl.addEventListener(VideoEvent.READY, readyHandler);
flvControl.source = flvSource;
Thanks,
Mark

OK, so I think I was misunderstanding Video.Event.READY.. It just states that the video is ready and not downloaded(correct me if I'm wrong).
So I need to use display.playWhenEnoughDownloaded();, but how would I get the bytes out of that method? Any suggestions?
Thanks,
Mark

Similar Messages

  • How many times does the VideoEvent.READY event get fired?

    Hello,
    I have 2 videos I am loading via VideoPlayer.load(url). I
    have setup eventlisteners(VideoEvent.READY, onVideoLoaded) for each
    video so when the videos are loaded my function is called. How many
    times should my function onVideoLoaded be called? I assume once for
    each video. This is not the case because my function is called
    multiple times for the first video and not called at all for the
    second video. Can someone to me why? Is this a bug with AS3? Any
    help would be appreciated.
    Regards,
    Nilang

    Hi,
    The no of times to be retired on failure of message is default 3 times.
    You can set this in Visual Administrator->Server->Services----> SAP XI Adapter
    Thanks
    Swarup
    Edited by: Swarup Sawant on May 30, 2008 7:19 PM

  • How to preload flash with 8 scenes or more in it.

    Hi there
    I am having a movie with 8 scenes and being in Thailand where the internet is slow I would like it to preload before it opens because now, after it opens a lot off the stuff ain't there yet like buttons and animations that are built into different scenes.
    Can this be done and if so - how?
    thanx

    Hi Ned
    Sorry it took such a long time to respond - my computer gave up on me. Memory and harddisk both down the drain - Bummer.
    It was helpfull and in a way it works fine, however, I have a main movie and in there I open the multiple scenes.
    If I use the preloader alone with the scenes it works, but when I want to load the preloader that should open the scenes inside the main movie it doesn't do anything.
    var l:Loader = new Loader();
    l.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loop);
    l.contentLoaderInfo.addEventListener(Event.COMPLETE, done);
    l.load(new URLRequest("magazine.swf"));
    function loop(e:ProgressEvent):void
        var perc:Number = e.bytesLoaded / e.bytesTotal;
        percent.text = Math.ceil(perc*100).toString();
    function done(e:Event):void
        removeChildAt(0);
        percent = null;
        addChild(l);
    In the old situation I use a button goto frame - and on the frame there is actionscript that says:
    stop();
        loadMovie("magazine.swf", 'placeholder');
    have changed that to
    stop();
        loadMovie("preloader.swf", 'placeholder');
    Any ideas?
    Thanx

  • Radio Button with Submit Ready Only problem

    Hello,
    My radio button with submit ready only condition doesn't work correctly. When I click the a link on the first page
    it brings me to an update page. I have a radio button with submit, that won't open as a read only.
    It is being populated by SQL query, with the Null option selected. When I open the page I don't want the user to be able to edit the field unless they delete records associated with the field. Pretty much I want it to be disabled if the user has a record associated with it.
    Here are the queries.
    Source:
    SELECT OPLAN_IMPACTED_I
    FROM DFCY
    WHERE DFCY_SEQNO = :P12_DFCY_SEQNO
    Read only condition:
    SQL Exists query
    SELECT o.dfcy_seqno
    FROM oplan_impactd o, dfcy d
    WHERE o.dfcy_seqno = :p12_dfcy_seqno
    and :P12_OPLAN_IMPACTED_I = d.OPLAN_IMPACTED_I
    and :P12_OPLAN_IMPACTED_I = 'Yes'
    So when the page renders it's like you can change oplan, how do I make it read only when the page renders?
    Thanks,
    Mary

    Hi,
    If that is the source of the radiogroup, then it should be:
    SELECT OPLAN_IMPACTED_I d, OPLAN_IMPACTED_I r
    FROM DFCY
    WHERE DFCY_SEQNO = :P12_DFCY_SEQNOThis should return two values for each radio button - the displayed text and the returned value. If your radios do not have a returned value, then "Yes" will never be found. You can check this by loading the page and doing a View Source on it - search for RADIO and check what "value" attributes they have.
    Andy

  • Mail stuck in wf_notification_out with status = ready

    Hi All,
    Please help on workflow mailer .
    EBS R12 12.1.3 DB:11GR2 OS: OUL5X64
    when sending a test mail and verify with this script below , i could see the message was in wf_notification_out table with status READY
    BUT IT JUST SAT THERE AND NEVER GOES ANYWHERE.
    SELECT n.begin_date,
    n.status,
    n.mail_status,
    n.recipient_role,
    de.def_enq_time,
    de.def_deq_time,
    de.def_state,
    ou.out_enq_time,
    ou.out_deq_time,
    ou.out_state
    FROM applsys.wf_notifications n,
    (SELECT d.enq_time def_enq_time,
    d.deq_time def_deq_time,
    TO_NUMBER((SELECT VALUE
    FROM TABLE(d.user_data.parameter_list)
    WHERE NAME = 'NOTIFICATION_ID')) d_notification_id,
    msg_state def_state
    FROM applsys.aq$wf_deferred d
    WHERE d.corr_id = 'APPS:oracle.apps.wf.notification.send') de,
    (SELECT o.deq_time out_deq_time,
    o.enq_time out_enq_time,
    TO_NUMBER((SELECT str_value
    FROM TABLE(o.user_data.header.properties)
    WHERE NAME = 'NOTIFICATION_ID')) o_notification_id,
    msg_state out_state
    FROM applsys.aq$wf_notification_out o) ou
    WHERE n.notification_id = &NOTIFICATION_ID
    AND n.notification_id = de.d_notification_id(+)
    AND n.notification_id = ou.o_notification_id(+);
    Here was the result.
    BEGIN_DATE STATUS MAIL_STATUS RECIPIENT_ROLE DEF_ENQ_T DEF_DEQ_T DEF_STATE OUT_END_TIME OUT_DEQ_TIME OUT_STATE
    11-JUN-12     OPEN      MAIL     TEST.USER      11-JUN-12     11-JUN-12     PROCESSED     11-JUN-12          READY
    Please advise it i miss anything. This was working before.
    Thanks in advance.

    Please advise it i miss anything. This was working before.Can you find any errors in the Database and Workflow log files?
    Troubleshooting Workflow Java Notification Mailer - Technical Reference [ID 1191125.1]
    A Guide For Troubleshooting Workflow Notification Emails - Inbound and Outbound [ID 831982.1]
    How To Troubleshoot Java-based Workflow Notification Mailer [ID 242941.1]
    Troubleshooting Inbound & Outbound Email Notifications [ID 1184846.1]
    OWF H Diagnostics, Solutions and Information [ID 332152.1]
    Oracle Workflow Release 12 Diagnostics [ID 469822.1]
    Thanks,
    Hussein

  • Problems with Input Ready Query

    Hello All,
    I'm facing problems with input ready query for BI IP.
    I've created the input query on aggregation level and maintianed all the planning settings.  It is not allowing me to edit, when i'm attaching in the web template.
    I also attached a button copy function, and i'm able to execute it and save it, but it not allowing me to change manually.
    I also enabled the 3rd option for keyfigures...data can be changed with planning functions and user input.
    Please help me in this regard.
    We have just started the development of BI-IP, please suggest me if there are any notes to be applied.
    Regards
    Kumar

    Hello Johannes,
    Yes I've set to the finest granularity...even if it is Only one characteristic and one key figure without any restrictions...
    I've checked even planning tab page under properties...it is also fine..
    But still it is not allaowing me to go to edit mode...this is a fresh instalation and the query i'm working is the first one...
    Please suggest me if there are any notes to be applied, we are on Support Pack 10.
    Regards
    Jeevan Kumar

  • CRS-4535: Cannot communicate with Cluster Ready Services

    [oracle@bnl11237dat01 ~]$ /u01/app/11.2.0/grid/bin/cluvfy stage -post crsinst -n bnl11237dat01,bnl11237dat02 -verbose
    Performing post-checks for cluster services setup
    Checking node reachability...
    Check: Node reachability from node "bnl11237dat01"
    Destination Node Reachable?
    bnl11237dat01 yes
    bnl11237dat02 yes
    Result: Node reachability check passed from node "bnl11237dat01"
    Checking user equivalence...
    Check: User equivalence for user "oracle"
    Node Name Comment
    bnl11237dat02 passed
    bnl11237dat01 passed
    Result: User equivalence check passed for user "oracle"
    ERROR:
    Unable to obtain network interface list from Oracle Clusterware (OIFCFG)
    Verification cannot proceed
    Post-check for cluster services setup was unsuccessful on all the nodes.
    [oracle@bnl11237dat01 ~]$ oifcfg iflist
    bond1 10.32.25.160
    bond2 10.32.17.200
    bond2 169.254.0.0
    bond0.1515 10.32.24.0
    bond0.1536 172.16.7.0
    [oracle@bnl11237dat01 ~]$ oifcfg iflist -p
    bond1 10.32.25.160 PRIVATE
    bond2 10.32.17.200 PRIVATE
    bond2 169.254.0.0 UNKNOWN
    bond0.1515 10.32.24.0 PRIVATE
    bond0.1536 172.16.7.0 PRIVATE
    [oracle@bnl11237dat01 ~]$ oifcfg iflist -p -n
    bond1 10.32.25.160 PRIVATE 255.255.255.240
    bond2 10.32.17.200 PRIVATE 255.255.255.248
    bond2 169.254.0.0 UNKNOWN 255.255.0.0
    bond0.1515 10.32.24.0 PRIVATE 255.255.255.192
    bond0.1536 172.16.7.0 PRIVATE 255.255.255.0
    [oracle@bnl11237dat01 ~]$ /u01/app/11.2.0/grid/bin/onsctl debug
    HTTP/1.1 200 OK
    Content-Length: 1923
    Content-Type: text/html
    Response:
    == bnl11237dat01:6200 8732 11/05/19 11:44:09 ==
    Home: /u01/app/11.2.0/grid
    ======== ONS ========
    IP ADDRESS PORT TIME SEQUENCE FLAGS
    127.0.0.1 6200 4dd4f2a3 00000000 00000008
    Listener:
    TYPE BIND ADDRESS PORT SOCKET
    Local 127.0.0.1 6100 5
    Remote any 6200 7
    Remote any 6200 -
    Connection Topology: (1)
    IP PORT VERS TIME
    127.0.0.1 6200 4 4dd4f2a3=
    Client connections:
    ID CONNECTION ADDRESS PORT FLAGS SENDQ REF SUB W
    0 internal 0 01008a 00000 001 002
    2 127.0.0.1 6100 01001a 00000 001 001
    1 127.0.0.1 6100 01001a 00000 001 001
    3 127.0.0.1 6100 01001a 00000 001 001
    4 127.0.0.1 6100 01001a 00000 001 001
    7 127.0.0.1 6100 01001a 00000 001 000
    request 127.0.0.1 6100 03201a 00000 001 000
    Worker Ticket: 10/10, Last: 11/05/19 11:42:21
    THREAD FLAGS
    40460940 00000012
    405b4940 00000012
    41280940 00000012
    Resources:
    Notifications:
    Received: Total 0 (Internal 0), in Receive Q: 0
    Processed: Total 0, in Process Q: 0
    Pool Counts:
    Message: 1, Link: 1, Ack: 1, Match: 1
    [oracle@bnl11237dat01 ~]$
    [root@bnl11237dat01 ~]# /u01/app/11.2.0/grid/bin/crsctl stop crs
    CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.crsd' on 'bnl11237dat01'
    CRS-2790: Starting shutdown of Cluster Ready Services-managed resources on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.bnl11237dat01.vip' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.oc4j' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.cvu' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.LISTENER_SCAN1.lsnr' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.LISTENER.lsnr' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.LISTENER_SCAN3.lsnr' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.LISTENER_SCAN2.lsnr' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.bnl11237dat01.vip' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.cvu' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.LISTENER_SCAN1.lsnr' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.scan1.vip' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.LISTENER.lsnr' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.bnl11237dat02.vip' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.LISTENER_SCAN3.lsnr' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.scan3.vip' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.LISTENER_SCAN2.lsnr' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.scan2.vip' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.scan1.vip' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.bnl11237dat02.vip' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.scan3.vip' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.scan2.vip' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.oc4j' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.ons' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.ons' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.net1.network' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.net1.network' on 'bnl11237dat01' succeeded
    CRS-2792: Shutdown of Cluster Ready Services-managed resources on 'bnl11237dat01' has completed
    CRS-2677: Stop of 'ora.crsd' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.mdnsd' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.crf' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.ctssd' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.evmd' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.cluster_interconnect.haip' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.cluster_interconnect.haip' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.mdnsd' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.crf' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.evmd' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.ctssd' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.cssd' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.cssd' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.gipcd' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.diskmon' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.gipcd' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.gpnpd' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.diskmon' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.gpnpd' on 'bnl11237dat01' succeeded
    CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'bnl11237dat01' has completed
    CRS-4133: Oracle High Availability Services has been stopped.
    [root@bnl11237dat01 ~]# /u01/app/11.2.0/grid/bin/crsctl start crs
    CRS-4123: Oracle High Availability Services has been started.
    [root@bnl11237dat01 ~]# /u01/app/11.2.0/grid/bin/crsctl check crs
    CRS-4638: Oracle High Availability Services is online
    CRS-4535: Cannot communicate with Cluster Ready Services
    CRS-4530: Communications failure contacting Cluster Synchronization Services daemon
    CRS-4534: Cannot communicate with Event Manager
    I am unable to start Oracle Cluster Service on 11.2.0.2. Please can I know what the problem is and how to start CRS
    thanks.

    Hi,
    after the crsctl start crs you have to wait a while till the clusterstack is up. You just issued crsctl check crs a little to early.
    To see the startup stack do a crsctl stat res -t -init.
    If not everything in crsctl stat res -t -init goes to online after a while, then you have a problem, which has to be analyzed.
    However if crsctl stat res -t -init show everything is started use crsctl stat res -t to see the other processes coming online.
    Can you post the crsctl stat res -t -init (if not everything is online) or a crsctl stat res -t.
    Only thing which I find strange is that oifcfg does not list a PUBLIC interface...
    Regards
    Sebastian

  • Workflow problem with status Ready

    HI,
    I have a problem with the workflow not getting completed.
    The workflow is for the employee attendace 20000081 .
    After the manager of the employee accepts the leave application posted by employee , The workflow is in the following state: -
    ID  000000340552 Work item type    Background step      
    Work Item text  Find Employee .
    Status <b>Ready</b>  
    Now the question is there any background job which needs to be scheduled for changing the all the workitem with status 'Ready' to be executed .
    since once I execute this step manually then the workflow again goes  in the ready status with the next step and the next step in this case is 'Create attendance/absence' This stpe of the workflow is in again status 'Ready'.
    Please let me know if some know about this problem. 
    Thanks in advance .
    Ankur

    Hi ,
    Thanks for the prompt reply.
    I have tried the auto customizing and I am geeting the following log generated :
    Auto-Customizing: General tasks                                         
             E WZ:119  Instances for task TS60001307 already exist          
    Task TS60001307     not classified as general task                      
             E WZ:119  Instances for task TS70008037 already exist          
    Task TS70008037     not classified as general task                      
             E WZ:119  Instances for task TS70008125 already exist          
    Task TS70008125     not classified as general task                      
    And  while checking  the customizing setting in SWU3 the folling entires exists but as I understand the seeting is proper, please have alook below:                                                                               
    An active plan version exists                                                  
         Workflow administrator maintained                                              
         RFC destination: User locked                                                   
         Generic decision task classified completely                                    
         Tasks for document generation fully classified                                 
         T77* tables all available                                                      
         Monitoring job for missed deadlines is scheduled                               
         Monitoring job for work items with errors is scheduled                         
         Sending to objects and HR objects activated                                    
         Entries missing in PD control tables                                           
         Default Domain for Internet Mail Maintained                                                                               
    Workflow development environment                                                    
         Customizing incomplete                                                                               
    Prefix numbers for standard object types maintained                            
         An active plan version exists                                                  
         T77* tables all available                                                      
         Number range defined for customer tasks                                        
         Entries missing in PD control tables                                                                               
    Please let me know if this is not proper .
    Thanks and Regards,
    Ankur

  • [svn:osmf:] 14713: Fixed preloader issue with work around.

    Revision: 14713
    Revision: 14713
    Author:   [email protected]
    Date:     2010-03-11 12:44:27 -0800 (Thu, 11 Mar 2010)
    Log Message:
    Fixed preloader issue with work around.   Underlying flash player bug filed.  https://bugs.adobe.com/jira/browse/FP-4114
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FP-4114
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/AllExamples.as

    Thanks Very much for the reply.
    This issue came to development (we) through Support team only. Did you mean DB Team Support?.
    Also please let us know about the workaround suggested by DB Team.
    Thanks in advance.
    Joseph George

  • Help with image ready on ps3 extended

    I am pretty new to photo shop and have cs3 extended.
    I have a Yorkie website where I cut out my Yorkies and paste them to differnet backgrounds.... a lady that does the ANIMATED pictures  HAS DID A COUPLE FOR ME ....BUT I NEED TO LEARN TO DO THIS MYSELF.  She will not tell folks how to do:)
    The problem is once you work with a pic that is animated already then try to  add a dog.....by pasting....it removes the animation in the background pic.... and the picture no longer moves once the dog is added ?....She said she puts thru IMAGE READY...which I do not see anywhere on CS3 extended.  I will try to insert a pic she did for me and any help would be greatly appreciated....as I can do but then the picture is no longer animated once altered in my photoshop but she is doing somehow.....so has to be poss ?  If I were to do this pic it would stop moving once the dogs were added....plus not as good as her but practicing........could it be the fact she is doing in layers and I am doing copy and paste...I do know she puts thru Image ready and I do not know where this is located on cs3 extended or how to do?
    am

    well...........l when I try to open Gif with the import and chose the video frames to layers...am getting a message saying I need Quicktime 7.1 to be able to do??? and when selecting import that is the only option I have to open my animated picture?...YOU HAVE BEEN SO MUCH HELP!   THANK YOU SO MUCH...! 
       BLUE MONDAY EXCLUSIVES   
    Date: Sat, 17 Apr 2010 20:23:27 -0600
    From: [email protected]
    To: [email protected]
    Subject: Re: Help with image ready on ps3 extended
    I'm not sure anyone mentioned this but if not to open GIFs using the import you have to enter the GIF name as GIF isn't listed as one of the options.
    It sounds like you are viewing the images in a maximized screen mode. To view more than one document, press F to cycle through the screen modes. FYI, only the contents of the currently selected document can be viewed in the layers palette.
    I'll just talk about copy/paste so as not to confuse...
    If you are going to copy/paste, click the frame around the dog document to target it. Your layers palette will now contain the contents of the dog document. Click on the layer in the layers palette with the selected dog over transparency. With that layer highlighted in your layers palette, press Ctrl A; then Ctrl C. (Select<Select All; Edit<copy if you prefer using the menu.) This will copy that layer into your clipboard.
    Next, click the frame of the document containing the animation. Click the topmost layer in the layers palette because we want you dog to be in the top layer. Press Ctrl + V. (Edit<Paste if you prefer using the menu).
    Your dog is most likely going to be too big. Use Edit<Free Transform to size and move the dog to the desired location.
    At this point, your dog should be showing in each frame in the animation palette.
    Example:
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/25315/with-palettes-open.jpg
    I'm using the older Image Ready me method. The highlighted place in the palette is where you switch methods between the old method and the new timeline. Notice, I have the layers and animation palette both in the workspace...and I'm not in a maximized mode. The red arrow shows the correlation between the frame and the layer represented by it in the layers palette.
    Image:second-image.jpg
    Here I have a second image to slip into my animation. I have the creature selected and on it's own layer with transparency around it. Notice that the the layer with the isolated creature is highlighted. At this stage, I'll press Ctrl + A; then Ctrl + C to select and save this image to my clipboard.
    Image:creature-added.jpg
    Here, I've pasted (Ctrl + V or Edit<Paste) in my creature and resized it (Ctrl + T or Edit<free transform) so he can be jumped. I also added a shadow under my creature which I added to a layer under my creature. Notice that when Frame on is selected in the animation palette that the eye is on both the creature and the shadow. If I click the eye to turn them (creature and shadow layer) off, they disappear from the entire animation. I can make them appear at any frame by clicking the desired frame in the animation then turning on the eye icon for the creature and shadow layer in the layers palette. I can also adjust opacity if desired.
    You could even more than the one image if you want the dog to appear to move. Use the eyeball visibility to determine which pose will be used for that frame.
    Example:
    Image:jump-creature-gif.gif
    Here, I used transform warp to adjust the pose of the creature for a few frames as he's jumping the creature...just for fun.
    >

  • BDOC stops with status ready

    Hi
    I am replicating campaigns from CRM to PS. Now as I release the campaign BDOC is triggered and goes to backend ECC system. But after replication BDOC comes and stops in inbound queue of CRM with status ready. When I goto SMQ2 and unlock it, it flows through.
    This problem I am facing for all campaigns transfered not for any specific one.
    Please help me in resolving this issue.
    Thanx in advance.
    Cheers
    Hits

    Hi,
    This happens because the Queues are not registered.
    In SMQ2, note the first 3 cahracters of the queue, e.g, R3A or CSA.
    Now goto SMQR and see if any Queue exists with this name like R3A* or CSA*.
    If it does, then select the Queue and press button Registration.
    If it does not, tehn create a new entry by pressing the same registration button and entering the following value:
    Queue name     CSA*  
    EXEMODE     D     
    MAXTIME                     60    
    USERDEST           
    NRETRY                     30    
    TDELAY                     300   
    Doing this is sufficient for your Queue to get executed automatically.
    Kindly reward with points in case helpful.
    Sharif.

  • Preload Reader with our mobile devices

    We plan to produce a smartphone , and want to preload Reader with our mobile devices. If that Is permitted in adobe reader mobile distribution policy?

    You need to contact Adobe for that type of distribution.
    Reader Mobile Distribution Agreement link on this page: http://www.adobe.com/products/reader-mobile/mobile-distribution.html.  Here is the direct link to the form:  http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/products/reader/pdfs/reader- mobile-distribution-agreement.pdf

  • Preloader percent

    Hi Group,
    I am creating a preloader that uses a mask to display part of
    a logo during load. However, the tutorial I found doesn't include a
    percentage text field. I would like to be able to add a dynamic
    text field labled something like text_percent and then have it
    dispaly the loading percentage along with mask. Below is the action
    script I am using for the mask portion. Can anyone help?
    stop();
    rectMask_mc._height = 1;
    this.onEnterFrame = function():Void {
    var loadedData:Number = this.getBytesLoaded();
    var allData:Number = this.getBytesTotal();
    var percent:Number = Math.round(loadedData/allData*100);
    rectMask_mc._yscale = percent;
    if (loadedData >= allData) {
    gotoAndPlay("Scene 2", 1);
    delete this.onEnterFrame;
    };

    >>(getBytesTotal / BetBytesLoaded)*100
    Just an FYI, but with operator precedence, / and * are the
    same. So the
    parenthesis is unnecessary, though still useful for a quick
    visual of the
    order you want. And those are functions:
    getBytesTotal() / getBytesLoaded() * 100;
    Dave -
    www.offroadfire.com
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • I am noticing a Bunch of Preloader Problems With Captivate 5

    That are not being answered on the Adobe forums and they all seem to be some what related. I am have major preloader issues and wish this would be resolved.
    http://forums.adobe.com/message/3595269
    http://forums.adobe.com/message/3209686
    http://forums.adobe.com/thread/471103
    There are more. Some go back to Captivate 4 and most seem to be related to Action Script three. I am having all of the problems in the above three forums and have yet to find a answer.
    I am using Captivate 5 and Connect Pro 8 on premise.
    It is critical that I get my preloaders to function properly because my clients think that something is wrong when they have to wait more than a few seconds with out see some sign of progress. Thanks.

    Here are some more that are not answered.
    http://forums.adobe.com/message/2954752
    http://forums.adobe.com/thread/467275
    http://forums.adobe.com/message/3139989

  • Problems with Cluster Ready Service installation (RAC) in Oracle 10g R1

    Hello
    I have got problems with this installation. I am starting Oracle user
    At the end of the installation I get a mesage when all Configuration Assistants are failed
    I have got 2 computers with Windows 2000 PRO, two networks (private and public)
    As a shared disk I use one external disk (with USB) attached to one computer.
    What to do here?
    please for a reply
    Martin
    PROT-1: Failed to initialize ocrconfig
    SCLS error 1 reading current privileges.
    Internal Error Information:
    Category: 1234
    Operation: scls_iddb_has_privgrp_by_name
    Location: NetLocalGrou
    Other: get local group failed
    Dep: 0
    Step 1: checking status of CRS cluster
    Step 2: configuring OCR repository
    ignoring upgrade failure of ocr(-1)
    failed to configure Oracle Cluster Registry with CLSCFG, ret 102
    Result code for launching of configuration assistant is: 1
    The OUICA command is launched from D:\oracle\product\10.1.0\crs\oui\bin\ouica.bat.
    Launched configuration assistant 'Oracle Notification Server Configuration Assistant'
    Tool type is: Optional.
    The command being spawned is: 'D:\oracle\product\10.1.0\crs/bin/racgons.exe add_config migi:4948'
    Start output from spawned process:
    End output from spawned process.
    Configuration assistant "Oracle Notification Server Configuration Assistant" failed
    Result code for launching of configuration assistant is: 1
    The OUICA command is launched from D:\oracle\product\10.1.0\crs\oui\bin\ouica.bat.
    Launched configuration assistant 'Oracle Private Interconnect Configuration Assistant'
    Tool type is: Optional.
    The command being spawned is: 'D:\oracle\product\10.1.0\crs/bin/oifcfg.exe setif -global "public"/10.0.0.0:cluster_interconnect "public"/192.168.1.0:public'
    Start output from spawned process:
    PRIF-12: failed to initialize cluster support services
    End output from spawned process.
    Configuration assistant "Oracle Private Interconnect Configuration Assistant" failed
    PRIF-12: failed to initialize cluster support services
    Result code for launching of configuration assistant is: 1
    The OUICA command is launched from D:\oracle\product\10.1.0\crs\oui\bin\ouica.bat.
    Error:*** Alert: Some of the configuration assistants failed. However these are optional assistants, so they are not required for the correct configuration of your system. If you want to try to run those assistants again, select the failed assistants and click the 'Retry' button. ***
    User Selected: Yes/OK
    Starting to execute configuration assistants
    Launched configuration assistant 'Oracle Cluster Ready Services Configuration Assistant'
    Tool type is: Optional.
    The command being spawned is: 'D:\oracle\product\10.1.0\crs/install/crssetup.config.bat'

    Also you clusterware installation installs to an ORACLE_HOME.
    Oracle does only make a differentiation, if it has to be clear, that you got a clusterware home and a database home.
    Normally if a patch is referring to $ORACLE_HOME (and the patch can be used for clusterware & database), it just means the installation directory of the oracle software installed.
    Sebastian

Maybe you are looking for

  • Oracle 11g Express for Ubuntu Linux

    Just like Oracle provided express edition for linux for 10g, will there be an easy to install express edition of 11g for linux? I mean via apt-get or debs or synaptic. Of course, synaptic being the easiest I have EVER seen oracle install on linux. I

  • CProjects Controlling Area determination

    Hi All, I would like to ask a very basic question here. When we create a project in cProjects how does the controlling area and company code gets assigned? Means where exectly in SPRO do we define that? We do not mention the Controlling area etc. in

  • Speaker buzz and interference in Premiere Pro and Audition CS5.5

    Several months ago I upgraded to an Asus G10AC PC for my editing. When I first started using the Asus I was using a basic 5.1 computer speaker system plugged in using the 3.5mm headphone jack for sound. I noticed right away that when I opened Premier

  • IWeb Photo Page.

    Can some one please tell me how to make more than one page visible on a iWeb site. I have created two pages but when I visit the site I can only see one and there is no navigation. I am new to the MAC world, but not to computers. I am quite sure ther

  • Open application in headerless portal

    Hi, I would like to open an WD application in the portal with a link. And I would also like the portal to be headerless (without TLN). I tryed to add ?NavMode=3 to my link. I also tryed to modify the properties of the page in which the WD aplication