Flash component in sap widgets using eclipse

How to use a c.FlashComponent of a eclipse for sap widget development.
I am not able to open or play  swf file in sap widgets using eclipse as development software.

I don't understand your explanation.
Is the SWFLoader loading a full SWF or an embedded symbol?  What is an invisible mode and how do you know it is in that mode?
Alex Harui
Flex SDK Developer
Adobe Systems Inc.
Blog: http://blogs.adobe.com/aharui

Similar Messages

  • Executing Java mapping for SAP XI using eclipse.

    Hi Experts,
    I want to create a java mapping for XI scenario in Eclipse IDE.
    Actually I need to import some jar files to get the following packages
    import com.sap.aii.mapping.api.*;
    import com.sap.engine.lib.xml.util.*;
    Can anybody tell me, where can I get these packages so that I can test my java mapping.
    Regards,
    Shri

    Hi Shripad,
    for location of jar files:->
               Ref : michal weblogs Frequently asked question.
    How to write java mapping and test->
               Ref:  Stefan weblog  How test simple java mapping.
    Before putting a forum, first go for search.
    Regards,
    Deviprasad.

  • Sizing a Scene7 flash component

    Does anyone know how to size a flash component? I am using the BasicZoom and Flash Flyout Zoom. Both seem to have a ton of unnecessary whitespace around them. I've seen smaller examples, but I haven't been able to figure out how to size them as cq:includes
    thanks

    The solution I came up with was to override the component and add properties to adjust the size of the Flash canvas and the viewport.

  • Error while installing SAP Widget Developer tool.zip on Eclipse Java EE IDE

    Hello,
              I am new to SAP widget. I hav installed "Eclipse Java EE IDE for Web Developers" from eclipse.org and now when i was trying to install SAP Widget Developer tool.zip add-on as stated in the SAP Enterprise Widget Development Guide
    --> http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/c032ae0a-7d6b-2a10-14a1-cc6efb066dfc
    I get this error at the last stage of installation.
    Cannot complete the install because one or more required items could not be found.
      Software currently installed: SAP Widget Development Tools 0.13.0.1376 (corp.sap.pal.gadgets.tools.widgetTools.feature.group 0.13.0.1376)
      Missing requirement: SAP Widget UI Designer 0.13.0.1376 (corp.sap.pal.gadgets.tools.uidesigner 0.13.0.1376) requires 'bundle org.eclipse.wst.javascript.core 0.0.0' but it could not be found
      Cannot satisfy dependency:
        From: SAP Widget UI Designer 0.13.0.1376 (corp.sap.pal.gadgets.tools.uidesigner.feature.group 0.13.0.1376)
        To: corp.sap.pal.gadgets.tools.uidesigner [0.13.0.1376]
      Cannot satisfy dependency:
        From: SAP Widget Development Tools 0.13.0.1376 (corp.sap.pal.gadgets.tools.widgetTools.feature.group 0.13.0.1376)
        To: corp.sap.pal.gadgets.tools.uidesigner.feature.group [0.13.0.1376]
    Please helo me to get this error fixed.
    Thank you very much.
    Anil Raparthi.

    Hi,
    The newest and default version of Eclipse is Galileo which is version 3.5.x
    According to the Widget development guide, widget developer tool covers Eclipse 3.3.x (Europa) and 3.4.x  (Galileo).
    The problem is solved by downloading one of those versions from http://wiki.eclipse.org/Older_Versions_Of_Eclipse and installing widget development tools.
    Regards,
    Jolanta Gniadek

  • Where is the "done" button in Flash CS4 when using Flash Builder 4's new flash component or container?

    The documentation for Flash Builder 4 beta says that after opening flash from flash builder, I should click a "done" button in flash and flash should close and what I created in flash should be included as a component or container in Flash Builder.  Using the Flash Builder 4 beta on Windows, when I click on the "create in flash" button on the properties panel for either the new flash component or container, Flash CS4 opens, I create something in Flash and no "done" button is present.  Nor is anything present in the menus resembling a "done" option.  Where is it?

    Hi Jeffrey:
    Still no done button.  Now under commands in Flash I can convert symbols to flex components and containers and these show up in the Flash library.
    Thanks:
    Jim
    Date: Wed, 30 Sep 2009 09:58:10 -0600
    From: [email protected]
    To: [email protected]
    Subject: Where is the "done" button in Flash CS4 when using Flash Builder 4's new flash component or container?
    Hi,
    You may need to install FlexComponentKit.mxp to your Flash CS4 beforehand.
    Jeffrey
    Date: Tue, 29 Sep 2009 17:04:36 -0600
    From: mailto:[email protected]
    To: mailto:[email protected]
    Subject: Flex Where is the "done" button in Flash CS4 when using Flash Builder 4's new flash component or container?
    I apparently didn't get one.  I've looked under various workspace configurations.  Another thing that seems odd is that when Flash opens I get the opening panel that allows me to select the type of file and version of AS I want to use.  I select new file with AS3.  Any ideas on why the "done" button wouldn't be present and if the opening panel is what I should expect on opening Flash after clicking the "create in Flash" button?
    >
    >

  • Using Flash Component

    Will Apple reject a Flash iPhone app that uses a Flash component? I want to create the app with a Flash plug-in component.
    Thanks.

    I don't understand your explanation.
    Is the SWFLoader loading a full SWF or an embedded symbol?  What is an invisible mode and how do you know it is in that mode?
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Animated Flash Component Scaling when used as Button Skin

    I am trying to skin the overSkin of a Flex Button component with an animated Flash .swc component. (Actually, an Accordion Header, but for all practical purposes the same.)
    All works completely fine, in most cases.  The problem I run into is when I have any objects in the Flash animation moving on and off stage.  When this happens, although the objects cannot be seen when moved off-stage, the viewable area of the Flash animation scales down in either direction, or both, to make room in the button for the objects off stage.
    If I play the animation directly in the application, or a Canvas, everything works fine and no scaling occurs.  But for a Button, where I really need it, I get the constant scaling back and forth as the Flash movie runs.  This can be REALLY annoying when trying to click on a button! (Or you find that you are no longer "over" the button (because it scaled down) so you get flicker back and forth between the Up and Over states.)
    Any ideas on how I can keep this from happening, either on the Flash or Flex side would be much appreciated.
    Pertinent Code:
    [Bindable]
    [Embed(source="assets//btn_StaticHollywood.jpg")]
    private var Film:Class;
    [Bindable]
    [Embed(skinClass="fc.HollywoodWithSearchlights")]
    private var FilmOver:Class;
    animatedButton.setStyle("upSkin", Film);
    animatedButton.setStyle("overSkin", FilmOver);
    <mx:Button id="animatedButton" cornerRadius="0" />
    Note: I tried all assortments of setting dimensions I believe.
    Remember, the Flash component has objects that move in and off the stage from both directions, and this is the cause of the automatic resizing of the Button when it runs.

    I am assuming that you are using Flex 4 and this does not work. In Flex 4, the default theme used is the "Spark" theme. In Flex 3, we used the "Halo" theme. The Halo theme supports styles like borderStyle, but, the Spark theme does not.
    If you want to use these styles, you will need to compile with the Halo theme. You can do this by adding an additional compiler argument -theme=<SDK_DIR>/frameworks/themes/Halo/halo.swc (point to the halo.swc in your SDK installation)
    Joan

  • Setting Up SAP JVM in Eclipse IDE: JRE name is already in use

    In documentation "Setting Up SAP JVM in Eclipse IDE" (https://help.hana.ondemand.com/help/frameset.htm?7613eaad711e1014839a8273b0e91070.html) a definition for a JRE must be added, although in step before that one a JRE has been created.
    If one tries to really add another definition and chooses the directory C:\...\sapjvm-7.1.018-windows-x64\sapjvm_7, then the message comes up: "The JRE name is already in use".
    Was the wrong directory choosen, is this action really needed, what please has to be done at this point during Getting Started?

    The directory is correct. However, if you have already started Eclipse with that JRE, it is automatically added to the list of Installed JREs. Hence the "name already in use" message when you try to add it again manually. In short, you can safely skip this step now.

  • Problem with Plugin Installation of SAP widget Developement tool in Eclipse

    Dear All
    I am faceing problem while installation of SAP widget Developement tools in Eclipse. Please help me Out.
    I have Downloaded Eclipse and also SAP Widget Developement tools.zip
    When I try to Install the Plugin for SAP Widget developement I get an error saying "Install has encountered a problem.Cannot Complete the install because one or more required items could not be found". When I  click on Detail to see teh details following error log is displayed :
    +Cannot complete the install because one or more required items could not be found.
      Software currently installed: SAP Widget Development Tools 0.13.0.1376 (corp.sap.pal.gadgets.tools.widgetTools.feature.group 0.13.0.1376)
      Missing requirement: Structured Source JavaScript Model 1.0.101.v200706071955 (org.eclipse.wst.javascript.core 1.0.101.v200706071955) requires 'bundle com.ibm.icu [3.4.4,4.0.0)' but it could not be found
      Cannot satisfy dependency:
        From: SAP Widget UI Designer 0.13.0.1376 (corp.sap.pal.gadgets.tools.uidesigner 0.13.0.1376)
        To: bundle org.eclipse.wst.javascript.core 0.0.0
      Cannot satisfy dependency:
        From: SAP Widget UI Designer 0.13.0.1376 (corp.sap.pal.gadgets.tools.uidesigner.feature.group 0.13.0.1376)
        To: corp.sap.pal.gadgets.tools.uidesigner [0.13.0.1376]
      Cannot satisfy dependency:
        From: SAP Widget Development Tools 0.13.0.1376 (corp.sap.pal.gadgets.tools.widgetTools.feature.group 0.13.0.1376)
        To: corp.sap.pal.gadgets.tools.uidesigner.feature.group [0.13.0.1376]+
    I require your help in this .
    Regards,
    Nikhil

    Hi Nikhil,
    Looks like some problem in the eclipse version.
    Refer to the last point in this link - [Error while installing SAP Widget Developer tool.zip on Eclipse Java EE IDE; which says -
    "The newest and default version of Eclipse is Galileo which is version 3.5.x
    According to the Widget development guide, widget developer tool covers Eclipse 3.3.x (Europa) and 3.4.x (Galileo).
    The problem is solved by downloading one of those versions from http://wiki.eclipse.org/Older_Versions_Of_Eclipse and installing widget development tools."
    Hope this helps.
    Regards,
    Shilpa B.V

  • May i use flash component for develop IPhone application?

    Hi all,
    Actually i have flash cs4 pro, so first i develop my small application using flash component like datagrid, button and input text.
    After my completion my program, I will perches flash cs5 pro. Please suggest?
    Regards,
    Kartikeya Sharma

    it doesn't.
    but you can build iphone apps using flash and you can use flash components to build those apps (which was the answer to the op's question).

  • SAP Widget Templates (0.12.0.1167) requires feature "org.eclipse.gef (3.3.0

    Hi,
    i followed the steps in the development guide in (https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c032ae0a-7d6b-2a10-14a1-cc6efb066dfc ) however , at page 13-15th step, i got these errors 
    "Requested operation cannot be performed because it would invalidate the current configuration. See details for more information.
      SAP Widget Templates (0.12.0.1167) requires feature "org.eclipse.gef (3.3.0)", or equivalent.
      SAP Widget UI Designer (0.12.0.1167) requires feature "org.eclipse.gef (3.3.0)", or equivalent."
    Can someone please tell me the link to get these features or pluggins?
    Regards,
    Soon Wee

    Hi,
        I am having the same exact issue. Could any of you get the resolution ?
         I tried the link suggested by Viswas, and downloaded the Eclipse GEF 3.3.2 zip file and extracted it. But still am having the same issue and getting the message "SAP Widget Templates (0.12.0.1167) requires feature "org.eclipse.gef (3.3.0)", or equivalent".
    Please give me some hints, I am totally stuck. Any help would be greatly appreciated.
    Thanks.

  • Error while Installing and Starting SAP Widget Development Tools

    Hi All,
    I have downloaded Eclipse: eclipse-SDK-3.3.2-win32.zip from http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/R-3.3.2-200802211800/eclipse-SDK-3.3.2-win32.zip
    I am following the link: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c032ae0a-7d6b-2a10-14a1-cc6efb066dfc
    for Installing and Starting SAP Widget Development Tools as an Eclipse Plug-in
    I am very new to it, So I was following Step by Step procedure.
    On the 16th step I am getting an error:
    AP Widget Templates (0.12.0.1167) requires feature "org.eclipse.gef (3.3.0)", or equivalent.
    I had download the SAP Widget Development Tools.zip file from https://www.sdn.sap.com/irj/sdn/downloads?rid=/webcontent/uuid/b03b6544-c741-2a10-8999-ed04eb2b2c71
    While unzipping the eclipse-SDK-3.3.2-win32.zip, there were two errors:
    The System cannot find the file specified &
    The file name or extension is too long.
    I ignored them and continued the unzipping.
    Please guide me as to how we can solve this error.
    Ankur
    Is it because I am using Eclipse 3.3.2 and not 3.3.0? If yes from where I can download Eclipse 3.3.0
    Edited by: ankur malhotra on Jul 25, 2008 7:36 AM

    Hi Ankur,
    This happens sometimes because of the Eclipse that you use. Download the Eclipse JEE Version. When you go to eclipse.org and try to download eclipse you can do a comparision of the versions there, You download the version which supports all the web features.
    http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/ganymeder
    Check the above link you will be able to see the package details. Please download this Java IDE for EE developers and try installing the SAP widgets foundation then, If you are facing any problems in installing the plugins thru local archived site please let me know.
    Regards,
    Sai

  • Table component crashes Yahoo Widget Engine

    Experts,
    I've been diving into widgets recently, seem to have found a bug and was wondering if anyone else has encountered it or has found a solution. The steps to reproduce the error is as following:
    - Generate a kitchen sink widget from eclipse.
    - Run it.
    - Open the Table component example in the menu, maybe even click a row.
    - Right click the widget and close it.
    - A crash report of yahoo widgets pops up.
    This sometimes occures when using the sort button of the table and only occures when tables are used. I have tested this on an updated unclean and clean xp install of a Dell Latitude D830 and HP dv9064 pavilion. The main similarity is that both use an nVidia card.
    The machines are using Java 1.6.0_13, Yahoo widget engine 4.5.2, eclipse 3.4.2, XP SP3 Pro and Mediacenter edition.
    I'm assuming the problem lies with the code of Yahoo (widget framework) or Cairographics (gui framework) but was wondering nontheless whether I'm the only case of this issue.
    Edited by: Olivier Schietecat on Jun 25, 2009 2:19 PM

    Hi!
    I think that problem exist because MS SQL 2008 SP2 is used with MS DMP 2010.
    But I can't create backup DPM databases - solutions described in article submited by you doesn't work.
    c:\Program Files\Microsoft DPM\DPM\bin>DpmBackup.exe -db -instanceName MSSQLSERVER -certificates
    DpmBackup 1.0 - Data Protection Manager backup command-line tool
    Copyright (c) 2010 Microsoft Corporation. All rights reserved.
    Error: Failed to connect to server BRONZYT\mssqlserver.
    DpmBackup encountered an internal error. Check the Application Event Log for the
    cause of the failure. Fix the cause and retry the operation. For additional tro
    ubleshooting information, see the DPM Troubleshooting Guide.
    Can I do DPM database backup in another way e.g. SQL Management Console before reinstalling MS SQL 2008 and DPM 2010?
    I can't lose my DPM server data.
    Wojciech Sciesinski

  • Cannot install SAP Widget Foundation

    Hi there,
    i want to install the SAP Widget Foundation. But the following error occurs:
    C:\TEMP>C:\j2sdk1.4.2_18\bin\java -jar C:\TEMP\SAPWidgetFoundation.jar
    Exception in thread "main" java.lang.UnsupportedClassVersionError: corp/sap/pal/
    ewcs/wizard/installer/SimpleWizard (Unsupported major.minor version 50.0)
            at java.lang.ClassLoader.defineClass0(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:12
    3)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    Can anybode help in here?
    Thanks
    Bjoern

    Hi bjoern,
    You need to Install Java 6 Runtime Environment. I can see that you are using Java 14. SDK. This will not support SAP Widget Foundation. You can download Java 6 [from here|http://java.sun.com/javase/downloads/index.jsp].
    Thanks,
    Sai

  • Solution Manager - Logical Component for SAP Netweaver EHP2

    Hello,
    I installed the newest SAP Netweaver Ehp2 (with usage type AS ABAP only) for a future integrating with BI_CONT (SAP BI requirement). So... what I want to know is... I want to do an update of support packages to the latest Stack (SPS) and in this product version (NW EHP2) the latest stack is stack 06 !! But I ´m facing with a problem which is, because I have to maintain this system in Solution Manager (for Maintenance Optimizer activity)...so what I want is configure this new system on Solution Manager Ehp1 (with SPS 23) but in tcode SMSY I didn´t found this Product in Logical Components for I can apply this system to my Solution... I only see SAP Netweaver with EHP1 and not with EHP2 which is the version that I want to apply this new system. (This is mandatory task, because without it, I will not be able to download the support packages for NW 7.0 EHP2)
    Tell me two things... first if this level version of Solution Manager that I have here (SPS 23) have this product in logical components, and two... if not it, is necessary to raise the level of Solution Manager support packages (to latest stack SPS 25) for I can see that logical component SAP Netweaver EHP2?!
    Thank you very much
    João Dimas - Portugal

    Hi João,
    You can verify if the EHP2 is available (if) in your system, this can be done once you are in SMSY -> Product Definitions -> SAP Netweaver where you should able to see the EHP2. If so, then it's a matter of marking the leading Product & Product Version under the Header Data ->Change Product Assignment where you can use the drop down arrow to select the Product and Product Version. If it's not available, then by checking the 'Free Product / Select Product Version' then use the drop down arrow to select the product & Product Version, once you selected that then click on copy and mark that as active and save.
    Then you need to create a new logical component in System Group & logical Component under SAP Netweaver, then assign the system to the logical component. Once this is done you can use the logical component in a solution and create a maintenance transaction.
    I hope this help you to proceed further, thanks.
    Jay Soma.

Maybe you are looking for

  • Macbook 2011 being dysfunctional unexpectedly

    A well-treated and regularly checked Macbook Pro (September 2011) is behaving really oddly. Whenever anything has been wrong with it, I have had it fixed or repaired or checked. It has had its hinge and optical drive replaced in its time, and in July

  • Document not posting through F-02 BDC in background.

    Hi, While trying to post park documents for a company code through F-02 using BDC in background mode N, when any single document is having any error then all the documents for that company code are going in error state and not getting posted.When che

  • Exit for changing Components in ME21N based on the production Order

    Hi,       I have a scenerio in which, while creating PO in ME21N for subcontracting(Item category 'L') against a PR, the components for the material should come with my own logic i.e. it will have its production order number, with this production num

  • AdHoc Query Issue

    Hi Gurus, I am running 1 Adhoc Query.We are getting an error in Job description. We are passing Job code as input.For that job code it is not displaying Corresponding Job description. Ex :  Job Code -  - - -  1126 This is the Data avilable in table M

  • Digital audio watermarking

    Hi, I am doing a project named digital audio watermarking using java. I have completed encryption module. Now i am struggling with inserting text into audio files. could anyone help me?... thanks in advance... Muthukumar