Best practices - Advertising with Flash CC ?

What is it with these recommendations?
http://help.adobe.com/en_US/flash/cs/using/WSd60f23110762d6b883b18f10cb1fe1af6-7b29a.html
How is it possible that the new tool Adobe Flash CC Adobe does not provide standards for creating ads?
I'm using the latest version of Flash in this is not possible. The client shows me the way Adobe and we have a misunderstanding and losses of time. Service using Flash ads or uses the old information.
How can I create a new Flash creations CC using these official recommendations?
What's going on?
Regards!

You're right.  I never noticed that.  I was on an older version of Flash when I was doing ads.  What a major screwup.  There are many people complaining about this in other threads.  I found the solution from kglad in this thread: http://forums.adobe.com/message/5750996
You can get Flash CC to publish to version 9 player by putting these two files in these locations:
This file: http://forums.adobe.com/servlet/JiveServlet/download/5510986-147069/FlashPlayer9_0.xml
Goes here: C:\Program Files\Adobe\Adobe Flash CC\Common\Configuration\Players\FlashPlayer9_0.xml
This file:  http://forums.adobe.com/servlet/JiveServlet/download/5510986-147068/playerglobal.swc.zip
Goes here: C:\Program Files\Adobe\Adobe Flash CC\Common\Configuration\ActionScript 3.0\FP9\playerglobal.swc
You may need to create the FP9 folder.
Restart flash and you should see Player 9 in your publish options.  You'll have to find the AS3 clickTag code.

