Windows Project in Adobe 11

In the trail version of Adobe 11, it doesn't give you the
option to publish your movie in a Windows Projector (.exe). It only
gives you the Shockwave option
I've used an older version (Macromedia Director) and it gives
you that option.
Does anyone know why? I'd like to publish the movie as
Windows Projector

Because it is the trial version. If you buy it and enter a
valid
license code, then you can make exe's. But you can't with the
free trial.

Similar Messages

  • Please, I am in a very big problem I designed the project by Adobe director And you test the software on the computers on Windows and works with high quality When I tested the project on Apple Macintosh operating system, Li appeared a number of problems

    Please, I am in a very big problem
    I designed the project by Adobe director
    And you test the software on the computers on Windows and works with high quality
    When I tested the project on Apple Macintosh operating system, Li appeared a number of problems and you dissolve a large part of them
    But I have a problem too big
    The project works on some devices and others show me messages mistakes and why chasm different operating system version
    Apple's Macintosh and these messages
    "biosegnatures" can't be opened becouse it 's from undefined developer "
    others
    shokwave player error
    pleas what can i do

    Welcome to the Support Communities.
    m.raslan wrote:
    I tested the project on Apple Macintosh operating system
    Click on the  menu at top left of your screen, choose About This Mac and, in the panel that appears, note the Version no. in the form 10.n.n. Then update your product list so we can see what version of OS X you're running on the Mac — see this tutorial:
    Update your product list
    m.raslan wrote:
    "biosegnatures" can't be opened becouse it 's from undefined developer "
    This Apple doc may help:
    OS X: About Gatekeeper
    m.raslan wrote:
    shokwave player error
    Is Shockwave Player installed?...
    http://www.adobe.com/shockwave/welcome/
    ...If not, get it here:
    http://get.adobe.com/shockwave/

  • Hi, After I try to load either an existing or new project in Adobe Premier Elements 9 I just get a blank grey screen with none of the timeline, etc. boxes on view. This has suddenly happened, one day OK next not! At the top of the screen I get the normal

    Hi, After I try to load either an existing or new project in Adobe Premier Elements 9 I just get a blank grey screen with none of the timeline, etc. boxes on view. This has suddenly happened, one day OK next not! At the top of the screen I get the normal Pre icon, File, Edit, Clip, etc.
    I am planning on purchasing Premier Elements 13, would it be better if I bought a new program rather than download an upgrade, just in case the upgrade doesn't load properly due to the error with my existing program?
    If I the deleted Premier Elements 9 on my PC would I lose all my existing videos that were produced using Premier Elements 9 or would they be saved so that they can still be worked on in Premier Elements 13?
    Does Premier Elements 13 work with Windows 7?
    Thanks
    Terry

    Premiere Elements 13 absolutely works with Windows 7!
    In fact, I'd highly recommend you download the free trial and give it a test run.
    Meantime, go to Windows Update and make sure you have all of the latest Windows updates, including those that don't install automatically. Then go to the nVidia or ATI site and ensure you have the latest driver for your graphics card, and go to Apple.com and ensure you have the latest version of Quicktime, per the program's requirements.

  • Converting AE project into Adobe Premiere Pro project.

    I have found the way to convert AE project into Adobe Premiere Pro project.
    I use the following line of code:
    app.executeCommand(app.findMenuCommandId("Adobe Premiere Pro Project ..."));
    It works. But unfortunately it opens the SaveFileDialog window for the file name to be assigned.
    I'd love not to see this window. I'd love to assign the file name programmatically. It would be great!
    Is there any way to prevent the dialog window from opening?
    Thank you.

    Depends if you are on the cloud or not or the new 12.0 version.  One way to do it is to import your AE footage into PP as pending on your puter....
    Important to tell your version and OS when posting. What seems clear at your end is being asked from someone who has not seen your challenge.

  • Options for exporting a project in Adobe premiere Pro CS5.5

    When Exporting a project from Adobe premiere Pro CS5.5 I use the format of Windows Media file and Preset HDTV 1080P 30 HighQuality. At the bottom of the window there are some options that say "Use Maximum Render Quality" And "Use Frame Blending". I used these two options on my first video I exported but I want to know for the future what both of these options do exactly to my film and if they could adversely effect things like lighting and the frame rate of a clip or anything?

    Max Render Quality does what is says: gives better picture quality, but will lengthen the export process.
    Frame Blending you check when output framerate differs from timeline framerate.

  • RE: windows project

    If your application is going to be a big one, you might want to divid it
    into a set of applets(smaller applications) that can be launched from
    separate icons or from a menubar similar to an office suite. In order to
    implement this, you will definitely need to define the individual applets by
    putting windows in separate projects. All the de-coupling issues mentioned
    in the previous replys would then apply.
    Mark Savory
    GTE Gov. Sys.
    -----Original Message-----
    From: Curtis Bragdon [mailto:[email protected]]
    Sent: Tuesday, March 02, 1999 9:09 AM
    To: '[email protected]'
    Subject: RE: windows project
    Hi Janet,
    Your macro level division of projects makes sense, although you should also
    consider merging the display data and windows classes before you split up
    the windows classes. If you do that, you should be in a better position to
    split your windows classes based first on class hierarchy and then on
    services that the windows provide.
    Also, as John says, note which windows interact and in what way. In
    addition to identifying is-a relationships, identify has-a and uses-a
    relationships. When you have a window that inherits from another window,
    e.g. a standard form window and an employee form window, place the
    superclass in its own project, and make that project a supplier to the
    project that contains the subclass. In the case of has-a, identify in
    which direction the has-a is implemented. Amongst windows, I would expect
    this to be one-way, and usually the window where the relationship is not
    implemented is a utility window, and can go in its own project, to be
    included by all other projects where that utility window is used. The same
    logic goes for uses-a (really just a pedantic distinction of has-a).
    There are a couple of notes on the technique of using events to talk
    amongst windows. While this method does help eliminate the circular
    supplier problem, you give up the ability to pass return values, and are
    therefore never certain that the intended recipient got the message. You
    could implement a return event or return value method, but this would get
    messy very fast. Some may also note that use of events is about 10 times
    more expensive than use of methods for intra-process communication. This
    is true, but unless you have thousands of methods per second, this will not
    be much of an issue. You can avoid the whole event issue by moving some
    methods higher up in the class hierarchy, but you should review your
    design, first.
    Also, in the same place where you maintain class diagrams for your project,
    maintain a diagram that shows the dependencies amongst supplier plans. In
    this diagram, include the classes contained in the project. Visualizing
    this may help you understand where the circularity arises.
    All this is easier seen than said. Let me know if you would like a diagram
    example.
    Good Luck,
    CSB
    -----Original Message-----
    From: John Pianezze
    Sent: Monday, March 01, 1999 8:03 PM
    To: 'Kendall, Janet M'
    Cc: [email protected]
    Subject: RE: windows project
    I would definitely recommend trying to split the project.
    Usually if you come at the problem from a different angle, you'll find you
    can split it.
    * First, instead of splitting the windows by functionality, split them by
    sub-system, or groups of windows that pertain to different services the
    system provides.
    * Identify windows that are re-used by more than one high-level window.
    These are auxiliary windows. Popup modal windows can usually be grouped and
    supply the top-level windows.
    * Ideitify high-level windows that don't interact (much) with each other,
    these should be supplied by auxiliary windows, and the popup modal windows.
    If the windows communicate, they may not need to know about instances of
    each other. If they POST message to each other, (on an object that is
    visible to both windows) then they can effectively comunicate without
    knowing about each other's implementation. This is also good decoupling,
    reducing the windows' dependency on each other.
    If windows are ued to model business functionality, then you might find
    yourself needing code from one window to another. But if you put all your
    business-specific code in your business objects, then BOs can happily
    supply
    any window, without one window needing to use another window to get some
    business functionality.
    Basically your windows should be very loosely coupled, and they should be
    coupled together with business objects. Usually the only reason one window
    need to know about another window is so that it can instantiate and display
    it.
    Another cool way to separate one implementation from another, is to define
    a
    series of Interfaces which define how windows interact without tying them
    together with any implementation details.
    To simplify things you might make design decisions to restrict
    visibility.
    It might be nifty to have any window be able to switch contexts to any
    other
    window, but you might find it simplifies things to make your view more
    streamlined in their purpose. All of a sudden, your windows are easier to
    construct, and happily go into a project by themselves, and are more easily
    maintained etc etc etc..
    Finally, you might want to build abstractions. You could have a series of
    abstract base windows, in their own project that supply all window
    projects.
    You might build a abstract window classes for each sub-system you identify,
    and they will supply each set of concrete window sub-system
    implementations.
    Small size is key. Small projects, small classes, small method, gets you
    the
    best reuse and fosters a higher quality of implementation.
    John Pianezze
    +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
    "Life is pretty much the same anywhere you find yourself,
    because wherever you go, there you are!"
    - Master Fwap.
    +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
    Mazda Australia
    Lorimer St., South Bank,
    Victoria, Australia
    Telephone +613 9698 5975
    -----Original Message-----
    From: Kendall, Janet M [SMTP:[email protected]]
    Sent: Tuesday, March 02, 1999 9:11 AM
    To: [email protected]
    Subject: windows project
    We are currently developing a system with four basic projects - windows,
    display data, data access and business objects. The windows project
    will probably end up with 100+ classes in it (a conservative guess, I
    think). I was trying to split it into multiple windows projects grouped
    by functionality and am running into supplier plan circularity problems.
    I would appreciate responses indicating if you have designed with a
    single, large windows project or multiple windows projects and any
    pros/cons associated with the direction you took.
    Thanks in advance.
    Janet Kendall
    (916)636-1105
    [email protected]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    This message has successfully passed virus checking.Mazda Australia takes every precaution to ensure email messages are virus
    free. For complete protection, you should virus test this message.

    1 - moved to the correct forum
    2 - More information needed for someone to help... please click below and provide the requested information
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840

  • RE: RE: Windows Project

    Janet,
    We have several windows projects, some of which contain over 170 classes.
    Our application WEX file is 60Mb and rising...
    Tim Sawyer
    PanCredit
    Leeds, UK.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    1 - moved to the correct forum
    2 - More information needed for someone to help... please click below and provide the requested information
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840

  • I have switched from PC to Mac how do i use my windows version  of adobe photoshop CS3 on my MAC?

    i have switched from PC to Mac how do i use my windows version  of adobe photoshop CS3 on my MAC?

    rebel1568,
    All Photoshop versions through CS6 came with platform-specific licenses, either Windows or PC.  You could get a cross-grade of platform swap at a nominal cost but not for older versions, only for whatever Photoshop versions was current at the time.
    CS3 is totally out of the upgrade or cross-grade loop.  You'd have to buy a new license for CS6 Mac or subscribe to Photoshop CC, as Trevor points out.
    Curt Y is correct in that CS2 will not run on current Mac-Intel machines.  You would need a used Mac G5 or G4 with a PowerPC (IBM) CPU, which have been obsolete since mid 2006.
    Of course, you could run your Windows  on your Mac if you installed and ran BootCamp or Parallells.

  • Have Windows XP and Adobe 9 Reader and need to send a series of large documents to clients as a matter of urgency     When I convert 10 pages a MS-Word file to Pdf this results in file of 6.7 MB which can't be emailed.     Do I combine them and then copy

    I have Windows XP and Adobe 9 Reader and need to send a series of large documents to clients as a matter of urgency When I convert 10 pages a MS-Word file to Pdf this results in file of 6.7 MB which can't be emailed.  Do I combine them and then copy to JPEG 2000 or do I have to save each page separately which is very time consuming Please advise me how to reduce the size and send 10 pages plus quickly by Adobe without the huge hassles I am enduring

    What kind of software do you use for the conversion to pdf? Adobe Reader can't create pdf files.

  • I have a windows vision for Adobe Creative Suite 4 Design Standard, Can I use same serial number as

    I have a windows vision for Adobe Creative Suite 4 Design Standard, Can I use same serial number with Mac?

    Unfortunately, no. Creative Suite serial numbers are platform specific: Windows only or Mac only.

  • Transfer from Adobe Photoshop Elements 6 on Windows XP to Adobe Photoshop Elements 12 on the Mac.

    I want to transfer from Adobe Photoshop Elements 6 on Windows XP to Adobe Photoshop Elements 12 on the Mac. My problem is I have lost my catalog and Windows XP.  I need help.
    I have installed the newest Mac version of Adobe Photoshop Elements 12 (PSE 12 Mac) and it seems to work fine but I have not been able to access my old (XP, PSE6) catalog file.
    I am working on a MacBook Air running OSX version 10.9.2.  I have been using Parallels Desktop 9 Switch-to-Mac-Edition™ to run Windows virtual machines.  I had been working for over a year running Photoshop Elements 6 on Windows XP virtual machine.  The XP operating system was updated to 2/28/14.
    When I installed Windows 8, the Parallels program initially offered me a choice of virtual machines, Window XP or Windows 8.  I could use the XP version to work with Photoshop Elements 6 as before and thought I could be leisurely about transferring my Photoshop operations to the Mac side.
    However, without my knowingly doing anything to dispose of Windows XP, I have “lost” Windows XP.  Perhaps it occurred when I updated to Windows 8.1.  At any rate, now I have access only to Windows 8.1. 
    To compound the problem the Time Machine backup program for the Mac was not backing up the XP virtual machine files as I had thought.   I have since corrected the settings but I do not have a copy of Windows XP nor of the Adobe Photoshop Elements catalog which I used in the past.
    Moreover, I do not have a workable Windows XP disk; the only one I could find is from Dell and it does not load on my MacBook Air.  I see Windows XP disks offered by Amazon for about $30 and have thought about buying a copy to help see if I could  accomplish the transfer of the catalog file to my Mac.  I would use XP only to accomplish this transfer.
    I am not completely confident that reinstalling Windows XP would actually enable me to do the transfer and I can foresee potential big problems. Therefore, before taking that step I thought that I would check with you to see if there is a way to find the catalog file and perhaps to modify it so that I could work in the Mac Environment.
    I have used Elements to improve and organize over a thousand travel and family photos taken with a pocket size digital camera.  Being a nonprofessional, I have edited mainly by cropping and using Quick Fix but have many hours invested.  Yes,  I still have the originals and probably could have redone much of that work with the time I have invested in trying to find the missing XP and catalog.
    I have found two large HDS files (Windows XP.hdd and Windows XP (2).hdd) that were created 7/15/12.  I suspect they may be important but am not sure what they are.   I read that HDS files are commonly Windows media digital rights management files, DRMs.   HDS files may also be used by hierarchical data systems.  Do the names suggest anything about Photoshop?
    Can you help me find the catalog and transfer it for use with the Mac Adobe Photoshop Elements 12?

    See this link:
    http://helpx.adobe.com/photoshop-elements/kb/backup-restore-move-catalog-photoshop.html

  • Windows 8 Pro Adobe Bridge CS6 5.0.1.23 x64 not responding

    On my new SSD with a fresh install of Windows 8 Pro and Adobe CS6 Design and Web Premium, I regularly get a "(not responding)" warning in Bridge's (5.0.1.23 x64) title bar when opening a folder location, and the program takes around 10-20 seconds to display folder contents. This seems to be an indexing or caching issue, but I have not resolved it through the following fix attempts.
    In Bridge settings, I have placed the cache on the OS SSD at "C:\Users\York\AppData\Roaming\Adobe\Bridge CS6\Cache", and I have placed it on a separate internal physical HDD at "D:\Adobe Bridge CS6 temp cache". I have experimented with all other options (100% previews, export, manage, compact, and purge cache - restarting the app after each tweak).
    I have Ctrl-opened Bridge to access the "Reset setting" dialog box, where I restored default preferences and purged the cache. This did seem to alleviate the problem temporarily, but it did not resolve it.
    I have not uninstalled, repaired, or re-installed Bridge because it is not listed as a standalone app in the "Windows Control Panel > Programs and Features > Uninstall or change a program" window or the Adobe CS6 Design and Web Premium installer.
    My system is Intel i7-2600K, Asus Maximus IV Gene-Z, Nvidia GeForce GTX 560 Ti, 32GB RAM, Samsung 840 250GB SSD, various HDDs.
    My other system, an Intel Quad-Core Q6600, Asus P5Q-Pro, AMD Radeon HD 6950, 8GB RAM, Samsung 840 250GB SSD, various HDDs, does not have this problem.
    Any thoughts are appreciated.

    Thanks for the input, Curt. I have not changed the TEMP/TMP directories, which are set per Adobe instructions at http://helpx.adobe.com/bridge/kb/bridge-crashes-changing-temp-file.html. Temporary "not responding" freezes (10-20 seconds) are my issue. Crashes, as others are reporting due to the temp directories, are not occurring.  Other thoughts are appreciated.

  • In Windows 7 using Adobe Reader XI (11.0.07) was able to copy an item (name, number, date) and paste in another document.  In Windows 8.1 using same version of Adobe Reader XI (11.0.07) not able to do this.  Any solutions?

    In Windows 7 using Adobe Reader XI (11.0.07) was able to copy an item (name, number, date) and paste in another document.  In Windows 8.1 using same version of Adobe Reader XI (11.0.07) not able to do this.  Any solutions?

    With computer running Windows 7 using the curser can select an item, then right click and select copy.   With computer running Windows 8 there is a hand instead of a curser therefore unable to select an item, therefore unable to copy.  Is there a way to have a curser rather than the hand?
    Eureka!!!   Just found by right clicking on the hand can then select “Select Tool” and then copy.  Hurray!!!

  • Window 8.1, adobe reader XI, when i double clicked pdf file, nothing happen.

    hi.
    i using window 8.1,
    adobe reader version XI.
    when i installed reader xi, that worked well.
    after some hours pass,  double click pdf file and nothing happen.(only can see adobe reader on window task manager list)
    i reinstalled reader several times and deleted program files(x86)/adobe folder too.
    then worked well only some hours and not works again
    can you help me plz?

    Hi,
    You have to remove the back hand file which was present in the Local Disk C >> Program Data >> Acrobat, if you remove this file. It will remove the SSH (Software System History) from the PC. Then you can efficiently reinstall the Adobe Acrobat XI

  • Epson Stylus Pro 9800 errors on 32-bit Windows 7 with Adobe CS4

    Epson Stylus Pro 9800 errors on 32-bit Windows 7 with Adobe CS4
    Question: We are experiencing some major errors with printing to our Epson Stylus 9800 Pro. Some of our large files are spooling about 16K, then crashing Photoshop. Sometimes we are getting partial prints (the left most 3-4 inches of print, or the file starting to print about 1/2 way into the file itself), sometimes it just spools for a few minutes, then stops, with nothing coming from the printer at all.
    At Epson's request, we have tried the following:
    reinstalling Windows 7 print driver
    Reinstalling Adobe CS 4
    Installed NEW NIC in printer
    Installed new network line to printer
    Installed new main board on printer
    Printed from a PC directly connected to printer via USB and crossover cable
    This issue is very bizarre in that it is random and sporatic. Same file will cause one of the above errors, then, another attempt to print same file will be successful. We have several Windows 7 machines that get the issue, while several Windows XP machines are fine. Epson instructed us to install the newest (win7) driver on the XP machines, issue then affects XP machines. Uninstalling new driver and re-installing old driver on XP machines resolves issue on XP machines.
    Is this an issue with the Epson driver? CS4 on Windows 7? Or some other malady?
    When Photoshop crashes, the following error log is created: Log Name:      Application
    Source:        Application Error
    Date:          10/6/2010 1:31:16 PM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      _PCNAME_._OUR_DOMAIN_.com
    Description:
    Faulting application name: Photoshop.exe, version: 11.0.2.0, time stamp: 0x4bf2d4f6
    Faulting module name: E_FJBLDBE.DLL, version: 0.1.1.7, time stamp: 0x469dea6c
    Exception code: 0xc0000005
    Fault offset: 0x0001c9ba
    Faulting process id: 0x1cf8
    Faulting application start time: 0x01cb657c010cac1c
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CS4\Photoshop.exe
    Faulting module path: C:\Windows\system32\spool\DRIVERS\W32X86\3\E_FJBLDBE.DLL
    Report Id: 85870535-d16f-11df-b849-406186f3bc8f
    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="2010-10-06T17:31:16.000000000Z" />
        <EventRecordID>5497</EventRecordID>
        <Channel>Application</Channel>
        <Computer>_PCNAME_._OUR_DOMAIN_.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data>Photoshop.exe</Data>
        <Data>11.0.2.0</Data>
        <Data>4bf2d4f6</Data>
        <Data>E_FJBLDBE.DLL</Data>
        <Data>0.1.1.7</Data>
        <Data>469dea6c</Data>
        <Data>c0000005</Data>
        <Data>0001c9ba</Data>
        <Data>1cf8</Data>
        <Data>01cb657c010cac1c</Data>
        <Data>C:\Program Files\Adobe\Adobe Photoshop CS4\Photoshop.exe</Data>
        <Data>C:\Windows\system32\spool\DRIVERS\W32X86\3\E_FJBLDBE.DLL</Data>
        <Data>85870535-d16f-11df-b849-406186f3bc8f</Data>
      </EventData>
    </Event>

    Giving that a go.
    Thanks!

