Using A Slider Component As A Button

Hi
I've got what to small problems when using my slider component.
I'm building a small quiz and I am using the slider component to let the user rate their opinion. It'd be great if I could make the slider play the movieclip (to the next quiz questio) when the user has cast their opinion -  on mouse up. Is this possible.
Also I'm using a 'score' uint variable to collect the polling results but I need this variable to reside on the root of my flash file so that I can add to it from various diffrent movieclips. How can I target the variable from a movieclip.
Heres my code:
import fl.events.SliderEvent;
voteSlider.value = 5;
voteSlider.addEventListener(SliderEvent.CHANGE, voteCast);
function voteCast (event:SliderEvent):void {
          score += event.target.value;
          trace(score);
This is what i would like to target in the root
var score:uint = 0;
Thanks

your voteCast() function executes after a mouseup.  add your code there:
import fl.events.SliderEvent;
voteSlider.value = 5;
voteSlider.addEventListener(SliderEvent.CHANGE, voteCast);
function voteCast (event:SliderEvent):void {
          score += event.target.value;
          trace(score);
gotoAndStop("label");  // assuming the current timeline is the one you want to direct.

Similar Messages

  • Change Volume using Slider Component

    I am trying to use the slider component (aSlider) to control the volume of mySound which is a class called PlaySound. Created an addEventListener for aSlider with a SlideEvent.CHANGE executing a function called changeVolume. Everything else works but I can't seem to get the slider to control the volume of mySound. Need some help. Here is the current code. TY in advance.
    import flash.events.Event;
    import fl.controls.Slider;
    import fl.events.SliderEvent;
    import fl.controls.Label;
    var mySound:PlaySound = new PlaySound  ;
    stage.addEventListener(Event.ENTER_FRAME, clock);
    var OFF:Boolean = true;
    function clock(event:Event):void
    var currentdate:Date = new Date();
    arc_mc.visible = false;
    secondHand_mc.rotation = currentdate.seconds * 6;
    minuteHand_mc.rotation = currentdate.minutes * 6 + currentdate.seconds / 10;
    hourHand_mc.rotation = currentdate.hours * 30 + currentdate.minutes / 2;
    if (secondHand_mc.rotation > -60 && secondHand_mc.rotation < 0)
      arc_mc.visible = true;
      if (OFF)
       OFF = false;
       mySound.play();
    else
      arc_mc.visible = false;
      SoundMixer.stopAll();
      OFF = true;
    aSlider.addEventListener(SliderEvent.CHANGE, changeVolume);
    function changeVolume(event:SliderEvent):void
       // var volumeLevel:Number = 5;
       //volumeLevel = event.target.value / 100;
    valueLabel.text = event.target.value + "percent";

    yes, if someone uses your slider before you start playing your sound, you should prevent that error:
    import flash.events.Event;
    import fl.controls.Slider;
    import fl.events.SliderEvent;
    import fl.controls.Label;
    import flash.media.SoundTransform;
    import flash.media.SoundChannel;
    var mySound:PlaySound = new PlaySound() ;
    var mySoundChannel:SoundChannel;
    stage.addEventListener(Event.ENTER_FRAME, clock);
    var OFF:Boolean = true;
    function clock(event:Event):void
    var currentdate:Date = new Date();
    arc_mc.visible = false;
    secondHand_mc.rotation = currentdate.seconds * 6;
    minuteHand_mc.rotation = currentdate.minutes * 6 + currentdate.seconds / 10;
    hourHand_mc.rotation = currentdate.hours * 30 + currentdate.minutes / 2;
    if (secondHand_mc.rotation > -60 && secondHand_mc.rotation < 0)
      arc_mc.visible = true;
      if (OFF)
       OFF = false;
       mySoundChannel = mySound.play();  // delcare mySoundChannel outside all functions
       //mySound.play();
    else
      arc_mc.visible = false;
      SoundMixer.stopAll();
      OFF = true;
    aSlider.addEventListener(SliderEvent.CHANGE, changeVolume);
    function changeVolume(event:SliderEvent):void
    valueLabel.text = event.target.value + "percent";
    if(mySoundChannel){
    var st:SoundTransform = mySoundChannel.soundTransform;
    st.volume =(event.target.value - event.target.minimum) / (event.target.maximum - event.target.minimum);
    mySoundChannel.soundTransform = st;

  • Dragging Slider Component

    How can I alter the Slider Component so that it slides
    horizontally, left or right, by simply mousing over and moving the
    mouse WITHOUT clicking and holding down the mouse (as is the
    default behavior of the Slider)... just simply touching the Slider
    and rolling the mouse left or right.
    What I am trying to accomplish: I would like the ability to
    mouse over invisible buttons while using the Slider Component. The
    mouse over effect does not function on the buttons beneath the
    Slider because the mouse button is held down when passing over
    them.
    Thanks so much in advance for any help on this.

    I figugured it out I had to put mc.play(); instead of:
    mc.frameTxt.text = aSlider.value;

  • I get errors when using tomahawak inputFileUpload component.

    Hello everyone. I am a newbie with JSF. I use netbeans 6.1 and apache myfaces and tomahawk libraries. I need to upload a file. I use <t:inputFileUpload /> component of tomahawk but cant put it to work. When i choose the file from the browser and click upload button i get this error on browser.
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: java.lang.NoClassDefFoundError: Could not initialize class org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
         org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:135)
         org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:390)
    root cause
    java.lang.NoClassDefFoundError: Could not initialize class org.apache.myfaces.shared_tomahawk.config.MyfacesConfig
         org.apache.myfaces.renderkit.html.util.AddResourceFactory.getInstance(AddResourceFactory.java:282)
         org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:126)
         org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:390)
    note The full stack trace of the root cause is available in the Apache Tomcat/6.0.16 logs.
    Apache Tomcat/6.0.16and my jsp page is below
    <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <%--
        This file is an entry point for JavaServer Faces application.
    --%>
    <f:view>
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>Endersys License Upload Page</title>
        </head>
        <body>
            <h:form id="uploadForm" enctype="multipart/form-data">
                <t:inputFileUpload  id="fileUplod" value="#{upload_backing.file}"
                                    storage="file" required="true"/>
                <h:message for="fileUpload" />
                <h:commandButton value="upload" action="#{upload_backing.upload}" />
               <h:outputText value="File Uploaded Succesfully" rendered="#{upload_backing.success}"
                             style="color:green" />
               <h:outputText value="Error: File is not uploaded"
                             rendered="#{upload_backing.success}" style="color:red" />
            </h:form>
        </body>
    </html>
    </f:view>and this is the content of web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
        <context-param>
            <param-name>com.sun.faces.verifyObjects</param-name>
            <param-value>false</param-value>
        </context-param>
        <context-param>
            <param-name>com.sun.faces.validateXml</param-name>
            <param-value>true</param-value>
        </context-param>
        <context-param>
            <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
            <param-value>client</param-value>
        </context-param>
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>/faces/*</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>
                30
            </session-timeout>
        </session-config>  
       <filter>
         <filter-name>MyFacesExtensionsFilter</filter-name>
         <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
        <init-param>
            <param-name>maxFileSize</param-name>
            <param-value>10m</param-value>
            <description>Set the size limit for uploaded files.
                Format: 10 - 10 bytes
                        10k - 10 KB
                        10m - 10 MB
                        1g - 1 GB
            </description>
        </init-param>
        <init-param>
            <param-name>uploadRepositoryPath</param-name>
            <param-value>/tmp</param-value>
        </init-param>
        </filter>
    <!-- extension mapping for adding <script/>, <link/>, and other resource tags to JSF-pages  -->
    <filter-mapping>
        <filter-name>MyFacesExtensionsFilter</filter-name>
        <!-- servlet-name must match the name of your javax.faces.webapp.FacesServlet entry -->
        <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    <!-- extension mapping for serving page-independent resources (javascript, stylesheets, images, etc.)  -->
    <filter-mapping>
        <filter-name>MyFacesExtensionsFilter</filter-name>
        <url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
    </filter-mapping>
        </web-app>and the bean i use is here
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package bean.backing;
    import java.io.*;
    import javax.servlet.http.*;
    import org.apache.myfaces.custom.fileupload.UploadedFile;
    import javax.faces.context.FacesContext;
    * @author brhn
    public class main {
        private UploadedFile file;
        boolean success = false;
        public main() {}
        public UploadedFile getFile() {
            return file;
        public void setFile(UploadedFile file) {
            this.file = file;
        public void upload() throws IOException {
                try {
                    InputStream stream = file.getInputStream();
                    long size = file.getSize();
                    byte [] buffer = new byte[(int)size];
                    stream.read( buffer, 0, (int)size );
                    stream.close();
                    success = true;
            } catch (Exception e) {
                success = false;
        public boolean isSuccess () {
            return success;
    }i need to make it work. All helps will be appreciated

    The logs are by default located in Tomcat/logs and configurable by Tomcat/conf/logging.properties.
    Having said that, when I google on [java.lang.NoClassDefFoundError: Could not initialize class org.apache.myfaces.shared_tomahawk.config.MyfacesConfig|http://www.google.com/search?q=java.lang.NoClassDefFoundError%3A+Could+not+initialize+class+org.apache.myfaces.shared_tomahawk.config.MyfacesConfig] then I have the impression that you're using Tomahawk 1.1.7 snapshot and there might be a bug in it. Try using Tomahawk 1.1.6 and see if it works. After all, you may have more luck if you post this issue at their own mailinglist at tomahawk.apache.org.

  • How to use the slider to avoid keyframes movements?

    Hi there,
    first of all, I have to tell, I am not a English speaker, so please excuse me in advance. Anyway, I want to solve this particular issue: I have created an After effects project, where you can add into the composition your own text, logo or whatever... what the after effects project does is, that it turns your text, or logo into the 3D metal result. There is also camera cretaed, which moves from one position, to another. Take a look:
    The inputed text is "add content" (I have 4 cameras alltogether, but I am showing an example just on the first one, so you will not see the whole text. The rest of the cameras are also in other compositions)
    Here you can see the exact movement of the camera. However, if somebody inserts a logo or a text, which has for example 7 letters (in the next picture it is just "content") it will look like this:
    here you can see how big space we have. Also it is not appropriate to change the original size of the text in the composition to achieve the smallest gap, as we can see here. The height will be huge then...
    If I would edit it by myself, I would do this:
    -I would clicked on the button "2 views" and choose view from the "front"
    -Then I would select all the keyframes and after that i would go into the left window "front" and  using the mouse I would draged whole the camera to the position I want:
    The great thing about this is, that as I selected all the keyframes and then set the red line on one of them, the camrea will work even for the beginning! So this is how it will look after the fix.
    What the problem is, that after the small edit I want to send this project to few of my friends. Then they can easily put their text, or logo in. The text will have different height, width...it will be shorter or longer. I was just wondering, if you could help with some expressions, linkings and so on, so in the final result, of one my friends could move with the  whole camera (not just with one keyframe) using the SLIDER CONTROL. At least for the x and y axis, if z axis is also possible, it would be brilliant. It also doesn't matter how many sliders there will be .
    So basically with using the sliders, they should achieve this:
    So i need some helpful steps. Please help me. This is very important for me. I will be so much thankful!! Really! (Thanks for the potential help )

    You are way over thinking your problem and potentially headed down a path that will cause more problems that it will solve.
    If you have a camera path that is already animated and you want to change the position of the camera path as a whole the easiest way to do that would be to create a null and then parent the camera to the null. Move the null and all of the camera movements you have set up will follow. No expressions are needed. This is the easiest way to change every aspect of a motion path, rotate the entire path, scale the path, or move the path on any axis.
    If you really want to use 3 position sliders to move existing keyframes to a new value adding value + expressions values will allow you to do this. Just add an three expression control sliders to the camera layer (or any layer like the null you are using as a parent) select the name of the slider in the ECW and press enter and rename it. Something like this will be the result.
    Notice that I also have rotation and scale controls in this setup. Now that you have 3 sliders you can separate the position property of the null into individual values enable expressions in each property and type in value +, then use the pickwhip to drag from the X value to your slider named xPosition (in my example) and repeat for each operation. The value + will add the value of the slider to the current value of the position keyframes. The expression will look like this for X:
    value + effect("x position")("Slider")
    If you want to use sliders I would use a null, add expression controls to the null for position, scale, and rotation, keep the camera position property unified and then use your expression control sliders on the null to modify your existing path. I would not suggest doing this directly on camera position with separated X, Y and Z values because this will change the shape of your camera path and would be more difficult to control. You'll probably also want to create a camera POInull and use this preset to tie the camera's point of interest to the null.
    Here's an animation preset you can apply to a null that will give complete control to the motion path of any animated layer you make the child of this null. Search Animation Preset in the After Effects Search Help field if you do not know how to use them, create them, and save them.
    As a final gimme, here's a CS6 project using this animation preset to control a null's position that used to change an animated camera path.

  • HT1430 How can you reboot your Touch if the screen is frozen and will not allow you to use the "slide to power off"

    How can I reboot my Touch when the screen is frozen and I cannot use the "slide to power off" feature?

    Next try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          

  • Parent Child Synchronization using a Iterator Component

    Hi All,
    I am working on ADF 11.1.1.5.0. I have the following business requirement :
    I have DepartmentVO and EmployeeVO with a view link defined on DepartmentId attribute.
    Use Case : I need to display all departments with their respective childs with a specific UI design i.e. i need to show all the Departments as Panel boxes and their respective children inside the panel box.
    So for that i have used the Iterator component which will dynamically create Panel boxes based on the rowcount of DepartmentVO .(if there are 5 records in dept table then 5 panel boxes will be formed).
    Similarly for child i have used another Iterator component(inside parent Iterator) which will display its respective children.
    jspx code is as follows :
    <af:panelGroupLayout id="pgl1" layout="scroll">
    <af:iterator id="i2" value="#{bindings.DepartmentsView1.collectionModel}"
    var="row">
    <af:panelBox text="#{row.DepartmentId} -- #{row.DepartmentName}" id="pb1" styleClass="AFStretchWidth">
    <af:panelGroupLayout id="pgl3">
    <af:iterator id="i1" value="#{bindings.EmployeesView3.collectionModel}"
    var="attr">
    <af:outputText value="#{attr.DepartmentId}" id="ot1"/>
    <af:outputText value="#{attr.FirstName}" id="outputText1"/>
    <af:outputText value="#{attr.LastName}" id="outputText2"/>
    </af:iterator>
    </af:panelGroupLayout>
    </af:panelBox>
    </af:iterator>
    </af:panelGroupLayout>
    When i run the page i see all the parent records as panel boxes but child records are not properly synchronized. The children of first parent is getting repeated inside all parents.This probably is the first parent is set as current row for which its children get repeated in all other parents.
    If i run the same through AppModule it runs perfectly as in appmodule run we hv a NEXT button to iterate the Parent VO.
    Thnks
    -Sanjeeb

    HI ,
    Instead of what you have tried, you can try this. EmployeesView here should be present as a child accessor in DepartmentsView.
    <af:iterator id="i2"
    value="#{bindings.DepartmentsView1.collectionModel}"
    var="row">
    <af:panelBox text="#{row.DepartmentId} --#{row.DepartmentName}"
    id="pb1" styleClass="AFStretchWidth">
    <af:panelGroupLayout id="pgl3" layout="vertical">
    <af:iterator id="i1" value="#{row.EmployeesView}" var="attr">
    <af:panelGroupLayout id="pgl0" layout="horizontal">
    <af:outputText value="#{attr.FirstName}" id="outputText1"/>
    <af:outputText value="#{attr.EmployeeId}" id="outputText2"/>
    <af:outputText value="#{attr.LastName}" id="outputText3"/>
    </af:panelGroupLayout>
    </af:iterator>
    </af:panelGroupLayout>
    </af:panelBox>
    </af:iterator>
    Hope this anwsers your question.
    Thanks,
    TJ

  • Using a List Component to create a photo gallery.

    This feels like a lot to be asking but i'm gonna go ahead and
    ask to see what happens.
    I'm trying to figure out how to use a list component to
    select 6 items from a large list, display the words to the 6
    selected items (in a text field), then finally (by pressing a
    button) I would like to load the 6 corresponding pictures for the
    selected items into a seperate frame. If there is anyone that could
    point me in the right direction it would be greatly appreciated. I
    have been trying to find information online about programming the
    List Component but haven't had any luck. Is there a book that
    anyone recommends that could help me? I've been doing simple
    animations and websites in flash but i'm now looking to learn some
    actionscripting as well. Thanks.

    Hi PinkPowerRanger,
    Per my understanding that you have two fields in the table "Date and Time picker" which is Date/time type and another is "Item ID", you need to get the Month from the Date field to display in the X-axis and count(Item ID) related to each
    month to display in the Y-Axis, right?
    I have tested on my local environment and can do this by create two calculated fields to get the month and year values from the Date/Time field.
    Details information below for your reference:
    Right click the main dataset to select the "Add Calculated field", specify an name of the new calculated field and add the expression in the field source as below:
    Year:    =Year(Fields!Date.Value)
    Month:  =MonthName(Month(Fields!Date.Value))
    Add the three field in the Chart as below and remember in the Value area you have got the Count(ItemID) but not SUM(ItemID):
    Preview you will got the chart like below:
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Difference in using the same component made in mxml or action-script

    Hi,
    I made a sample project to show a kind of bug in the SuperTabNavigator component of FlexLib
    In this sample you can see that using the same component (made in both mxml or action-script) can make a difference
    I'm just wondering why ?
    Thanks
    Here is what i've posted :
    What steps will reproduce the problem?
    1. Create a button to dynamically add new tab with icon on a SuperTabNavigator
    2. Click on this button to add new tabs
    What is the expected output?
    - The expected output is tabs added without abnormal behavior
    What do you see instead?
    - Every time a new tab is created the one who had the focus has its content
    (icon + label) moving from the top-left of the tab to its original position
    Please provide any additional information below.
    Configuration:
    - Flex Builder 3 in Eclipse
    - FlexLib 2.3
    Sample:
    (see attached file)
    There is two type of tab, one in action-script and one in mxml
    They both are equal
    - Adding a new action-script tab to SuperTabNavigator works fine
    - Adding the same tab but an mxml one doesn't
    - Adding a new action-script or mxml tab to TabNavigator works fine
    -> meanings that the issue comes with SuperTabNavigator
    - Adding a new mxml tab to both SuperTabNavigator and TabNavigator at the
    same time makes TabNavigator to get the same bad behavior
    Remarks:
    - Tried everything but i'm really stuck
    - Weirdly, removing the PopUpButton correct the issue
    - In the same way if you keep adding action-script tab it automatically scroll to the
    last tab. And if you do the same with mxml tab then it add the tab at the end and
    scroll to the first one.
    => what could be the difference between using action-script or mxml object ?

    Here is one possible solution:
    You can use the ExternalInterface (
    http://livedocs.macromedia.com/flex/2/langref/flash/external/ExternalInterface.html)
    class to communicate with JavaScript. JavaScript can then popup the
    media player very easily like this:
    http://www.webreference.com/programming/javascript/jf/column5/index.html
    The documentation on the ExternalInterface class has a nice
    example (in the bottom of the page) on how to communicate with
    JavaScript in a browser. Hope this helps,
    -george

  • Pausing slides using master slides and widgets

    Hi,
    Is there a better way that what we are doing becuase we ware wasting time and we put this process in pace in CP 5.5 and want to know what we can better in CP7.01
    We want to have our slides pause at the middle of each slide
    Currently
    - Our navigation buttons are on the master slide . These are custom static widgets to do forward and back because interactive objects cannot be put on master slides
    - so we add a hidden object on each slide to pause
    We have complicated branching becuase
    - we have glossaries and help
    - branched scenarios
    So we really need this to work releiably
    Problems
    - our widget doesn't show on the branched viewer
    - we make mistakes using the variable recording the previous viewed slide
    We were worried about using a playbar becuase it
    - allows you to exit assessments
    - allows users to skip our simulations
    regards Paul

    Your statement '..because interactive objects cannot be put on master slides' is no longer valid since CP6: there is one type of interactive objects that can be used on master slides (or timed for the rest of the project) which are the shape buttons. I have been talking a lot about them:
    http://blog.lilybiri.com/why-i-like-shape-buttons-captivate-6
    http://blog.lilybiri.com/toggle-shape-buttons
    http://blog.lilybiri.com/want-a-button-on-question-slide-in-captivate
    And I presented a webinar, info and link can be found here: http://blogs.adobe.com/captivate/2012/09/training-lilybiris-favourite-shapes-to-trigger-ad vanced-actions.html
    You could easily replace the static widgets by shape buttons, they are a lot easier to 'style' and very flexible.
    One example: if you want just to pause each slide, add a pausing shape button (transparent fill and no stroke) to the main master slide. Because there is no timing possible for objects on a master slide, that pause will always occur at the end of the slide, whatever its duration. You cannot time the pause! If you have a shape button with pause timed for the rest of the project, that pausing point will always be at the same absolute time (relative is not possible, thought I'd seen somewhere a question about pausing at half the slide duration but cannot find it in your text).
    I (almost) never use a playbar myself. It is only useful for simple linear projects.
    Lilybiri

  • Doubts while doing  example on WDJ-Using Web Dynpro Component Interface

    Hi
    I am doing the example mentioned in the PDF file WDJ - Using Web Dynpro Component Interface Definition.
    In the PDF file its mentioned the following code inside onActionCreateDC1:
    g_Usage.createComponent("com.sap.wd.childdc1comp.ChldDC1Comp");
    wdThis.wdGetWDCompInterfInstInterface().passInfo(
    "Created Child DC 1");
    I have one query that what is com.sap.wd.childdc1comp.ChldDC1Comp?Is it the component name of DC or the package name of DC?
    I have deployed the application.When i click on button Create Child DC1 i am getting follwing exception:
    com.sap.tc.webdynpro.services.sal.deployment.api.WDDeploymentException: Failed to load deployable object part 'com.wartsila.test.ChileDC1Comp', type 'Component' of deployable object 'wartsila.com/DP_TutWDInterfaces'.
    When i click on Create Child DC2 i am getting follwing exception:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException:Failed to create delegate for custom controller com.wartsila.test1.ChildDC2CompInterfaceCfg. (Hint: Is the corresponding DC deployed correctly? Does the DC contain the component?)
    Can anybody tell how can i solve it?
    Is it required to deploy the two child component also that is ChildDC1Comp and ChildDC2Comp?If yes then how to deploy these two child DC as when i am tryng to create application for these two component then default plug is showing blank thats why i am unable to deploy these child Dcs.
    Thanks
    Susmita

    Hi Susmita,
                      Is it required to deploy the two child component also that is ChildDC1Comp and ChildDC2Comp?
    Yes , u have to deploy both the components.
    when i am tryng to create application for these two component then default plug is showing blank thats why i am unable to deploy these child Dcs.
    U need not create an Application for deploying the component .Right Click on ur project --> Deploy.
    The problem is with ur Component, while creating a Component u should have created a Interface view and default StartUp plug.
    Just check whether u have Created the startup plug for ur interface view.
    Open the controller editor of ur interface view --> Select Plugs Tab .
    and in the plug tab , check whether u have Default Start plug (in Inbound Plugs Table).
    if there is no Default Start Plug , then click the Button New to create a Default Plug .
    in the pop up window -- select Stsrt Up and Give the name of the plug as "Default".
    After doing this , select the default plug and Right click on the plug -->copy  and Open the window Controller editor -- > select Plugs Tab --> check whether u have default plug (in Inbound plugs) in the Window controller .
    if the plug is not there , then paste the plug in the Window's Inbound Plug Table .
    Hope it helps
    Thanks and Regards

  • My screen opened, and with every click the page (letters/images) got bigger. I can not get it to return to normal image size. I have to use the slide bar to read across the page. What do i do to correct it back to normal size???

    Question
    My screen opened, and with every click the page (letters/images) got bigger. I can not get it to return to normal image size. I have to use the slide bar to read across the page. What do i do to correct it back to normal size???

    Hi jholzworth,
    It sounds like you might have accidentally hit the zoom button. Try hitting ''CTRL + 0'' to return it to normal size. Just so you are aware, ''CTRL'' and ''+'' will zoom in and ''CTRL'' and ''-'' will zoom out.
    Hopefully this helps!

  • Any sources for styling \ skinning the Slider component?

    Any sources for styling \ skinning the Slider component?
    ie setting the background invisible or using another graphic in place of the line/rectangle graphic.   using another graphic for the thumb.  replacing the current graphic thumb has restrictions in dimensions,

    :  http://flash.sikotiko.com/2009/05/05/as3-skinning-slider-component/

  • PSE10 Organizer crashes when using the "find a missing person" button

    I have been using PSE10 for about six months and have about 10500 images in the catalog, mostly digital but also some scanned slides I have been gradually adding.  All images have been added using the "find files" button.  I have been making use of tagging by using the people recognition routine and have reached the point where PSE10 says all people have been found.  Since then I have gone through about 1000 individual images using the "find a missing person" button with good success  until recently.  Now when I try to save the tag after using the button Organizer crashes with the message "Elements 10 Organizer has stopped working.  A problem has caused the program to stop working correctly.  Windows will close the program and will notify you if a solution is available".  I have tried optimizing and repairing the catalog without sucess.  I have also tried uninstalling and reinstalling PSE10, also without success.  The catalog is in a custom location but has been since shortly after I started using PSE10 and well before this problem started.  With the amount of time and effort spent doing this tagging I would not like to have to start over with a new catalog if a solution can be found.  My computer is Vista 64-bit with 8GB memory.  This problem is driving me nuts!! HELP!!

    Log Name: 
    Application
    Source:   
    Application Error
    Date:     
    6/17/2012 2:43:28 PM
    Event ID: 
    1000
    Task Category: (100)
    Level:    
    Error
    Keywords: 
    Classic
    User:     
    N/A
    Computer: 
    KenMary-office
    Description:
    Faulting application PhotoshopElementsOrganizer.exe, version 10.0.0.0, time stamp 0x4e5e9821, faulting module BreezeDB.dll, version 2.0.1.1, time stamp 0x4c7c52ec, exception code 0xc0000005, fault offset 0x00023fa6, process id 0x1318, application start time 0x01cd4cd20c7d9d2c.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
    <Provider Name="Application Error" />
    <EventID Qualifiers="0">1000</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2012-06-17T21:43:28.000Z" />
    <EventRecordID>93684</EventRecordID>
    <Channel>Application</Channel>
    <Computer>KenMary-office</Computer>
    <Security />
      </System>
      <EventData>
    <Data>PhotoshopElementsOrganizer.exe</Data>
    <Data>10.0.0.0</Data>
    <Data>4e5e9821</Data>
    <Data>BreezeDB.dll</Data>
    <Data>2.0.1.1</Data>
    <Data>4c7c52ec</Data>
    <Data>c0000005</Data>
    <Data>00023fa6</Data>
    <Data>1318</Data>
    <Data>01cd4cd20c7d9d2c</Data>
      </EventData>
    </Event>
    Thanks in advance for any help you can give me.  There were several error entries for PSE all of which had the same description up to but not including "process ID".  This was the result of restarting PSE10 several times.  Information above is from the last restart.

  • ShowTrackHighlight in spark Slider component

    how to use showTrackHighlight in spark slider component in flex 4

    Thanks for posting your solution to this. I used it successfully with Flash Pro CS5.5. It's necessary for a slider that might be used with a touchscreen. Other links that I found stated that thumb width and height could not be changed and that it was necessary to extend the Slider component to access these properties.
    MB

Maybe you are looking for

  • Report Layout Changed After Upgrade from 4.6C to ECC6

    Dear Gurus, I do functional test of every process in ECC6 after upgrade from 4.6C. I found all report layout changed without variant (it's happen to all Query/SQ01 reports ). So I've to assign manually the fields for the reports, and create a default

  • Adding a text layer over a sliced PS image

    Having trouble positioning a text layer over a PS sliced image. The sliced image is positioned relative to the center of the page (so it appears in the same place regardless of monitor size or resolution, and that's where I want it). I can position t

  • Process Flow in a distributed environment (OWB 9.0.4)

    Consider the following architeture: - ServerA in location1 is a Warehouse target - ServerB in location2 is a Warehouse target In this environment I want to do the following: 1) Extract some data from a sourcde system into a staging area on ServerA, a

  • Bad primary partition 3: Partition ends in the final partial cylinder.

    Hello! I am trying to install Arch linux and when i choose to manually create partition I receive the following error: FATAL ERROR: Bad primary partition 3: Partition ends in the final partial cylinder. Press any key to exit cfdisk The output of the

  • How can I do Shift operation in plsql

    hello, i want to know whether there is any package or operator to do the shift operation in plsql. like (myVar<<8 in c++).