Similar Messages

  • JSF Best Practices: Dealing with phone numbers

    I am sure this would be benefitial to everyone so... I was wondering what would be the best practice to show/edit/search phone numbers in JSF-based UI? I guess it all depends on the table/attribute definition? Suppose in your table you have
    COUNTRY_CODE
    AREA_CODE
    PHONE (xxx-xxxx)
    EXT
    how would you design the 'most' user friendly UI? Is there any component with 'pre-built' phone mask?

    Hello,
    It's funny since I got the same question today in a meeting.
    I would write a PhoneNumber and PhoneNumberConverter class. The getAsString would simply returns the (xxx) xxx-xxxx format, the getAsObject method would check to string value against a regex, probably something like: \s*((\(\d{3}\))|(\d{3}\s*-))?\s*(\d{3})\s*-?\s*(\d{4})
    That way the user will always see the format xxx-xxxx but will able to enter all those formats:
    xxx-xxx-xxxx
    xxx - xxx - xxxx
    (xxx)xxx-xxxx
    (xxx) xxx-xxxx
    xxx-xxxx
    xxx - xxxx
    Regards,
    Simon Lessard
    Message was edited by:
    Simon Lessard

  • SAP Best Practice Integrated with Solution manager

    We have a server in which we installed SAP Best practice baseline package and we have the solution manager 7.01 SP 25
    We maintained the logical port but when we try to check connectivity to solution manager we got the following error:
    Connectivity check to sap solution manager system not successful
    Message no. /SMB/BB_INSTALLER375
    Can anyone guide us how to solve the problem and also if there is another way to upload the solution defined on the best practice solution builder into sap solution manager as a template project
    Thanks,
    Heba Hesham

    Hi,
    Patches for SAPGUI 7.10 can be found at the following location:
    http://service.sap.com/patches
    -> Entry by Application Group -> SAP Frontend Components
    -> SAP GUI FOR WINDOWS -> SAP GUI FOR WINDOWS 7.10 CORE
    -> SAP GUI FOR WINDOWS 7.10 CORE -> Win 32
    -> gui710_2-10002995.exe

  • SAP Best Practice: Problems with Loading of Transaction Data

    Hi!
    I am about to implement SAP Best Practices scenario "B34: Accounts Receivable Analysis".
    Therefore I load the data from SAP ERP IDES system into SAP NetWeaver 2004s system.
    My problems are:
    when I try to load the Transaction data for Infosources 0FI_AR_4 and 0FI_AR_6 I get the following errors/warnings:
    when I start the "schedule process" the status getting still "yellow 14:27: 31(194 from 0 records)"
    On the right side I see some actions that are also "yellow", e.g. "DataStore Activation (Change Lo ): not yet activated".
    As a result I cannot see any data in tcode "RSRT" executing the queries "0FIAR_C03/...".
    The problems there
    1) Input help of the web template of query don't contain any values
    2) no data will be shown
    Can some one help me to solve this problem?
    Thank you very much!
    Jürgen

    Be in the monitor window where u got the below issue
    when I start the "schedule process" the status getting still "yellow 14:27: 31(194 from 0 records)"
    and go to environment in the menu options TransactRFC--->in the sourcesystem...
    give the logon details and enter and from there give the correct target destination as ur BI server and execute...
    if u find some idoc's pending there push that manually using F6..
    and come back to ur load and refresh....
    if still it doen't turn green u can manully change status to red in STATUS tab and come to processing tab and expand ur processing details and right click on ur data packet which was not yet updated and select manual update...
    it shows busy status and when it comes out of that once again refresh...
    rgds,

  • What is the best practice dealing with process.getErrorStream()

    I've been playing around creating Process objects with ProcessBuilder. I can use getErrorStream() and getOutputStream() to read the output from the process, but it seems I have to do this on another thread. If I simply call process.waitFor() and then try to read the streams that doesn't work. So I do something like final InputStream errorStream = process.getErrorStream();
    final StringWriter errWriter = new StringWriter();
    ExecutorService executorService = Executors.newCachedThreadPool();
    executorService.execute(
        new Runnable() {
            public void run() {
                try {
                    IOUtils.copy(errorStream, errWriter, "UTF-8");
             } catch (IOException e) {
                    getLog().error(e.getMessage(), e);
    int exitValue = process.waitFor();
    getLog().info("exitValue = " + exitValue);
    getLog().info("errString =\n" + errWriter); This works, but it seems rather inelegant somehow.
    The basic problem is that the Runnable never completes on its own. Through experimentation, I believe that when the process is actually done, errorStream is never closed, or never gets an end-of-file. My current code works because when it goes to read errWriter it just reads what is currently in the buffer. However, if I wanted to clean things up and use executorService.submit() to submit a Callable and get back a Future, then a lot more code is needed because "IOUtils.copy(errorStream, errWriter, "UTF-8");" never terminates.
    Am I misunderstanding something, or is process.getErrorStream() just a crappy API?
    What do other people do when they want to get the error and output results from running a process?
    Edited by: Eric Kolotyluk on Aug 16, 2012 5:26 PM

    OK, I found a better solution.Future<String> errString = executorService.submit(
        new Callable<String>() {
            public String call() throws Exception {
                StringWriter errWriter = new StringWriter();
                IOUtil.copy(process.getErrorStream(), errWriter, "UTF-8");
                return errWriter.toString();
    int exitValue = process.waitFor();
    getLog().info("exitValue = " + exitValue);
    try {
        getLog().info("errString =\n" + errString.get());
    } catch (ExecutionException e) {
        throw new MojoExecutionException("proxygen: ExecutionException");
    } The problem I was having before seemed to be that the call to Apache's IOUtil.copy(errorStream, errWriter, "UTF-8"); was not working right, it did not seem to be terminating on EOS. But now it seems to be working fine, so I must have been chasing some other problem (or non-problem).
    So, it does seem the best thing to do is read the error and output streams from the process on their own daemon threads, and then call process.waitFor(). The ExecutorService API makes this easy, and using a Callable to return a future value does the right thing. Also, Callable is a little nicer as the call method can throw an Exception, so my code does not need to worry about that (and the readability is better).
    Thanks for helping to clarify my thoughts and finding a good solution :-)
    Now, it would be really nice if the Process API had a method like process.getFutureErrorString() which does what my code does.
    Cheers, Eric

  • Best practice dealing with mixed footage types

    I will soon embark on my first proper FCP project. The film will be shot at the end of the week on a Sony PMW-EX1 in 1080p25. We already shot some footage a few weeks ago, alas this was mistakenly shot interlaced 1080i50. What would be the best way to go about combining these two sets of footage? Should I de-interlace the 1080i50 stuff first or just drop it all into the timeline and allow FCP to deal with it?

    OK, I found a better solution.Future<String> errString = executorService.submit(
        new Callable<String>() {
            public String call() throws Exception {
                StringWriter errWriter = new StringWriter();
                IOUtil.copy(process.getErrorStream(), errWriter, "UTF-8");
                return errWriter.toString();
    int exitValue = process.waitFor();
    getLog().info("exitValue = " + exitValue);
    try {
        getLog().info("errString =\n" + errString.get());
    } catch (ExecutionException e) {
        throw new MojoExecutionException("proxygen: ExecutionException");
    } The problem I was having before seemed to be that the call to Apache's IOUtil.copy(errorStream, errWriter, "UTF-8"); was not working right, it did not seem to be terminating on EOS. But now it seems to be working fine, so I must have been chasing some other problem (or non-problem).
    So, it does seem the best thing to do is read the error and output streams from the process on their own daemon threads, and then call process.waitFor(). The ExecutorService API makes this easy, and using a Callable to return a future value does the right thing. Also, Callable is a little nicer as the call method can throw an Exception, so my code does not need to worry about that (and the readability is better).
    Thanks for helping to clarify my thoughts and finding a good solution :-)
    Now, it would be really nice if the Process API had a method like process.getFutureErrorString() which does what my code does.
    Cheers, Eric

  • Best Practice Solution with 2 Internet Connections

    Good day everyone,
    We used to have single ADSL connections at our clients that provide the internet connection for the network. We have recently partnered up with a Fiber provider and are slowly busy rolling out Fiber connections at our clients. We are also offering redundancy
    with the ADSL connection as a back up for the Fiber connection.
    I would like to know if anyone has suggestions as to what would be the best practise configuration on various Windows Server platforms to make this possible? The idea is that if the Fiber connection fails (for whatever reason) that the ADSL connection takes
    over. This must be an automated process.
    I am open for any form of suggestions.
    Thanks for your time.
    Rudi

    Hi,
    Our current solution is to have to NICs and have both connect to the server. They then have 2 different IPs and we have the DHCP give out the IP as the gateway. The only problem with that is that we cannot control the automated change of gateway IP if the
    main connection fails. 
    We are also willing to look into other hardware solutions that could control this.
    Regards,
    Rudi

  • Best practice for packing Flash Lite

    Hello there!
    I want to package my Flash Lite 2.0 app and I've looked into
    these ways to do it:
    1) SWF2SIS
    2) SWF2GO
    3) Widget -
    http://wiki.forum.nokia.com/index.php/How_to_package_Flash_content_in_a_Widget
    What's your experience from these and are there other you'd
    rather recommend?
    Thanks, Andreas

    Kunerilite is free, but you can install only one sis
    application at a time, for the Basic version.
    Yeah, it does have plugins, etc, but then comes the pain,
    register at symbiansigned, UID, etc.
    For the simple choice and for a quick sis, nothing fancy,
    swf2go might be good.
    At least this is my initial thought. Haven't tested
    yet.

  • Best Practices - WOrking with lot of fields

    I am working on new modules based on a migrated project. And I have
    many fields to work with, which is making the code large and
    repetitive (kind of). If I follow the existing structure (from
    migration) it works fine but I am looking for better ways to do it.
    I would appreciate any suggestions or experiences.
    Thanks.
    Sincerely,
    Partha

    Welcome to the forum!
    I don't see anything obviously wrong with that SELECT statement. It looks very much like this query:
    SELECT     e.ename, e.empno, e.mgr
    ,     d.deptno, d.dname
    FROM     scott.emp     e
    ,     scott.dept     d
    WHERE     e.deptno     = d.deptno
    START WITH     e.empno          = 7566
    CONNECT BY     PRIOR e.empno     = e.mgr
    ;which produces this output:
    ENAME           EMPNO        MGR     DEPTNO DNAME
    JONES            7566       7839         20 RESEARCH
    SCOTT            7788       7566         20 RESEARCH
    ADAMS            7876       7788         20 RESEARCH
    FORD             7902       7566         20 RESEARCH
    SMITH            7369       7902         20 RESEARCHIn the scott.emp table, empno is unique, and mgr is the empno of the boss, or parent . I assume employees.id is unique, and the employees.dependencia on any row is the boss of that employee.
    Whenever you have a problem, it helps if you post a little sample data (CREATE TABLE and INSERT statements) and the results ypu want from that data, or give an example using commonly available tables, like those in the scott schema. Point out where the equery is getting the wrong results, say what the right results are in those places, and explain how you get those results from that data.
    Always say which version of Oracle you're using (for example, 10.2.0.3.0).

  • Best Practice: Working with Win7 32Bit & 64Bit Versions in MDT 2012

    Whats the recommended way for producing bootable media using MDT2012 that would support 32 and 64 bit versions of Windows 7?
    Should I have 2 deployment shares or do I import the 2 operating systems source dvd's into the same deployment share?
    is it possible to create 32 & 64Bit bootable media from 1 deployment share and if so what settings would I need to modify in the task sequence & advanced configs to allow me to do so?

    No problemt to run both x86 and x64 in the same deploymentshare.
    Yes you can create both 32 and 64 bits boot media (winpe) in one deployment share.
    In the properties of you deploymentshare, general tab you choose if you want to support both x86 & x64.

  • Best Practices: Flash Player 10.1 and Flash Lite 4

    I've found the documentation for Flash Lite 4.  It appears to support most everything you'd want to do in AS3, aside from some desktop-specific APIs like Clipboard, File, ContextualMenu, etc..
    I've also noticed that there's a Flash Lite 4 compile target in Flash CS5.  Would it be considered a best-practice to target Flash Lite 4 instead of Flash Player 10 for web content?  (Obviously, desktoppy web apps would still need to be compiled for 10).

    TJ,
    Thanks for your great feedback and your kind words.  I'll certainly be making sure the team sees your comments, though I can't say we'll have 10.1 in place for you by Monday.
    Thanks
    -D

  • Best practice? Loading text with XML or AS?

    I am developing some instructional material that will include
    some practice questions. I know of 2 ways to handle the dynamic
    text, but am not sure what is considered best practice in the Flash
    community. Is XML the best, fastest or more efficient than
    embedding the text into actionscript?
    Thanks!
    Brad

    If the questions will ever need to be changed, updated, or
    edited, then XML would be the best.
    If you just need the quickest way to build your Flash and not
    have to worry about loading external files and what to do if the
    file isn't available, then put them into the body of the
    FLA.

  • Best Practices for Workshop IDE (Development Workstation Setup)

    Is there any Oracle documentation that describes best practices for setting up Workshop and developing on a workstation that includes Oracle's ODSI, OSB, Portal, and WLI? We are using all these products on a weblogic server for each developer's machine and experiencing performance and reliability issues. What's the optimal way to use these products on a developer's workstation. Thanks.

    Hi,
    Currently you dont see such best practice site with in workshop.
    but you can verify most issues from doc.
    http://docs.oracle.com/cd/E13224_01/wlw/docs103/
    if you need any further assistance let me know.
    Regards,
    Kal

  • Best practice for using common VIs

    Hi,
    I have some projects, which use some common VIs (like open/close file format and similar). What is the best practice to use these common VIs? Now I copy these to the project folders, but now I have multiple copies of some VIs, which is difficult to maintian, if I need to modify something in these common files. 
    What sould i use? Still copy, or link the common folder to my project, or use a packed project, or something else?
    Thanks

    dont know if it is the best practice but with every new project, I create a new folder in my project (right click on my computer -> new -> virtual folder) and link that virtual folder to my folder that contains all my common code (vi/ctl/class) by right clicking on the newly created virtual folder and choosing "Convert to auto-populating folder".
    One downside is that if you modify one of those vis for your new application, it might break it for one of your older projects.
    I also use source code control (svn / git / mercurial / etc..) so if that happens, I can always go back to a previous working version.

  • Best practice tast profile security in BPC

    Hi,
    I'm in the middle of a BPC NW 7.5 implementation project and need to set up the task profiles in BPC. I'm looking for a clear description of the different tasks - does anyone now if this is available?
    Furthermore I'm interested in Best Practice experiences with task security in BPC - any input on this matter?
    Thanks,
    Lars

    Hi,
    You can extract the information from the Security Guide located on Service MarketPlace at:
    https://websmp202.sap-ag.de/securityguide
    follow the path to "SAP BusinessObjects (formerly, SAP Business User)" and select
    SAP BPC 7.0, version for SAP NetWeaver Security Guide
    hope it helps...
    regards,
    Raju

Maybe you are looking for

  • Upgrading GIMP in Solaris 10

    I would like to upgrade GIMP in Solaris 10 to the version used in Solaris Express DE. What is the best way to do this?

  • Delta fo Generic extractor using function module

    Hi, I am using the following function module for generic extractor but its always showing me extraction error.Could anyone please suggest to resolve the issue. Thanks in advance fo rsuggestion. FUNCTION Z_BW_SALESDATA_EXTRACT_CHNG2. ""Local interface

  • Why does my white balance temperature slider have 1-100 values?

    Why does my white balance temperature slider have 1-100 values instead of a sliding Kelvin value?

  • SERVICE ORDER REG.

    Can a service order be created for services of transporting a material to the production plant thereby booking the same under inventory cost of such material. Regards, Lalitha.

  • I can't get in my ipod5

    I bought this ipod 5 from a friend who had it given to him from another friend who I will refer to as Sam. Sam thought it would be funny to give the guy I bought it from (Joe) an unusable ipod by assigning it to his apple id and wiping all the info f