Need Adobe Flex User Experience Designers & Developers - SF BAY AREA

The User Experience Designer will provide the necessary services requested by Business Partners for critical initiatives such as the National Agreement Implementation, Employee Portal Framework, KP Intranet and Clinical Library.  You will also provide services as requested to additional clients including projects such as web sites, Flex applications and application support.  This position will be based in Pleasanton, CA and will require travel to Oakland and other locations for projects, development and meetings.
Essential Functions:
Design, code, test, deploy, and maintain intranet sites and applications, working both independently and in team settings.
Develop CSS standards and strategy across the intranet environment, encompassing portal framework.
Scope new project work and create detailed project cost estimates, plans, and schedules.
Assist staff in web site maintenance, design and development for existing sites and applications.
Incorporate RIA elements when prudent.
Design within existing brand standards, and test for cross-browser compatibility.
Use knowledge of Section 508 accessibility compliance when applicable.
Work with developers to integrate front-end code with back-end functionality, while maintaining code compliance and consistency.
Help developers and development teams troubleshoot and fix UI problems.
Develop resolutions, recommend solutions and build action plans as needed.
Can independently perform, guide, assist or mentor others in web development and maintenance using industry best practices and specific internal procedures and standards in all phases of development, implementation, and post-implementation.
Minimum Technical Skills Required:
4 years experience Adobe Dreamweaver (CS4)
4 years experience HTML/XHTML and CSS
4 years experience Adobe Photoshop and Illustrator (CS4)
1 year experience with JavaScript, AJAX, DOJO and SPRY
3 years experience with Microsoft OS
Skilled in Microsoft Office Productivity Tools
Basic Qualifications:
Bachelor's degree in Computer Science or equivalent skills and experience.
5 years relevant work experience with solid hands-on experience in design and build activities.
5 years experience in estimating, planning and coordinating multiple projects.
Experience delivering on enterprise level projects in large companies; familiar with a variety of back-end middleware and endpoint tools.
Exhibits excellent attention to detail and diligently follows through to resolve issues.
Consistently demonstrates flexibility, organization and prioritization of tasks.
Experience working collaboratively with non-technical users.
Good communication skills both verbal and written form.
Ability to work independently with minimal guidance and as a member of a team.
Knowledge and understanding of Intranet, Web development best practices, usability and current code standards.
Preferred Qualifications:
Experience with Adobe Flex, IBM WebSphere, RAD 6 or 7, Adobe Flash and/or RIA
Experience with TeamSite Content Management
Experience with Web Standards and usability testing
***CANDIDATES SHOULD BE LOCAL TO THE SF BAY AREA***  Please contact me here or call 925.924.6359.

