Creating Flash In Adobe

Hello, I am new to the forums. Please direct me if I am in the wrong place. I am working with and new to adobe cs4. I am trying to create a flash like the one at this link http://www.alfonsepaganophotography.com/#mi=1&pt=0&pi=1&p=-1&a=0&at=0 If anyone has any helpful info for me I would greatly appreciate it. Thank you.

I thought Captivate was only flash based projects. I am currently installing the trial version of the suite to investigate.
I have read the features section of the suite and it states that Dreamweaver CS5 comes bundled with 'Domain specific html templates' that are 'instructionally sound' html templates for elearning course development. Are these not SCORM compliant?
I am really just creating a very simple online course that contains no interactive activities or assessments and is very heavily text based with several supplied flash videos. Advice on what would be best to produce this in would be appreciated.
Please note I have very little understanding of SCORM compliancy etc at this stage.
Many Thanks.

Similar Messages

  • Toolkit for Create CJ on Adobe Flash CS6 - Exporter.jsfl issue

    I am using toolkit for Create CJ on Adobe Flash CS6
    The animation need to be supported on HTML 5 devices. When I am publishing the below message appear on the Output window and cannot create the file:
    The following JavaScript error(s) occurred:
    At line 264 of file "Exporter.jsfl":
    out of memory
    There are not images, only text and graphics mainly drew on Flash and just a few imported from Illustrator, and I used classic Tween and a few masks. No idea what is “Exporter.jsfl” file stand for.
    Is there anyone can help me with this issue?
    Thanks
    Lars

    Thank You for your reply.
    I follow your instructions and found the file, but what are you suggesting to do with the file, delete it? And then rename the file to Toolkit_for_createJS.zxp and loaded it again on adobe extension manager?
    Thank you

  • Any tutorials on how to use the daily build of the Flex SDK to create Flash Player 10 content?

    Is there a tutorial on Adobe on how to use the daily build of
    the Flex SDK to create Flash Player 10 content?

    The approach you take might depend on a few things, but it boils down to using mouse interactive coding to trigger whatever effect you eventually realize.  The code you use will depend on the version of Actionscript you plan to use.
    You could make this as a movieclip that is normally stopped at its first frame and when you mouseover or click the movieclip, it animates along its own timeline to its enlarged state.  If the thumbnail is very small and the larger version is substantially larger, and both need to be clear images, this might be the better approach.
    If this only involves enlarging something, you could also probably realize it just using Actionscript Tween coding rather than timeline animation.

  • Creating flash cs3 component

    Hi,
    There is great and easy way to create flash based component
    in flash cs3 using action script 3.0.
    I am going to make a simple My button component which will
    behave likely same as flash native button component.
    You can modify this according your requirement this is just
    you give an idea about how we can go for creating a component in
    flash cs3.
    Follow these steps…
    1. Create a fla file and save this file with any name
    2. Create a movieClip and draw a rectangle shape on first
    frame.
    3. Right click on movieclip in library, select linkage
    4. Provide class name in text field area [MyButton] (you can
    use any name here which should matched with your class)
    5. Click Ok button
    6. Write class [MyButton]
    (you can copy and use this)
    * author @ sanjeev rajput
    * [email protected]
    * A flash action script 3.0 based component without extending
    UIComponent class
    package {
    import flash.display.Sprite;
    import flash.text.TextField;
    import flash.events.MouseEvent;
    import flash.events.Event;
    import fl.motion.Color;
    public class MyButton extends Sprite{
    private var _tf:TextField;
    private var _Label:String="My Button";
    private var _bgColor:uint=0xCCCCCC;
    private var _rollOverColor:uint=0xFFCCCC;
    private var _borderColor:uint=0x000000;
    private var _borderThickness:int=1;
    private var _width:Number = 100;
    private var _height:Number =100;
    private var _background:Sprite;
    public function MyButton() {
    init();
    createChildren();
    initEventListeners();
    draw();
    //-------------property section [Start]
    [Inspectable]
    public function set Label(lbl:String){
    _Label=lbl;
    draw();
    public function get Label(){
    return _Label
    [Inspectable]
    public function set bgColor(color:uint):void{
    _bgColor=color;
    draw();
    [Inspectable]
    public function set borderColor(color:uint):void{
    _borderColor=color;
    draw();
    [Inspectable]
    public function set borderThickness(thickness:int):void{
    _borderThickness=thickness;
    [Inspectable]
    public function set rollOverColor(color:uint):void{
    _rollOverColor=color;
    //-------------property section [End]
    private function init():void {
    trace('welcome');
    _width = width;
    _height = height;
    scaleX = 1;
    scaleY = 1;
    removeChildAt(0);
    private function initEventListeners():void{
    addEventListener(MouseEvent.MOUSE_OVER, eventHandler);
    addEventListener(MouseEvent.MOUSE_OUT, eventHandler);
    private function eventHandler(event:Event):void{
    if(event.type == MouseEvent.MOUSE_OVER){
    toggleColor(_rollOverColor);
    if(event.type == MouseEvent.MOUSE_OUT){
    toggleColor(_bgColor)
    private function createChildren():void {
    _background = new Sprite();
    _tf = new TextField();
    _tf.autoSize = "center";
    _tf.selectable=false;
    addChild(_background);
    addChild(_tf);
    protected function draw():void {
    toggleColor(_bgColor);
    _tf.text = _Label;
    _tf.x = Math.floor((_width - _tf.width)/2);
    _tf.y = Math.floor((_height - _tf.height)/2);
    //width = _tf.width;
    private function toggleColor(color:uint):void{
    _background.graphics.clear();
    _background.graphics.beginFill(color, 1);
    _background.graphics.lineStyle(_borderThickness,
    _borderColor, 1);
    _background.graphics.drawRoundRect(0, 0, _width, _height,
    10, 10);
    _background.graphics.endFill();
    public function setSize(w:Number, h:Number):void {
    _width = w;
    _height = h;
    draw();
    7. Now right click again on your movieclip in library and
    select component definition.
    8. In class name text field provide same class name
    [MyButton]
    9. Click on ok button
    10. Right click again on movieClip in library and select
    Export SWC file.
    11. Same your exported SWC file in (For window only)
    [c:\Documents and Settings\$user\Local Settings\Application
    Data\Adobe\Flash CS3\en\Configuration\Commands\
    12. Now just open another new flash file open component
    panel/window reload component you will your component in component
    panel with MyButton name.
    13. Drag your custom component on stage provide inputs form
    property window and text it.
    Enjoy!

    Lt.CYX[UGA] wrote:
    > if anyone is using Flash CS3, try creating a flash
    movie, using the FLVPlayer
    > component to play an flv video and make it an executable
    projector. Run it
    > fullscreen and watch how the screen just stays black
    when the video should
    > appear. If you stay windowed, it works fine.
    >
    >
    steps to reproduce:
    > 1. create flash movie
    > 2. put an FLVPlayer component on a frame that's not the
    first (for testing
    > purposes)
    > 3. before the projector reaches the frame with the
    FLVPlayer component, change
    > it to fullscreen (by script or CTRL+F)
    >
    >
    observed behaviour:
    > not only the video doesn't play, but the whole screen is
    black until the
    > player goes back to windowed mode
    >
    >
    expected behaviour:
    > video should play
    >
    >
    remarks:
    > if you skip step 3, video plays correctly
    >
    Works just fine.
    Made new movie, on frame 2 places Full screen action, on
    frame 5 placed video component
    and stop(); action attached to frame. Projector pops large
    following by video playing
    just fine.
    I tried variety, first frame, many frames, all on one. Not
    able to reproduce your problem.
    Works on first go.
    Best Regards
    Urami
    Beauty is in the eye of the beer holder...
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Creating Flash Video

    Hello Everyone and thanks for your help in advance.  I am extremely new to Flash (using CS4) and want to create flash videos for display in web pages.  I have used a few of the wizards and have gotten some rough, very amateurish looking results, but at least they work.  I owuld now like to create a more professional looking product that has a nice looking player skin, a thumbnail preview that is typically included, and some sort of "Click to Play" button.  Would someone be able to point me to a tutorial of this or walk me through the basic steps?  Any help would be greatly appreciated.

    Here are a few links that might help you
    Creating skins:
    http://www.adobe.com/devnet/flash/articles/flv_tutorial_pt2.html
    http://www.adobe.com/devnet/flex/videotraining/ - check the skinning section
    Creating thumbnails:
    http://animation.about.com/od/flashanimationtutorials/ss/flashlesson24.htm - dont miss out on the page numbers. Take the complete tutorial
    Hope it helps

  • Flash CS3 says"Error creating Flash movie...not enough memory available."have 100GB of virtual mem

    With large .fla files I often can't get Flash to output .swf files.  Usually I get the message "Error creating Flash movie.  There was not enough memory available."  Sometimes though Flash looks as if it has finished publishing (although slightly too quickly to have really done it), and then there has not been a .swf file created.
                Sometimes it's simply a matter of restarting Flash and trying again a few times until Flash decides to cooperate.  But now I have a file that just seems like it will never output.   My computer has 3 GB of RAM and 100 GB of virtual memory.  The .fla file is 152 MG and the .swf would probably be about 20-25 MB.
    If there is a workaround in CS3, that would be great.  If not, I would upgrade to CS5, if I knew that it would not have the same problem.
    I was told by at least two people at Adobe support that the problem has gone away with CS5, but I downloaded the CS5 trial version, and it will not output a .swf of my project.  In this case it doesn't give the error message, but just fails silently.

    Has this memory limitation been fixed in CS4 or CS5?  I have to say, I'm geting really fed up with having to
    spend hours coaxing Flash to output .swfs.  Is there a reason that it can't use the
    3MB of Ram available to it?

  • How to allow non-admin users to install software updates of Java, FLASH and Adobe Reader?

    Hi all,
    I have a company (+150 users) and I would like  to allow users to update Java, FLASH and Adobe Reader only.
    These software are already installed in the hosts, but there are updates of the program every week and it needs to be updated.
    How can I give permissions to every user in the domain to do that? Just "Java, FLASH and Adobe Reader"
    Remember that I dont want distribute software because they were installed.
    I tried to enable "Enable user to patch evelated products" directive but it didn't work at my domain.
    is it possible?

    I have a method that works for FLASH player, but am trying to come up with a method for the other 2 myself.  To automate flash player, I created a Policy and added the following:
    Under Computer Config, Prefrences, Windows Setting, Files I created a new File Item.
    I set Action = Replace, Created a Source File named mms.cfg* (more below) and have the destination file as systemroot%\System32\Macromed\Flash\mms.cfg (or %systemroot%\SysWOW64\Macromed\Flash\mms.cfg for x64)
    I used notepad to edit the mms.cfg, and used the following in the body:
    AutoUpdateDisable=0
    SilentAutoUpdateEnable=1
    AutoUpdateInterval=0
    My non-admin users now update flash in the background silently and automatically.

  • Flash and Adobe Reader XI

    I am importing a swf file into a pdf file and my startDrag functions are not working anymore. They did with version X of the acrobat reader. I know that the reader has no own Flash-Player anymore.
    I updated Flash to the recent version but still having problems wit drag and drop.

    Hi Dave,
    yes i can. i hope this could help. I attach a pdf file containing a swf-file. the white boxes on the left can be dragged and dropped. it worked
    in the old reader version. but it does not with the newer xi version on windows. maybe you can check it out.
    thank you very much
    jan waehning
    Am 14.12.2012 um 10:59 schrieb Dave Merchant:
    Re: Flash and Adobe Reader XI
    created by Dave Merchant in Rich Media & 3D - View the full discussion
    Can you post a sample file? Dragging elements on the Stage of an embedded rich media annotation ishould still work as it did before, provided you have installed the Acrobat Flash Player plugin, but it doesn't work between the Stage and other areas of the screen (or between two separate SWFs).
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4920708#4920708
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4920708#4920708
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4920708#4920708. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Rich Media & 3D by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How to create crossword using Adobe captivate

    how to create crossword using Adobe captivate

    OK.  Again I am not needing clarification here.  Did you INSERT the SWF as an animation into the Captivate project? Or, did you keep the SWF as an external file?  If the SWF is external to the main Cp SWF then perhaps it's not working when you publish because the content cannot find the SWF.  If you have made sure that the SWF is definitely in the publish location, check whether or not you have that location set as a trusted location in your Flash Global Security settings.

  • Can anyone contribute some inputs for creating flash website?

    Basically Iam new to flash actionscript3.0, I am plannning to create Flash website. I need some help from anyone like creating button events, getting url, loading dynamic text etc. If you can pls share useful source file which is helpful for me.
    Thanks,
    Habib

    As a relative newbie to Flash myself I'd simply recommend getting stuck in and messing about, find out how to do each individual thing as you come up against it. Don't be scared off by the new environment, if you just dive in you'll be up and running in no time Oh and don't expect the first thing you make to be of any real use - create something just to mess about in then start over once you know what you're doing a bit more.
    I found this collection of videos very helpful in getting up and running:
    http://tv.adobe.com/watch/learn-flash-professional-cs4/getting-started-01-understanding-fl ash/

  • I have a Dell Inspiron 1545 and I can't download Adobe flash or Adobe acrobat reader, when I try to play my games it says update flash and when I try to download it the screen comes up blank

    I have a Dell Inspiron 1545 and I can't download Adobe flash or Adobe acrobat reader, when I try to play my games it says update flash and when I try to download it the screen comes up blank

    Try the offline installers:
    Flash Player for ActiveX (Internet Explorer)
    Flash Player Plug-in (All other browsers)
    For Adobe Reader: http://get.adobe.com/reader/enterprise/

  • Since changing our computer I have been unable to download ebooks to my Reader Library I get a message Some file types associated with EPUB files are not associated with Reader Library; Waterstones suggest that I may have accidentally created a new Adobe

    When I try to download them from the Waterstones website I get a message saying:
    ‘Some file types associated with EPUB files are not associated with Reader Library.  Do you want to associate them now?  When I reply yes I get another message; ‘Configuration error unable to update EPUB files check network firewall and try again’.
    The ‘books’ are saved in the Download directory and I can’t transfer them from there to my E-Reader. I have not had any problems before, it was very simple; I saved the download and it automatically went into the Reader Library.
    I contacted HP and they said it is a software error and suggested I contact Waterstones.  I contacted Waterstones Customer Support and got the following response:
    As the error message is specifically mentioning the firewall it does sound like something in the firewall settings is stopping the download from taking place correctly. However, the files should not be being saved to the Download folder. It would be worth trying again by going to your Digital Order History on your Waterstones.com account and pressing the download button, and then making sure to press "Open" not "Save". When you press Open rather than Save it should give the option to open the file with Adobe Digital Editions. If the firewall message still comes up then I'm afraid something is blocking it on your end.
    If the above "Open" download method works but you then still get an error message it could possibly be that you have accidentally created a new Adobe ID when setting up on the new computer, rather than signing in with your old Adobe ID. It would be worth trying the aforementioned download technique again first, but if problems did still persist it would be worth calling Adobe themselves on 0207 365 0735, as they should be able to sort out any account issue.
      In response to the first para of Waterstones email I already do what they suggest I do press ‘Open’ not ‘Save’ but I don’t get the open with Adobe Digital Editions (we have installed Adobe Digital Editions on the new computer. Waterstones say we may have ‘accidentally created a new Adobe ID when setting up the new computer’ does that mean that we shouldn’t have installed Adobe Digital Editions on the new computer as it would have already been there? How do I sign in with my old Adobe ID? 

    Hi all after attampting to get some supoport from adobe by phone.... nice people infurating policys as far as support for digital editions or DRM is conserned... However I got no where with support.
    I ended up instaling Digital editions on my desktop PC and going through the motions of registering and borrowing a book then returning it. Then I trying on my iPad, Bluefire worked, Over drive did not so I completely removed Overdrive and reinstalled and re registered. all working now.
    Maybe some one at adobe did something. Maybe the install of the adobe DE client on a PC corrected what ever was out of wack with my account. Mayby the server that my account lives on did a scan disk and corrected a bad clustrer.
    What ever happend My account is actiove and working again. hope this helps others.

  • How to create bookmarks in adobe reader 9

    In adobe reader 7 you could create bookmarks so the viewer could click on them and go to that section of the document. I cannot seem to find it on version 9. All you can do is create thumbnails. Any ideas on how to create bookmarks in the newest version?

    Adobe Reader can't create bookmarks. Adobe Acrobat can create bookmarks.

  • Cw 9.5 for creating plugins for adobe indesign cs2 in mac 10.4.8

    i am new to plugin creations.please anyone give me an basic idea of creating plugins for adobe indesign cs2.
    and how to debug the plugin, how to create it using code warrior 9.5, if any one know the site reference please inform me.
    thanks in advance
    subha

    i am new to plugin creations.please anyone give me an basic idea of creating plugins for adobe indesign cs2.
    and how to debug the plugin, how to create it using code warrior 9.5, if any one know the site reference please inform me.
    thanks in advance
    subha

  • *Urgent*How to insert data from MS SQL to the table that create at the adobe form?

    Hi,
    I'm using Adobe life cycle designer 8 to do my interactive form. I would like to ask how to insert data from MS SQL to the table that i have created in my adobe interactive form?
    I really need the information ASAP as i need to hand in my project by next week... i really appreciate any one who reply this post.
    Thanks

    Tou need to do a couple of things
    1. On the Essbase server, set up an odbc system connection to your MySQL database
    2. In the load rule , go to the file menu and select open SQL data source and in the data source put in your SQL statement . A couple of hints. Where it says Select, don't put in the word select and where it say from don't put in from. The system adds them for you. The easiest way ti enter a SQL statement is to do it all in the select area So if your SQL would normanlly say select * from mytable just enter the code as * from mytable in the select area
    The click ol/retrieve and enter in your connection info. Itshould bring data back into the load rule. Save the load rule and use it

Maybe you are looking for

  • How can i stop itunes from downloading a podcast?

    on my itunes I have a subscription to a series of podcasts (screencastsonline)  I therefore have a folder for the 2011 episodes....  that FOLDER has a GET button to the right... I have not at least I dont think I did press that GET button...  when I

  • Make a read-only text field open by using button and javascript

    Hello I have a form with text fields that I will pre-populate with data. The text fields will be read-only by default. I want to make it so that when a user wants to make edits, he will need to click on a button and in turn, the text field's backgrou

  • Purchase date

    What is the quickest way for me to determine the date that I purchased my macbook? Thought I could find it by looking online for date I registered-no luck.

  • Issue with Rotational Shifts

    Dear Expert, We have 3 shifts in plants for labors. But 75% there is a fluctuation of their daily working timing. Like employee planned working time is 08:00 to 04:00. he will work this week in this timing. But as per work load,he will work in other

  • Strict servlet API: cannot call getOutputStream() after getWriter()

    i have an applet which will communicate with a servet ,  but got following error in the servlet java.lang.IllegalStateException: strict servlet API: cannot call getOutputStream() after getWriter() at weblogic.servlet.internal.ServletResponseImpl.getO