Flash templates with text?

Hi. I am working on a small video that includes a picture, a song, falling snow (I am using Flash's snow template) and scrolling text. My problem is i can get everything to work property until the last step, which is adding the text. When i add the text the snow stops. I have no idea why its happening or what im doing wrong. Also, while im here, is there a way to slow down the text? The scrolling text zips through the stage and i can't figure out how to slow it down.
I am using Adobe Flash CS5 on Mac 10.8.2. Yes, I checked the updates last night and I have all the updates.
Thank you in advance!

again, use:
var alreadyExecuted:Boolean;
if(!alreadyExecuted){
alreadyExecuted=true;
// Number of symbols to add.
const NUM_SYMBOLS:uint = 75; var symbolsArray:Array = [];
var idx:uint;
var flake:Snow;
for (idx = 0; idx < NUM_SYMBOLS; idx++) {
    flake = new Snow();
    addChild(flake);
    symbolsArray.push(flake);
    // Call randomInterval() after 0 to a given ms.
    setTimeout(randomInterval, int(Math.random() * 10000), flake);
} function randomInterval(target:Snow):void {
    // Set the current Snow instance's x and y property
    target.x = Math.random()* 550-50;
    target.y = -Math.random() * 200;
    //randomly scale the x and y
    var ranScale:Number = Math.random() * 3;
    target.scaleX = ranScale;
     target.scaleY = ranScale;
    var tween:String;
    // ranScale is between 0.0 and 1.0
    if (ranScale < 1) {
        tween = "slow";
    // ranScale is between 1.0 and 2.0
    } else if (ranScale < 2) {
        tween = "medium";
    // ranScale is between 2.0 and 3.0
    } else {
        tween = "fast";
    //assign tween nested in myClip
    myClip[tween].addTarget(target);

Similar Messages

  • Adobe Captivate 4 - Flash Movie with Text Animation

    I'm working on a project which has a slide which includes a Flash Video.
    I'd like to put a Text caption over the video.
    I've tried Text Caption and Text Animation.
    Neither of these work......
    Please let me know if there is some way to do this which I haven't considered or I need to adjust my settings.
    Thank you,
    David Gambal

    Unfortunately, that is not an option.   I work for a state government and the computers are locked down for security reasons.  Updates are handled by an IT group and pushed out to all state computers.  We were running Flash Player 10 and everything worked fine until the Flash Player Update was pushed out as a Microsoft Update on January 8th.  There have been subsequent "Security Updates" to the Flash Player pushed out via Microsoft and none have corrected the problem.  Even if I could uninstall the current Flash Player and install an older version, it would just be updated to the current Flash Player tonight.

  • Flash Site Template Help With Text

    So I downloaded a flash template to use for my website... all I need are some editing of the texts, pictures, and some of those links. Here is the template:
    http://www.templatemonster.com/flash-templates/24451.html
    My problem is I'm completely NEW at flash. I used to use FrongPage 2003 for my webdesign but I wanna use this for my new website (since it looks a lot better!) How do I edit the text fields? I can only seem to move the bar along the timeline to watch the animation, and see all the layers and item properties that none have anything with the text in them. And also the images as well, if I need to do anything special with those (within template link above you'll see they flash white for a second) and the main logo has some animation there. I have all the fonts required but I don't know if I also have to make the logo with those special white flashy lines like a GIF animator or if that's just some special affect within the template itself.
    Now due to legal notices specified by the site I can't share the template with you but I'll attempt to answer any and all questions i can to see if I can get this all figured out so I can begin adding my own content to the site. Thanks in advance.

    Doesn't look like there's an xml file for the text. Reading the template help index, and its saying some text might have complex coding for special effects and that I'd have to edit by the Library or something, so I'll try using that reference for now. I appreciate the help and I may come back if this can't help me lol
    EDIT:   It says I'm missing the font file "tahoma" mapped to _sans    ....??  I have tahoma... as well as the main title logo isn't appearing in the .fla file anymore even though I got the correct font. I'm confused >.<
    Edit 2: As well I get this a lot on many different areas:
    Forms Component - Version 0.81
    Couldn't load configuration.
    Message was edited by: undreamingreality

  • Need help with a flash template

    I'm an action script novice, so I downloaded a cool Flash template to beef up a part of a project I'm working on.
    That template rotates thumbnails of web sites in a 3D space.
    When user clicks on them they launch a new web page.
    What I did:
    I substituted the web thumbnails with characters and each character has an swf (info on each character) that i would like to load when user clicks on that character. Now, this thumbnail swf is loaded into a holder within a main movie when user clicks on "The Sensetionals" of the main buttons (in that main movie).
    What I want to do:
    1. When user clicks on each charater, I would like that character's swf to load into the same holder as the thumbnail swf.
    Then I would have a close button that will unloadmovie that character swf and load back the thumbnail swf.
    2. In the thumbnail swf, i would like to see the names of each character when user rolls over them. It's in the original code now, and shows up when I test the thumbnail swf on its own, but it's not showing up when it plays inside holder of the main movie. AND it's under the shadow/reflections, not readable. So, I would like to see it show up AND on top of the reflections.
    Here's the link to view my version.
    NOTE: ENTER ENGLISH ONLY
    http://www.sensetionals.com/SenseTest/
    I hope that's clear and not asking too much, but I'm really stuck and desperate here.
    Any help would be greatly appreciated!
    Here's the current code inside the thumbnail source file:
    stop();
    // total is length of label_list OR link_list
    // OR total frames inside "flashmo thumbnails"
    var total:Number = 13;
    // length of label_list array and length of link_list array must be equal
    // to length of frames inside "flashmo thumbnails" movieclip
    var label_list:Array = new Array( "Dr Anatomy", "Feelix", "Eyeris", "T Buds", "Earl", "Nosey", "Dr Von Micron", "Karlos", "Tiny", "Funguy", "Protozoom", "Virusam", "Bacterio");
    var link_list:Array = new Array("AnaTomyMov.swf", "FeelixMov.swf", "EyerisMov.swf", "BudMov.swf", "EarlMov.swf", "NosieMov.swf", "VonMicronMov.swf", "KarlosMov.swf", "TinyMov.swf", "FunguyMov.swf", "ProtozoomMov.swf", "VirusamMov.swf", "BacterioMov.swf");
    var radiusX:Number = 330;
    var radiusY:Number = 90;
    var centerX:Number = 400;
    var centerY:Number = 140;
    var speed:Number = 0.005;
    tn_group_mc._visible = false;
    info.text = ""; fm_label.text = "";
    for (var i = 0; i<total; i++)
    var t = tn_group_mc.duplicateMovieClip("tn"+i, i);
    t.tn_mc.gotoAndStop(i+1); t.tn_shadow_mc.gotoAndStop(i+1);
    t.fm_label = label_list[i];
    t.fm_url = link_list[i];
    t.angle = i * ((Math.PI*2)/total);
    t.onEnterFrame = mover;
    t.fm_button.onRollOver = function()
    fm_label.text = " " + this._parent.fm_label;
    t.fm_button.onRollOut = function()
    info.text = ""; fm_label.text = "";
    t.fm_button.onRelease = function()
    getURL(this._parent.fm_url);
    function mover()
    this._x = Math.cos(this.angle) * radiusX + centerX;
    this._y = Math.sin(this.angle) * radiusY + centerY;
    var s = this._y /(centerY+radiusY);
    this._xscale = this._yscale = s*100;
    this.angle += this._parent.speed;
    this.swapDepths(Math.round(this._xscale) + 100);
    this.onMouseMove = function()
    speed = (this._xmouse-centerX) * 0.0001;

    Hi
    Press F1 inside Flash, this brings up Help. In the text box
    at the side of Search - enter Multilingual Content.
    This gives you a sample for using several languages.
    Hope it helps

  • I can't seem to locate the text and buttons on a flash template I bought

    Hi Everyone,
    I have been working with this flash template I purchased online and can't seem to be able to change the text that is displayed on it's buttons except for the first one. There are four buttons to the side but I can only change the first button's contents as I see them in the "Library". I am new to Flash and learning. Please guide me as to where I can find the other components.
    I can only see and change "WorldWide" and "Call Anytime Anywehre" button.
    Flash source file posted here:
    https://docs.google.com/leaf?id=0B8tFparkP0rKMzliNTcxZDktYmQ3My00ZjJiLWFhMDQtNTEzNWExMWZlN Dgx&hl=en&authkey=CKrQwcwF
    I would also like to add a link to each button and I can't seem to locate the URL Link button. I am using Adobe Flash CS5.
    Much appreciated.    

    What I described is what your file involves.  In your library there is a "text" folder .  In that folder are movieclips named txt_1, and txt_2 which hold the text used in your buttons.  If you open those movieclips for editing you will see each has four frames with different text in each frame.  That is where you need to change your text for the buttons.
    If you look at the actionscript in the top layer of those movieclips, you will see how it uses a value assigned to the button/mc to determine which frame it displays....
    gotoAndStop(_parent._parent.num);
    And if you look at the actionscript applied to the button on the main timeline (select the button with the Actions window open), you will see how that num value gets assigned to each instance...
    onClipEvent (load) {
    num = 1;
    this.hitArea = this.area;

  • Help with a Flash Template??

    Hi,
    I need to learn how to edit a simple Flash template and I
    don't have ANY time to be messing around with it.
    So, I have a HUGE favor to ask of someone here.
    I've put the template I'm going to work from on my
    server….You can see it here:
    www.adzfusion.com/test_files/flash.swf
    And download it here:
    www.adzfusion.com/test_files/FFBusinessBlocks.zip
    What I'm looking for is for someone to just use one of the
    colored boxes (say, the orange one?), as an example and show me how
    to edit it.
    If you could use Camtasia or www.jumpcut.com (free) and make
    a quick video showing how to get into the code (or wherever I need
    to get) and show me: 1. How to change the components like text, and
    color of the little box, and 2. How to change the content and
    graphical elements of the page that the box links to.
    Anyways, if you can do this small favor for me that would be
    great. I CAN pay you, but like I said, there's no budget for this
    project (yet) so it would be a token sum….However, ongoing
    business/work (with good pay) will be available to you once our new
    service takes hold.
    Anyways, PM me or post back and let me know how much (or
    little) you'd be willing to do this for :-) ….And maybe we
    can post a link to your video here in the forum, so others can see
    it too?
    Thanks so much!
    -KC

    Hi
    Press F1 inside Flash, this brings up Help. In the text box
    at the side of Search - enter Multilingual Content.
    This gives you a sample for using several languages.
    Hope it helps

  • Issue with 'text box' in rtf sub template for peoplesoft XMLP

    Hi all,
    i have a weired problem using 'text Box' in a sub template. I am calling a sub template from my template. In my Sub template i have a text box ( i am using text box bcoz i want to justify the text not to the page margin but starting from a specific column.not sure if there is any other way with which i can do the same !!) . When i process the report (using application engine program) i get the below error
    Message Log entry:
    [052311_071441208][oracle.apps.xdo.common.xml.XSLTWrapper][ERROR] XSL error:
    psxmlp://SUB_BMX2<Line 63, Column 191>: XML-22031: (Error) Variable not defined: '_MR'.
    @Line 63 ==> </xsl:stylesheet>
    [052311_071441216][oracle.apps.xdo.template.FOProcessor][EXCEPTION] java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:618)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeProcessXSL(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(Unknown Source)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(Unknown Source)
         at oracle.apps.xdo.template.FOProcessor.createFO(Unknown Source)
         at oracle.apps.xdo.template.FOProcessor.generate(Unknown Source)
         at com.peoplesoft.pt.xmlpublisher.PTFOProcessor.generateOutput(PTFOProcessor.java:74)
    Caused by: oracle.xdo.parser.v2.XPathException: Variable not defined: '_MR'.
         at oracle.xdo.parser.v2.XSLStylesheet.flushErrors(XSLStylesheet.java:1534)
         at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:521)
         at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:489)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:271)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:155)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:192)
         ... 13 more
    [052311_071441218][oracle.apps.xdo.template.FOProcessor][ERROR] End Memory: max=64MB, total=11MB, free=1MB
    PeopleTools 8.49.27 - Application Engine
    Copyright (c) 1988-2011 PeopleSoft, Inc.
    All Rights Reserved
    Processing started
    data extraction for EMPLID:1000646332 EMPL_RCD:0 EFFDT:2009-12-28 and EFFSEQ:6
    CFilem::LoadDefn(RDCRHIUTEECKNDZN2SPSRQ) : read 1 chunks
    UnchunkStuff : read 1 chunks for nCharDataLen 10520 chars
    CFilem::LoadDefn(RDCRHIUTEECKNDZN2SPSRQ) : after decode & decompress: 35330 bytes
    Calling XMLP
    Processing Report Defn:TR_BMX2
    Error Executing XMLP.Error generating report output: (235,2309) PSXP_RPTDEFNMANAGER.ReportDefn.OnExecute Name:ProcessReport PCPC:51952 Statement:1163
    Called from:TR_LATAM_CONTRACTS.ContractsXML.OnExecute Name:ExecuteXmlp Statement:16
    Called from:TR_LAMCNTRCT.MAIN.GBL.default.1900-01-01.Step04.OnExecute Statement:20
    Process 442706 ABENDED at Step TR_LAMCNTRCT.MAIN.Step04 (PeopleCode) -- RC = 22 (108,524)
    Process %s ABENDED at Step %s.%s.%s (Action %s) -- RC = %s
    It works fine when i remove the text box from my sub template. I tried to put the text box directly in the main template and it worked fine !! it is erroring out only when i use the text box in sub template !!
    Template file:
    <?import:psxmlp://SUB_BMX2?>
    <?choose:?>
    <?when: .//LETTER_CD=”PA4”?>
    <?call: BA101?>
    <?end when?>
    <?otherwise:?>
    Invalid Letter Code. No Sub Template Call defined for this Letter Code.
    <?end otherwise?>
    <?end choose?>
    Sub Template:
    <?template:BA101?>
    Testing without text box.
    Testing with text box
    there is a text box with text here .. cannot be copied from word !!
    <?end template?>
    i got the below error when i tried to 'preview' the report from my report definition.
    Error generating the report output: During calling method PTFOProcessor.generateOutput, the XDO engine throws an exception:NULL. (235,3101) (235,2309)
    Error occurred during the process of generating the output file from template file, XML file, and the translation XLIFF file.
    Any help would be greatly appreciated.
    Edited by: Naveen Kumar on May 23, 2011 4:31 AM

    misunderstood =/
    Original (Coming - output):  "<PAY_TXT>PAYκ Contact your bank or financial institution to make this payment from your cheque, savings, debit or transaction account.</PAY_TXT>"
    it's in output but what is data in database ?
    sorry but without knowing about source data for forming the xml i haven't ideas about your problem
    in db it's "TM " or "™" or ... ?
    Original (Coming - output):  "<PAY_TXT>PAYκ Contact your bank or financial institution to make this payment from your cheque, savings, debit or transaction account.</PAY_TXT>"
    Something like XAE or "K" after PAY Value in the xml tag and continued the text value.  (Tag value is not getting copied exactly here - i am sorry for that )
    that's ok. i need to see the problem not the data as is
    Expected (output):  "Here it needs to produce the "PAY TM" (Here "TM" should be super scripted to "PAY" Value in tag).
    as super scripted in xml?
    as idea - you can have <PAY_TXT>PAY TM</PAY_TXT> and in publisher set TM as super
    Designing XSL Subtemplates - 11g Release 1 (11.1.1)

  • Trying to create a template with adjustable text fields.

    I need to creat a form or template with adjustable text and image fields.  I need to have a background template for multiple pages that when I make a change to the template it make the changes to all pages, like the master page of indesign.  I also need to have text and image fields that are specific to each page but the dimensions and placement are controled by the template,but the information inside is page spacific.  What program should I use and anyone know a tutorial for help?

    What you want would require elaborate programming or dealing with variables in Framemaker or InDesign (Server) to dynamically generate the output upon request. You can of course get part of the features using normal variables in ID e.g. to pull linked images based on some parameters, but generally your request sounds too complex to deal with all scenarios.
    Mylenium

  • Problems with Ñ and accents while editing flash template

    Hello
    Please, someone help!
    I have been trying to edit the text of a flash template and when i publish it, i cant see the Ñ and the accents
    i have been looking for a solution and i have found over the internet:
    system.useCodepage = true;
    But that does not work, i still cant see that symbols when the file is published.
    this is a dynamic generated text from code inside the fla. i am using cs5.
    here is the code i have in the template:
    var menu_label:Array = new Array("BIENVENIDO", "DISEÑO GRAFICO",
                                     "DISEÑO WEB", "PORTAFOLIO",
                                     "PUBLICIDAD ON-LINE", "IDENTIDAD CORPORATIVA",
                                     "REGISTRO DE DOMINIOS", "CONTACTO",
                                     "ALOJAMIENTO WEB" );
    var total:Number = menu_label.length;
    var i:Number = 0;
    var page:Number;
    var main_menu:MovieClip = new MovieClip();
    stage.addChild(main_menu);
    for( i = 0; i < total; i++ )
        var btn = new flashmo_button();
        btn.name = "flashmo_btn" + i;
        btn.scaleX = btn.scaleY = btn.alpha = 0;
        btn.item_no = i;
        btn.flashmo_bg_color.gotoAndStop( i + 1 );
        btn.flashmo_click_area.addEventListener( Event.ENTER_FRAME, btn_enter );
        btn.flashmo_click_area.addEventListener( MouseEvent.ROLL_OVER, btn_over );
        btn.flashmo_click_area.addEventListener( MouseEvent.ROLL_OUT, btn_out );
        btn.flashmo_click_area.addEventListener( MouseEvent.CLICK, btn_click );
        var each_substring:Array = menu_label[i].split("|"); 
        btn.flashmo_button_label.fm_label.text = each_substring[0]; 
        btn.item_url = each_substring[1];
        btn.flashmo_button_number.fm_number.text = ".0" + ( i + 1 );
        main_menu.addChild(btn);
    function btn_over(e:MouseEvent):void
        e.target.parent.over = true;
    function btn_out(e:MouseEvent):void
        e.target.parent.over = false;
    function btn_click(e:MouseEvent):void
        var mc = e.target.parent;
        if( mc.item_url != undefined )
            navigateToURL( new URLRequest( mc.item_url ), "_parent" );
        else 
            change_page(mc.item_no);
    function btn_enter(e:Event):void
        var mc = e.target.parent;
        if( mc.over == true )
            mc.nextFrame();
        else
            mc.prevFrame();
    function change_page(no:Number):void
        page = no + 1;
        play();
    var default_volume:Number = 0.60; // 0.00 to 1.00
    var bg_music:Sound = new flashmo_music();
    var music_channel:SoundChannel = bg_music.play(0, 10000);
    var music_volume:SoundTransform = new SoundTransform();
    music_volume.volume = default_volume;
    music_channel.soundTransform = music_volume;
    sound_control.stop();
    sound_control.addEventListener( MouseEvent.CLICK, play_pause );
    function play_pause(e:MouseEvent):void
        music_volume.volume = default_volume;
        if( e.target.currentFrame == 1 )
            music_volume.volume = 0;
        music_channel.soundTransform = music_volume;
        e.target.play();

    Have you embedded the fonts?
    You can do it following these steps (I'm using Flash CS4):
    Select the textfield (I think is the fm_label).
    In the textfield properties, character, you choose "Character Embedding...".
    There, you can choose "Basic Latin" for example.
    Then, add the characters you need that aren't in "Basic Latin". For example, ñ.
    The image below shows what I said.

  • Problems with flash template

    Hello,
    I am trying to use a flash template to create a timeline,
    However, I am a new user and having a few issues. The Link to the
    Fla i am working with is below. For some reason, when you click on
    the first button the first time, it references "timeline 1 movie" a
    second click on that same button will take you to "timeline 2
    movie" on the second button, it switches between "timeline 2 movie"
    and "timeline 3 movie" on alternate clicks. Any idea what I could
    change so that the first button only takes you to "timeline 1
    movie" and button 2 takes you too "timeline 2 movie" and so forth?
    Any advice would be great appreciated!
    Thanks
    Ryan
    http://www4.wittenberg.edu/student%20webdev/Ryan/admission/working2.fla

    Go to your first button, look in the Actions panel for the
    on(release) line of code and change it from gotoAndPlay to
    gotoAndStop, i.e.,
    on (release) {
    _root.gotoAndStop("timeline1");
    Now it will stay at your timeline frame instead of
    automatically playing to the next one. If this is what you want, do
    the same for all the other buttons. (Nice template--I think I'll
    adapt the idea to something of my own someday. My Life in Pix or
    something.)

  • Need help with flash templates in Mac...

    Hello,  I did some searches in the forum but found nothing.
    I have a problem.  I have a Mac and and using Dreamweaver CS5.5.
    Recently I download some templates with flash from Hostgator.
    The message I get is:   "This page contains some SWF objects that may not work properly in the most recent versions of Internet Explorer.  Dreamweaver cannot convert them to the new SWF markups.  Please delete each of them a insert again"
    Could you help me please?   
    Thanks,

    Hello,
    The support from HostGator.com told me this:
    After reading about Adobe Dreamweaver and using the library SWF objects. This seems to be a fairly particular error with Adobe Dreamweaver CS4.
    I have read three articles:
    http://forums.adobe.com/message/2958378?tstart=0
    http://www.dreamweaverclub.com/forum/showthread.php?t=33323
    http://www.vbforums.com/showthread.php?t=579625
    They all concur this error is completely ignorable in some way. If you include the object, and just ignore the message, your content will still upload to your site. This has to do with how adobe has changed the embedding of objects since previous versions.
    However, what I can concur from all of this is that you need to simply just re-add the file to your site/library, or just ignore the error message and the embed code should work just fine.
    I test a hostgator template with flash on their server, and works fine.
    I want to know your opinion.  T hanks for your help...

  • CAN Text Box/Shape with Text on top of Flash?

    Hi,
    i'm wondering, Do the Text Box/Shape with Text posible to put on top of the Flash?Do it able to read the Text after published?
    I'm scratching my head...Safari Have no problem to read it but Windows user can't read the text.
    Any idea?

    OGC Management wrote:
    ... if I checked the invert box it corrected the problem! 
    your going to chase your tail with that "solution".
    Select all (ctrl+a)(cmd+a) and set Text Wrap to none as shown.
    The item could be on a master page or a locked layer, but  you indicate you were able to modify the wrap attributes...

  • We would like to create a picture book with text, pictures and music. What can we use, is there a template?.

    We would like to create a picture book with text, music and pictures.  Is there a template for this or an app.  What are people using for picture books?

    Have you looked at iBooks Author?
    http://www.apple.com/ibooks-author/
    It has its own forum at
    https://discussions.apple.com/community/books/ibooks_author

  • What would keep a file with text in templates from updating all the site pages using that template?

    I am using the trial version of DW and I have a file in Templates with a defined banner with moving text in it. I have subsequent pages for the entire site and the template file is part of each of those. when I want change some part of the file in template and then I save, each page is also changed. Or at least it did. I tried Windows and Apple with the same result. I am at a loss. I tried modify but that did not work either. I am missing something obvious.

    Did you check the code in your template.dwt file for errors?
    http://validator.w3.org/
    Did you save over or rename your original Template.dwt file?
    Did you move your Template.dwt file from it's Templates folder?
    Nancy O.

  • Problem playing an imported flash template in dreamweaver cs5

    hi,i just downloaded a flash template from flashmo.com and imported it to dreamweaver cs5 through Insert > media > SWF and it loaded. but the problem is, when i click the live view or play the file in the properties,nothing shows up.except some texts "loading XML data..."
    all the flash templates i have downloaded face this prob. i have no idea where is the mistake.
    what could be the problem?any help,plz.

    From their website:
    " Adobe Flash (version 8 or higher) is required to edit the
    FLA file.
    - Use the source codes at your own risk after downloading and
    flashmo.com is
    not responsible for any bugs or errors caused by
    ActionScripts."
    Do you own Flash? Are you familliar with action scripts? If
    not, then you
    probably want to start with a plain html template and learn
    how to code html
    and CSS. Flash sites look nice but they are not friendly for
    Search Engines
    or users who don't have flash player installed on their
    system.
    Here are some on-line tutorials to help you get started with
    html and CSS
    code:
    www.w3schools.com (free)
    www.Lynda.com (pay videos)
    Adobe help - "Getting Started"
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "jdbcmcbride" <[email protected]> wrote in
    message
    news:ftr2vf$i4q$[email protected]..
    > I am a first-time user of DreamWeaver and am currently
    learning how to
    build a
    > website with the Adobe HTML article that they have.
    However, I found a
    flash
    > template that I downloaded as it is exactly what I want
    to use for my
    website.
    > My problem is, I don't know how to make it work.
    >
    > The template is located at
    http://www.flashmo.com/home
    and it is the one
    on
    > page 5 called "037 Wooden". If anyone can tell me what
    to do to get this
    to be
    > my website, I would really appreciate it.
    >

Maybe you are looking for

  • Canon iR C2380i Failure Message

    Hi, I'm trying to setup my laptop so I can print wireless via a Canon iR C2380i. I'm running OS X 10.6.7 on a MacBook Pro i5. The problem is when I'm trying to print a document, I get the failure message "AN ERROR OCCURRED.: -50" and then a print wit

  • Acrobat X freezes when I run a JavaScript Action after about 200 files.

    Acrobat X freezes when I run a JavaScript Action after about 200 files, batches with less than 200 files work well.  I can watch the Acrobat.exe process in the resource monitor and when the Threads reach about 2000 and the Working Memory reaches 500m

  • New Macbook Pro Retina is pixelated on external monitor

    I have recently bought a Macbook Pro Retina Display 13" and when I connect it to my external monitor (Samsung) with a HDMI cable the screen is blurry and pixelated. I have connected my old macbook to this monitor with no problems. I tried adjusting t

  • How to switch on MacBookPro monitor instantly after being in clamshell mode

    So I use Skype Video a lot, and I use a Samsung external monitor. The problem is that I have my MacBook in Clamshell mode nearly all the time, and at the moment, when I get a Skype video call, all I can do is open the screen on the MacBook and just h

  • HOT TO SET THE OUT PUT MESSAGE FOR PURCHASE ORDER

    As i was saving the Purchase order in Me21n the error message that came up was " NO OUTPUT MESSAGE SET FOR THE PO " HOW  DO I SET THE OUTPUT MESSAGE AND SET THE PO PRINT SETTING KINDLY HELP.