people complaining about problems installing an office over another office are (dare i say it) stupid. it makes absolutely no sense installing one over the trial version. just uninstall the trial and you'll be fine. every single time.
as for problem with uninstalling mcafee (or any other antivirus, for that matter, just download the uninstaller from the software company e.g. http://service.mcafee.com/FAQDocument.aspx?id=TS100507 for mcafee.
that said i believe you get to choose if you want mcafee and/or office when you go through the inital boot, the "on-screen instructions"
you can slow down the odd via power manager
and thanks for the tips on changing the reg to have the user profiles somewhere else!
T400s - 2815RW1 + Win7 Ultimate
Don't pm me for help! That's what the forum is for. Also, Google's nicer than me. Ask him.

Similar Messages

  • Support for Adobe Flex

    Hi All,
    Is Adobe Flex supported in R/3 4.7? If not, what other components or stand alone engines are required to support it?
    Regards,
    Masoud

    Hi,
    It is not possible to develop RIA application in 4.7.
    For adobe flex you will need to upgrade the system to ECC 6.0 and Netweaver 7.0. And also you will need adobe flex builder.
    for more information
    /docs/DOC-8535#section14 [original link is broken]

  • Crossdomain.xml issue - Accessing SAP from adobe FLEX

    Hi All,
    We are in the process of trying to integrate 4 SAP bapis exposed as Web services from adobe flex.
    When we do so we are getting a "security error accessing URL"
    The URL of our flex application is:
    http://10.10.0.48:8081/water0305/iden.html
    The WSDL of the web service is:
    http://10.10.0.66:8001/sap/bc/srt/rfc/sap/ZKK_BAPI_EQMT_DETAIL?sap-client=800&wsdl=1.1
    We looked at various forums and we found that adding a crossdomain.xml file to the root directory
    (at the destination server) will resolve the issue.
    I did implement all those steps on the R/3 side to add a crossdomain.xml to an ABAP WAS.
    crossdomain.xml on WAS
    however i still get those errors(security error accessing URL).
    Below is the code i use to access the SAP web service
    <mx:WebService
    id="EqmtDetailWS" showBusyCursor="true" fault="Alert.show(event.fault.faultString)" >
    <mx:operation name="EqmtDetail" resultFormat="e4x" result="getEquip_result(event);" fault="getFault(event);">
    <mx:request>
    <Equipment></Equipment>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    We are  displaying the SAP info on a map service provided by esri so we included the load operation here.
    <-Loading the wsdl->
    private
    function onExtentChange(event:ExtentEvent):void {
    EqmtDetailWS.wsdl=
    "http://10.10.0.66:8001/sap/bc/srt/rfc/sap/ZKK_BAPI_EQMT_DETAIL?sap-client=800&wsdl=1.1&sap-user=******&sap-password=****&sap-language=EN&~transaction=iw51";
    EqmtDetailWS.loadWSDL();
    <Displaying the info from SAP>
    private function getEquip_result(event:ResultEvent):void {
    equip_desc = event.result.Equitext.Equidescr;
    txtAreaEquipDetail.htmlText = txtAreaEquipDetail.htmlText + "Equi. Desc. : " + event.result.Equitext.Equidescr + "\n";
    var material:String=event.result.Equimaster.Material;
    SAPIDAliasEquipDesc =event.result.Equitext.Equidescr;
    material=material.substring(14,18);
    txtAreaEquipDetail.htmlText = txtAreaEquipDetail.htmlText + "Material : " + material + "\n";
    txtAreaEquipDetail.htmlText = txtAreaEquipDetail.htmlText + "Serial No : " + event.result.Equimaster.Serialno + "\n";
    var costcntr:String=event.result.Equilocation.Costcenter;
    costcntr=costcntr.substring(7,10);
    txtAreaEquipDetail.htmlText = txtAreaEquipDetail.htmlText + "Cost Center : " + costcntr + "\n";
    CustomerID = event.result.Equisales.Customer;
    This is how we load the policy file.
    Security.loadPolicyFile(
    http://10.10.0.66:8001/sap/bc/bsp/sap/zroot/crossdomain.xml);
    This works fine when we run it from the IDE but throws up an error when we deploy it on the server
    So are we missing something ?
    Is there anything else to be done to overcome the security issue ?
    Thanks in advance.
    Regards,
    Karthik.

    Hi Rich,
    I followed the steps in your video when our system was R/3 4.7 (WAS 6.20) and the test worked fine, i.e. accessing the crossdomain by typing http://server:port/crossdomain.xml.
    I followed the same steps with our new version (we're undergoing an upgrade) but I kept getting the error message:
    "BSP Exception: the BSP URL /crossdomain.xml Does Not Contain Any Application Entries".  Then I saw Ivan post suggesting implementing OSS Note 1260386.  I applied the Note but I got the same error message. 
    Then I ran function ICFBUFFER_INIT to make sure the buffer is cleared, cleared the cache in the browser and still got the same error message.
    Our system is ERP 6.0, NetWeaver 7.0, level 17 (BASIS Component is SAPKB70017).
    Please help.  Thank you.
    Achille.

  • Need your suggestions for developing a Forum Site using Adobe Flex

    Hi ,
    I want to develop a small Forum Site where people can post questions and reply to questions .
    I want to develop the whole thing using Adobe Flex , Is there any plugin avialable for this .
    Means i mean to ask , if i go for normal J2EE there is a JForum avialable as far as i know .
    Please share your ideas .

    I meant "Don't use flex" unless you have some superb new design for a forum. I suspect that if you already had such a design, you wouldn't need to ask the question. Flex for Flex sake isn't good.
    There are already great html forum solutions out there.
    Basically, there's no point in duplicating in Flex what is already done in HTML, unless the Flex version offers a significant improvement to the user experience in some way.
    I am not aware of any Flex forum implementations and there is probably a good reason for that.
    Maybe someone else will know of one.

  • Adobe AIR Needed on Android / iOS to Run Adobe Flex Apps

    Hi all,
    I want to confirm if the user has to install Adobe AIR before launching Adobe Flex apps on Android and iOS Devices. Is there any way that we could embedd Adobe AIR setup in the app file so that the user dont have to hastle in installing Adobe AIR.
    Taimur

    It gives you only three options:
    Signed packages for each target platform.
    Signed AIR package for installation on desktop.
    Intermediate AIRI package that must be signed later.
    For mobile apps, we need to select the first option to get the .apk and .ipa file as the second option would generate .air file. None of the options offer to package AIR runtime. Only the first option gives you the option on NEXT window to include the download link of AIR Runtime.
    If i am wrong, kindly point me to that specific checkbox.
    OR do i have to put Runtime.apk in the assets folder of my source code so that it gets packaged?

  • Adobe Flex Software Engineer Needed for Start-up Company in Pittsburgh, PA

    Flex Programmer/Developer/Coder – Pittsburgh, PA
    ComPePrice LLC is looking for Adobe Flex developer.
    * Requirements:
    • 1+ years experience programming with:
       o Object-oriented development in ActionScript 3.0/2.0 with Flex/Flash
       o Creating custom components using both MXML and ActionScript
       o Remoting data services such as Blaze DS
       o XML and schema definitions (XSD)
    • Knowledge of software lifecycle best practices including:
       o technical requirements analysis and documentation, source control systems, issue tracking systems, and testing & validation.
    • Attention to detail; ability to solve problems; ability to learn and adapt to different technologies.
    • Java, SQL, Relational database systems, and UML experience a plus.
    * Overview of ComPePrice.
    ComPePrice LLC, is a Pittsburgh-based online start-up company founded in 2007. The company is managed by 3 team members together with experts and advisors from professional industries and the Carnegie Mellon community. Currently, ComPePrice is the parent company of an online video sharing company providing users a collaborative environment to create, share, and organize content with their communities. ComPePrice hopes to shape the next era of online video sharing by offering tools for users and businesses to efficiently share truly informative videos.
    The management team is currently raising seed investment to gather an IT development team.
    * Products and Services:
    ComPePrice’s newly formed online venture will provide the following:
    • Products:
       o Video Mapping Tool: Our patent-pending online tool will enable users to collaborate to efficiently search and navigate and generate informative,    valuable videos.
       o Video Information: Using our patent-pending Video Mapping Tool, users will collectively create videos that eliminate redundant or meaningless videos, thus forming a knowledgebase for business partners.
       o Advertising Tool: Marketers can effectively promote their businesses by adding their marketing messages to the various channels available through our website and the Video Mapping Tool.
    • Services:
    We will provide customized or consultancy services to businesses who wish to utilize our Video Mapping Tool to their websites by means of licensing or subscribing to our service.
    * Divisions/Departments:
    Management Team (Strategy & Planning, Marketing, Sales) and IT Development Team (System Administration, Software Engineering, Database Management, Product Development)
    * Achievements:
    ComPePrice currently holds two patent-pending business methods,
    Interested, please send your resume to [email protected]

    Please post this in Flex.org

  • How can I have my adobe flex application scale to fit the users screen ?

    I have been looking on google and couldn't find a answer. I have a application I created in adobe flex and I need it to scale to the users screen and fill the entire browser window no matter what.

    If you want your application to fill the user's whole screen you could set it to be in FullScreen
    Application.application.stage.displayState = StageDisplayState.FULL_SCREEN
    Write the above code into the callback of "applicationComplete"
    Hope this helps

  • Bad user experience/errors with Adobe Air widget installation

    I'm having a nervous breakdown at work (it's 10pm and I'm
    still in the office), an Adobe Air widget application I've built is
    somehow causing the client to panic (they can't install or run the
    Adobe Air installation or the widget and now they feel all their
    users are having the same problem). If anyone has a minute to try
    this out and let me know if the widget installs correctly of if you
    have any recommendations on a better user experience I'll greatly
    appreciate it. The client is receiving an error message when
    installing Adobe Air (error 0 or something).
    widget is on the bottom left (installs for PC and Mac). If
    the widget installs without any glitches please let me know. God
    bless.
    http://stayonhermind.com

    The application installed just fine for me. I'm running
    Windows XP SP2 and I already have AIR 1.1 runtime installed.
    I do have a few suggestions for improvement though! Just take
    or leave any or all of these! :)
    In your popup you say,
    "Before installing the 9IX Rules Widget verify that
    you’re running the latest version of Adobe Flash."
    Is this really a necessary requirement? If you are
    downloading the .air I think it would not matter whether or not you
    have Flash installed.
    Then you say,
    "After installing Adobe Air (link below), return to this page
    and re-install the 9IX Rules Widget. Install Adobe Air Now .
    Otherwise click on the button below (the widget install button)."
    I understand you are trying to make this easy for people but
    to me this seems confusing.
    <GENERAL AIR COMMENT>
    If someone does not have AIR runtime already installed I
    thought running a .air would trigger the download and install. If
    not this gets pretty complicated. How do you test if they have AIR
    or not? And since most will not at this early stage how dow we
    educate end-users to even know if they have it or not?
    </GENERAL AIR COMMENT>
    You should digitally sign your AIR app so it does not say
    Publisher: UNKNOWN with the big red "?" icon!
    I would recommend against using all caps in your messages.
    I would recommend choosing a better font (maybe a pixel font)
    since the message text is a bit blurry.

  • Need information about Adobe Flex and WD

    Hello SDN!
    We try to decide is it possible to use Adobe Flex with WD java for us. So I need to know information like:
    1) hardware requirements
    2) software requirements (e.g. which versions of SAP NetWeaver are supported, which IDEs are supported and so on)
    3) what about licenses - is it free or it necessary to buy it?
    4) Adobe Flex and Adobe Flash are the same things or not
    5) any other useful information
    regards, Lev

    Hi Tarun,
            You can follow these links for more information
    http://help.sap.com/saphelp_nwce711/helpdata/en/48/825afcf53d3ff6e10000000a42189c/content.htm
    http://www.adobe.com/devnet/sap/articles/understanding_richislands.html
    Hope it helps.
    Regards
    Uday

  • Tour de Flex Samples needed Adobe AIR plugin to PC to run ?

    Where I may find free/open-source sample autonomus Adobe AIR Apps?
    How I test if Adobe AIR success installed?
    Tour de Flex Samples needed Adobe AIR plugin to PC to run ?

    Hello,
    Solution is very simple, just uncheck the "Group items  by category"  to display last version of  Tour de Flex feauture which is default checked
    and if you uncheck the "Show only the latest versions.." you will see all other versions.
    Regards,
    Goze

  • Nokia E6-00 User Experience and Development needed...

    My Mobile Details:
    Device Info:
    Model E6-00
    Product RM-609
    OS : S60 5.1 (Symbian ^3)
    Symbian Symbian^3
    Firmware 021.014
    OS 5.2 ; QT 4.7.3 ; QT Mobility 1.0.2
    Messaging : (SMS)
    * You cannot save the sortby settings . Only for the instance view you can sort the message by date,sender. once you go out of the inbox and come back again , by default its sorted only by date
    Profiles :
    * Themes settings are not included in profile. You cannot have unique themes for each profile. Themes settings applied to the phone. So the feature we had in ordinary nokia basic phones where , if we change our user profile , the theme which we selected for the particular profile will be applied is not available in this high end business phone. Need Development
    Music (Music Player):
    * You cannot set the customer equaliser, only 5 preset are available bass booster, classical , jazz, pop, rock, default preset.
    * In playlist sorting feature is not available. Moving the songs becomes difficult by using move by option. if there is drag & move feature , it will be good.
    * You cannot move to the Next song on the go. You need to open your phone , use widgets to skip the song. If the mobile volume control (up/down key) long press helps us to move next song it will be good. Need modification in the firmware.
    Videos :
    * Moving to the Next video is not possible with the video player, only fast forward works. Next option is not available. You need to go back and select next song
    Mails :
    * Only 250 mails you can store on your inbox , Size limitations matters
    Taskmanger:
    * Task Manager application , is not available . To look at your phone memory utilization , Network bandwidth, RAM Memory etc...
    About (i) under phone management :
    * It doesn't even shows your mobile model , IMEI no , IMSI etc... Memory used Phone memory, mass storage, Memory card memory status. It Gives only Info about Nokia Corporation , Which is of No use.
    I Hope this features will be included in next software update. As its the New Version of Anna OS. Waiting for someone to look at this post and reply.
    Any additional info needed , feel free to contact me.
    Thanks & Regards,
    Raja Gopalan S
    Community Manager's note:
    Corporate identity details removed,

    I'm generally disappointed with the user experience and functionality offered by Symbian Anna on the E6 too. It's ok but nothing to shout about at all, especially considering that it is supposed to be the current pinnacle of Nokia's offerings in the smartphone market.
    The last Symbian/S60 phone I had was the Nokia 3230 about six years ago and apart from the very obvious cosmetic changes as far as I can tell there have been few other leaps forward.
    This perception can often be down to the little things, the numerous little functions, user choices and options that an operating system could have.
    Silly things like I can't choose which folder the camera saves pictures to. My two year old 6700C running Series 40 lets you do that, Anna doesn't. Come on catch up!
    Oh and when you enter the directory in which images are saved, Series 40 gives you a little thumbnail preview in the listing. That's a bit too much for Anna.
    The Anna media player doesn't even equal the functionality of that on the 6700C. Some might say the E6 isn't a  "music" phone but then neither was the 6700C and it's two years old now. Come on Anna, catch up again!
    Anna will not let you directly access the folder in which the stock ringtones are located. So you can't delete the unwated ones or add new ones to it to keep them all in one place. Guess what? Series 40 on the old 6700C lets you do that.
    ... and don't even get me started on the disorganised unintuitive mess of the photo viewer application.
    I'm now thinking that Anna is just a cosmetic facelift to Symbian to bridge the gap between now and when the Windows 7 Mobile devices are released. In places, Anna doesn't even compare well against Nokia's own feature phone OS.

  • User Experience Analyst / Information Architect Job Opening

    Title:
    User Experience Analyst / Information Architect
    Job Qualifications:
    - Rich Internet applications (RIA) and Adobe Flex application
    integration experience are required
    - Has superb interpersonal and communication skills, able to
    face clients to identify their needs and communicate design
    rationale
    - Minimum 6 years experience as a User Experience Analyst or
    Information Architect
    - Excellent knowledge of Adobe graphic design applications
    such as Photoshop, and Illustrator
    - Able to create and define user interaction flows and page
    architecture
    - Possesses strong project management skills
    - Able to work effectively from a remote home office
    - Collaborates well in person, online or on the phone
    Job Description:
    This position offers an opportunity to work on high-end
    graphical design projects building rich Internet applications for
    Fortune 500 client companies in industries like financial services,
    software and consumer products. As a User Experience Analyst/ IA,
    you will be expected to:
    • interact directly with clients to understand their
    business and technical project requirements, then produce and
    present an RIA concept to the client that exceeds their needs
    • “Experience design” – design
    inspiring end user-oriented RIAs that drive the flow of websites
    • create wireframes, prototypes and storyboards to
    document RIA functionality, as well as help define user
    requirements, navigation, and data flow for application components
    • work with Adobe Flex developers to implement these
    guidelines and act as a user/client-advocate during the development
    process
    • assist in recruiting and assembling of a team of IA
    engineers to support growing services offering
    Candidates will be expected to provide a portfolio of their
    graphical design work in zip files or URL links for review.
    - Can be based anywhere in the U.S.
    - Up to 25 percent travel time required
    - Work on-site and from home
    - 3 to 6 month engagement with potential for perm placement
    If you are not interested in this opportunity but know of an
    excellent candidate, we offer referral bonuses for each referral
    placed on assignment.
    Please reply with your resume attached to
    [email protected]. Thank you for your interest and I look
    forward to hearing from you soon.
    Regards,
    Kevin Bakhmutsky

    Respected Sir,
    I am Nivedita Asmar and I have completed my B.E (Electronics Engineering) from Vishwakarma Institute of Information Technology,Pune in the year 2010 with 61.9%(First Class). I am writing to express my interest in working with your company. I have gone through the website of your company and I find the areas in which you are working interesting. I would love to discuss an opportunity to be a part of your company.
    Currently I am working as a Research Assistant at Center of Excellence in Research and Development at Vishwakarma Institute of Information Technology, Pune under the able guidance of Dr.Aditya Abhyankar. I have worked on project of Human Biometric Identification which involves Fingerprint and Iris Recognition. I have acquired very good experience of  programming on  MATLAB, Visual Studio C++ and dotnet platforms. As a research assistant, I was even responsible for developing Graphical User Interface (GUI) in MATLAB for Image acquisition and recognition. I have completed my final year project on 'Autonomous Cleaning Robot', which involved significant programming in C. 
    I believe that my strong technical experience and education will make me a very competitive candidate.I am confident that if needed, I can efficiently learn and excel at new technologies.
    I have attached my resume to this e-mail for details on my work reference. I would request you to have a look at it.
    Thank you for your kind attention.
    Eagerly awaiting your reply.
    Sincerely, 
    Attachments:
    Asmar_Nivedita_CV.pdf ‏14 KB

  • SAP and Adobe (Flex)

    Hello ,
    I would like to know how to start working with SAP BW and Adobe  ( Flex).
    Is needed that Java Engine to be installed for the server? Is there a document how to link the 2 worlds (SAP , Adobe - Flex) ?
    I would like to know what resources are needed (license, hardware, software, settings) for this connection to work.
    The final purpose would be to try testing is a SAP BW query content could be transferred to some Adobe Flex form / layout / etc, in order for the report to look nicer, to be more user friendly , etc .
    Any help / link/ advice would be appreciated !
    Thank you in advance ,
    A.

    Hi Ariana,
    Hope these below links will provides some idea for you:
    http://www.adobe.com/kr/products/flex/whitepapers/pdf/sap_flex.pdf
    http://www.sugmena-event.com/sponsors/Flex%20Interface%20with%20BI%20Queries%20using%20Web%20Template.pdf
    Regards,
    RajK

  • A user experience for CP5(with 6 issues)

    Hi respected Adobe team,
    I am a CP5 user for 2months. After using CP5 for a part of time, I got some user experience to share with you.
    1. I published a CP project as a .swf with 1280*1024. When I watched this .swf as other dimension (except 1280*1024),some mess line will appear  in the video.
    The video with mess line:
    The correct video:
    2. I think CP5 can publish CP project as a .flv, but I don’t know how to? In this window I don’t know how to add a server to publish .flv file. .flv file is very useful for me, so could you help me?
    3. Why .f4v file’s dimension need less than 1024*768? If I had a 1280*1024 CP project and I wanted to publish it as a .f4v file, I have to compress this project. As the result of compress is mess lines appear in the video.
    4. When I published a CP project as a .swf, sometimes this sentence appear (your computer does not have sufficient memory resource to publish your file).
    I had some information in this issue. This project was created in CP5. Whatever how long time I open this project, when I publish it this dialog will appear. In my opinion, if the CP project had a long time video (much video information), the chances of this dialog’s appear will grow up. But if I change some setting maybe this dialog will not appear.
    In this setting the dialog appeared:
    In this setting the dialog didn’t be appeared:
    5. When I import a .swf to Adobe Flash Catalyst CS5, the .swf can’t be displayed normally. And I tried to analyze a .swf(about 2 min long) by a tool, the result is the .swf just have 37 frames. The strangest point is more than 90% video content is in the 35th frame. Other 36 frames almost have nothing. I don’t know why.
    6. When I recording a long time video, CP cut the video as many slides automatically. Sometime it makes me a little uncomfortable.
    In this CP project, I recorded this video at a heat. But CP cut it automatically (become 18 slides).
    At last, I have an advice for CP. If we can modify the video part in every part, it will be great! Actually, I am a big fan for Adobe productions. So wish a better CP version (maybe CP 6?). Thank you!
    My msn:[email protected]
    Glad to make friends with you!

    Hi Nick,
    I'm sorry to note that you are facing these issues with Captivate 5. While many of the issues you've reported probably have a workaround (I've listed some follow-up actions below), one issue we've had difficulty reproducing is the 'out of memory' issue when you publish. Can we schedule a conference call with a Connect session to investigate this further. Please mail me at- shamer at adobe dot com with details on the geo you are located in and some convienet time slots for the call.
    Regards,
    Shameer
    Adobe Captivate Team
    The other issues:
    >>
    1. I published a CP project as a .swf with 1280*1024. When I watched this .swf as other dimension (except 1280*1024),some mess line will appear  in the video.
    Can you check if this is an FMR swf (does the video camera icon appear on your Cp slides in the film strip/ thumnails? In that case there will be some lines observed with resizing.
    2. I think CP5 can publish CP project as a .flv, but I don’t know how to? In this window I don’t know how to add a server to publish .flv file. .flv file is very useful for me, so could you help me?
    You cannot publish the Cp project as an FLV. You publish as an F4V file. You then have to manualy upload this on to a streaming server (if that is what you are attempting).
    3. Why .f4v file’s dimension need less than 1024*768? If I had a 1280*1024 CP project and I wanted to publish it as a .f4v file, I have to compress this project. As the result of compress is mess lines appear in the video.
    This is a limitation from the way we use codecs for F4V. We are currently investigating this issue.
    6. When I recording a long time video, CP cut the video as many slides automatically. Sometime it makes me a little uncomfortable.
    In this CP project, I recorded this video at a heat. But CP cut it automatically (become 18 slides).
    We can look at this issue also in our connect session, but I believe your auto FMR might be getting triggered in some scenarios, hence the number of slides varies.

  • Problem Installing Adobe Flex Builder 3 (Standalone)

    I have attempted a few times today to install the Flex Builder 3 standalone file, but I am having issues. I am currently using Adobe CS4 Design Premium on my computer.
    I am new to this type of application development.  Currently, I mainly used flash to create my interactive applications, but I need to branch out to create more complex applications.  As I already know actionscript 3.0, I was interesting into getting into Flex.  I do not know Javascript, C++, etc.
    Once I download the standalone file to my desktop and run the installer, I do not choose to download Flash Player 9 because I already have nor do I choose do download the Coldfusion or JSEclipse Plug-in as I do not have Eclipse on my computer (it comes with the standalone as I have been led to believe).  After running the installer, it almost gets to the end and then I get the following error message:
    I click OK, it finishes the install and says
    I go to the log file and get the following:
    !SESSION 2010-02-24 16:22:40.424 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.5.0_11
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Framework arguments:  -application org.eclipse.update.core.standaloneUpdate -command install -from file:\C:\Program Files\Adobe\Flex Builder 3\com.adobe.flexbuilder.update.site/ -featureId com.adobe.flexbuilder.feature.standalone -version 3.0.214193
    Command-line arguments:  -application org.eclipse.update.core.standaloneUpdate -command install -from file:\C:\Program Files\Adobe\Flex Builder 3\com.adobe.flexbuilder.update.site/ -featureId com.adobe.flexbuilder.feature.standalone -version 3.0.214193
    !ENTRY org.eclipse.update.core 4 0 2010-02-24 16:22:44.799
    !MESSAGE Cannot install featurecom.adobe.flexbuilder.feature.standalone 3.0.214193
    Can anybody help me on this?  Is there something I missing prior to download?

    We're in the same boat here - the the behavour of xsd:all in
    BETA 3 renders our Flex app virtually useless because of
    communication issues with the backend webservice. We have studied
    the proposed workaround suggested, unfortunately we only control
    the FLEX app - we do not control the WS we have to integrate with.
    As a result we've gone back to BETA 2 to do some critical
    changes in the software but the "Beta expired." message we've been
    receiving is really not well received. As we have been very
    proactive in supporting development in the BETA phases including
    reporitng bugs, we think that Adobe shoudl also have some
    flexibility here and offer ways to extend the BETA 2. We're not
    asking for any type of support during that phase - purely the
    ability to compile our source until we can implement the full work
    around which will allow the software to run on BETA 3. The
    suggestion to change dates or go to previous restore points do not
    work well here with our numerous developers.

Maybe you are looking for