Maybe you are looking for

  • Can you sync 2 apple ID's for Find Iphone Application?

    My Husband & I both have IPhone/IPad/IPod & MacBooks and we have seperate Apple ID's. We would both like to be able to access all the devices under the Find IPhone application, but I can only see my devices and he can only see his. Is there a way to

  • Sales Order using BAPI_SALESDOCU_CREATEFROMDATA

    Hi, I am using BAPI_SALESDOCU_CREATEFROMDATA to create sales order from a non-SAP system. It is working fine in normal case. But if the entered order quantity for a material is more than the maximum available in a batch, it dumps. When I ran the BAPI

  • How to publcish new Muse Site with existing domain name

    We've created a new site in MUSE and we are ready for it to go live via BC. can we just use the same domain name of our existing site that is hosted by others? Will it replace it? Or do I have to cancel my existing hosting service first? Thanks! Shar

  • Issue with Update of Table VARINUM

    Hi, I am getting waiting Issues with Update of table VARINUM. Has anybody faced such an issue. I have a lot of Jobs which are running in background. I am submitting it through a report. what can be the issue. Regards, Abhishek jolly

  • Question regarding the size of a rendered DVD file?

    Hi all, I just finished my first home video using Premiere Pro CS4 and Encore CS4. My source is a consumer HD camcorder. When I created the PP project, I selected AVHCD format to keep it the highest quality possible. So Iimported the files in PP, app