Cs3 Default templates - How to modify/add

I have Dreamweaver CS3 and wish to add new templates for html5 & some custom ones. I want them to be in the default list when selecting "new". I don't want them to be site specific. I want to be able to edit/maintain the ones dreamweaver offers when you select - for example - new blank html page.
For example my version does not offer a blank html5 page.
Thanks in advance for your help.

Hello Deepak,
Thanks for reply.
i have check thru SAP note 929353
I have not find Any html links or .html extention file. i am able to see  only Resource object keys and URL parameter
for example
process.template.id=CECE64A19C8F11DAA5C1000E7FA67AEB&process.autostart=true
where exactly i can change HTML files.
Please help me
Thanks
Regards
Vijai

Similar Messages

  • Flash CS5 default template presentation (advanced) modify to play as .mov or .avi

    I am using the default template for presentation (advanced version) to do my presentation.  However, I want to create a .mov or avi from this default template whereby the frames within the "Slides MovieClip" play automatically (in a .mov or .avi file) as opposed to using the keyboard or the buttons to change frames (as in a swf).
    What can I do to the "Actions" to make this convertion?
    import fl.transitions.*;
    // USER CONFIG SETTINGS
    var buttonsOn:Boolean = true; // true, false
    var pageNumberOn:Boolean = true; // true, false
    var transitionOn:Boolean = true; // true, false
    var transitionType:String = "Fade"; // Blinds, Fade, Fly, Iris, Photo, PixelDissolve, Rotate, Squeeze, Wipe, Zoom, Random
    // END USER CONFIG SETTINGS
    // EVENTS
    stage.addEventListener(KeyboardEvent.KEY_DOWN, fl_changeSlideKeyboard);
    prev_btn.addEventListener(MouseEvent.CLICK, fl_prevSlideButton);
    next_btn.addEventListener(MouseEvent.CLICK, fl_nextSlideButton);
    function fl_changeSlideKeyboard(evt:KeyboardEvent):void
              if(evt.keyCode == 37) // LEFT
                        fl_prevSlide();
              else if (evt.keyCode == 39 || evt.keyCode == 32) // RIGHT OR SPACE
                        fl_nextSlide();
    function fl_prevSlideButton(evt:MouseEvent):void
              fl_prevSlide();
    function fl_nextSlideButton(evt:MouseEvent):void
              fl_nextSlide();
    // END EVENTS
    // FUNCTIONS AND LOGIC
    function fl_prevSlide():void
              if(slides_mc.currentFrame > 1)
                        slides_mc.gotoAndStop(slides_mc.currentFrame-1);
                        if(transitionOn == true)
                                  fl_doTransition();
                        if(pageNumberOn == false)
                                  slideNumber_txt.text = "";
                        } else {
                                  slideNumber_txt.text = String(slides_mc.currentFrame + "/" + slides_mc.totalFrames);
    function fl_nextSlide():void
              if(slides_mc.currentFrame < slides_mc.totalFrames)
                        slides_mc.gotoAndStop(slides_mc.currentFrame+1);
                        if(transitionOn == true)
                                  fl_doTransition();
                        if(pageNumberOn == false)
                                  slideNumber_txt.text = "";
                        } else {
                                  slideNumber_txt.text = String(slides_mc.currentFrame + "/" + slides_mc.totalFrames);
    function fl_doTransition():void
              if(transitionType == "Blinds")
                        TransitionManager.start(slides_mc, {type:Blinds, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Fade")
                        TransitionManager.start(slides_mc, {type:Fade, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Fly")
                        TransitionManager.start(slides_mc, {type:Fly, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Iris")
                        TransitionManager.start(slides_mc, {type:Iris, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Photo")
                        TransitionManager.start(slides_mc, {type:Photo, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "PixelDissolve")
                        TransitionManager.start(slides_mc, {type:PixelDissolve, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Rotate")
                        TransitionManager.start(slides_mc, {type:Rotate, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Squeeze")
                        TransitionManager.start(slides_mc, {type:Squeeze, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Wipe")
                        TransitionManager.start(slides_mc, {type:Wipe, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Zoom")
                        TransitionManager.start(slides_mc, {type:Zoom, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Random")
                        var randomNumber:Number = Math.round(Math.random()*9) + 1;
                        switch (randomNumber) {
                                  case 1:
                                            TransitionManager.start(slides_mc, {type:Blinds, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 2:
                                            TransitionManager.start(slides_mc, {type:Fade, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 3:
                                            TransitionManager.start(slides_mc, {type:Fly, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 4:
                                            TransitionManager.start(slides_mc, {type:Iris, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 5:
                                            TransitionManager.start(slides_mc, {type:Photo, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 6:
                                            TransitionManager.start(slides_mc, {type:PixelDissolve, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 7:
                                            TransitionManager.start(slides_mc, {type:Rotate, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 8:
                                            TransitionManager.start(slides_mc, {type:Squeeze, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 9:
                                            TransitionManager.start(slides_mc, {type:Wipe, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 10:
                                            TransitionManager.start(slides_mc, {type:Zoom, direction:Transition.IN, duration:0.25});
                                            break;
              } else
                        trace("error - transitionType not recognized");
    if(buttonsOn == false)
              prev_btn.visible = false;
              next_btn.visible = false;
    slides_mc.gotoAndStop(1);
    stage.scaleMode = StageScaleMode.SHOW_ALL;
    // END FUNCTIONS AND LOGIC
    stop();
    Many thanks so much for reading.  Would appreciate any help.
    --Andy

    You need to change the code in the EVENTS section.  It curently has event listeners assigned to the stage and some buttons for calling the functions that change the slides.  What you could do is get rid of that event listener code and implement a Timer that calls the fl_nextSlide()  function.
    I do not know what to answer as far as making it into an avi or mov file.  My impression with creating video files from Flash files is that the design needs to be timeline-based for that to happen (meaning it needs to play frame-by-frame along the timeline).

  • How to modify (add a new field) existing SOAP data source ?

    Dear Friends,
    I am getting data from Legacy databases (from different Views) mapped to the BW through XI.
    There is an existing SOAP Data source which is mapped to the non-R/3 source system Views through XI.
    My question is:
    Now I wanted to add a new field to the existing SOAP Data source, which will be mapped to the newly added field in the source system by XI.
    Please advice how could I modify the existing SOAP data source?
    Thanks,
    Venkat

    My plan is to add the new InfoObject(field)/BIC/ZXXX in the Datasource --> Map that field to the Info Object Zxxx in Comm Str.  --> Extras (menu) --> Create BW Data source with SOAP connection --> Regenerate the PROXY --> so that now the XI guys could map the new Infoobject in my Datasource to the new field in the Legacy database tables
    But why is that I am not able to add a new field in the Datasource ? I am trying this way: RSA1 --> Infosource tab --> Dbl. click on the existing Datasource --> here...I am trying to add new field in the Datasource...
    is there any other special place where I could add a new field to the existing SOAP Datasource ?
    Please help..?

  • There is no 'Position' field on the advanced Customer Import template - how do i add this?

    Hi All ,
    I'm sure im not the first one to encounter this issue but i dont see another question similar .
    My client would like to also add the customer's 'Position' to the CRM record when they upload the spreadsheet. IE Bob Smith, Managing Director....
    There is no column for 'Position' - How would you suggest going about doing this?
    Thanks .

    Hi,
    If you have generated this field via Admin > CRM > Extend CRM Database, then when going to CRM > Customers > Import Contacts (Advanced), near the bottom of the page, you'll see a drop-down ("Choose CRM Form if you wish to import custom information for contacts") from where you can choose to include the respective field in the import template.
    Kind Regards,
    Alex

  • In Pages, using an Invoice Template, how do I add columns, rows, or add individual functions to cells like I would using Numbers? Is it possible? I'd rather not use numbers because the invoice has a lot of writing as well.

    Here's a sample of the invoice. I would like to automatically calculate the 'amounts', 'totals' and 'subtotals' sections.
    Is this possible? How do I do it?

    Got it!
    Select the cells you wish to either SUM, PRODUCT, COUNT, etc...
    Then, at the top of the screen, press on the INSERT heading,
    then press on the FUNCTION setting,
    then press on the actual function you are looking for,
    and it should automatically insert the function into the appropriate cell it is needed....

  • How do I add more than 4 virtual disks to a client

    Playing around with OVS 3.3.1, just trying to learn.
    When I create a new Virtual host with OVM I can create up to 4 disks. (using the create new not clone or template)
    How do I add more than those 4 presented in the gui?
    - Roland

    It depends… if you're creating a HVM guest than there're only 4 slots available for virtual drives. However, if you are creating a PVM guest, than there're 100+ slots available.
    In case you're creating a HVM guest, you could also mess with the vm.cfg, but I'd stringly advise against that as any change that you do to the guest trhough OVMM is likely to overwrite you manually inserted settings.
    Cheers,
    budy

  • How do I add image upload to web app edit template?

    How do I add image upload to web app edit template. When creating fields I am selecting image from the field type. But the only way to upload and image is when I create the web app item within the admin. The option to upload an image is not available when the user submit web form opens.
    Wont send any of these questions through this email anymore but really needed assistance.
    Thanks,
    Gordon

    On the Details tab of the Web App setup, under Web App Item Options; have you ticked "Allow File Upload" and specified a Default Upload Folder?

  • How to change the default template for a concurrent prog ?

    Hi i have Std Conc prog "Payables Posted Invoice Register". It has a std template with same name "Payables Posted Invoice Register". Now i have created a custom template and attached it to the same Data Definition.
    The Requirement is that only particular users will use the custom template, hence they will chose it while running. BUt what happened now is in the Conc Prog submit screen it is taking my custom template as the default one.
    Hence majority of the users wudnt look at the template and get the custom o/p.
    I want to make the std template itself as the default template and make the custom template available to chose for a smaller set of users.
    Thanks,
    Vj

    Hi Shadab,
    Yes, that is a valid work around but my task is not to create a seperate data definition and a seperate concurrent prog for it. I HAD to use the standard concurrnet prog but jsut add my template as a non defaulted template.
    Anyways, i have solved it now. This is how
    System Adminitration => Concurrent Programs => select ur Concurrent Prog => Update => OnSite settings .... select the template you want to default.
    Thanks,
    Vijay

  • Hello everyone, How do I add by default a date on the actual E-mail page the date and time of when I have sent the e-mail ? Thank you very much for your suggestions. Kind regards, Christopher H. Bull, Birmingham, UK.

    Birmingham, Thursday 2. Feb. 2012
    To whom it may concern,
    I have an issue regarding the e-mail system, and I wanted to know how I can add a default that the date and time is added automatically to the E-mail page everytime I draft a new e-mail.
    Does anyone know how do create a "plug-in" to enable me to have the date and t ime posted on the e0-mail page every time i send a new e-mail ?
    If there is a plug in which is compatible with Lion iMac computers thart insert the date and time into every E-mail I send ?
    Kind  regards
    Christipoher H. Bull
    E-mail: [email protected]

    This supports macros and variables, it doesn't specifically state date and time, but if it supports variables I'd be surprised if it didn't have variables for those:
    http://email.about.com/cs/mailplugins/gr/mailtemplate.htm
    This one also supports variables and may do what you want:
    http://itunes.apple.com/gb/app/logical-mail-free/id451881152?mt=12
    You may want to look for more, I found those by googling 'mac email templates variables'.

  • How to modify Bridge CS6 default sub-folder date format while importing?

    How could I modify Bridge CS6 default sub-folder date format when we are importing images from a connected camera? Default format for shooting date is aaaammjj. I would like instead aaaa_mm_jj. How could I add "_" to the date format?

    You only can do so after the import process using a third party app called A better finder Rename,  originally designed for Mac but they seem to have a Windows version also:
    http://www.publicspace.net/ABetterFinderRename/

  • How can I add barcode to my word template for PDF ?

    I must use a Barcode in my personal card template in MS word.
    Barcode properties must be;
    bcCode 39, checksum (enable - csmModulo10)
    If I preview my template in RTF template, it works. Hovewer when I run PDF preview, I couldn't take a barcode output.
    How can I add a barcode to my word template for PDF ???

    I will put the barcode font file to OA_JRE_TOP/jre/lib/fonts and I will create xdo.cfg file at this path OA_JRE_TOP/jre/lib. I will add below code to xdo.cfg
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <config version="1.0.0" xmlns="http://xmlns.oracle.com/oxp/config/">
    <!-- XML Publisher configuration file. -->
    <!-- Please uncomment an element or property to enable options -->
    <!-- Copy the file to <JRE_TOP>/lib directory on all nodes -->
    <!-- (web node and concurrent nodes) named as xdo.cfg -->
    <!-- Properties -->
    <properties>
    <!-- Temporary directory -->
    <!-- Specify temporary directory. $APPLTMP directory -->
    <!-- is strongly recommended for this parameter. -->
    <!-- On concurrent node, $APPLTMP will be used by -->
    <!-- default. -->
    <property name="system-temp-dir">/disk1/oracle/app/ERPcomn/temp</property> -- I used my own path
    </properties >
    <fonts>
    <!-- Font setting (for FO to PDF etc...) -->
    <!-- <family> is case insensitive. -->
    <!-- <style> must be "italic" or "normal" -->
    <!-- <weight> must be "bold" or "normal" -->
    <!-- Follow the structure of <trutype path="...." /> -->
    <!-- to map a font to a TrueType font. -->
    <!-- Example of mapping "MS Gothic" to -->
    <!-- kochi-gothic-subst.ttf -->
    <!-- #remove this line to uncomment
    <font family="MS Gothic" style="normal" weight="normal" >
    <truetype path="/usr/lib/X11R6/lib/X11/fonts/truetype/kochi-gothic-subst.ttf" />
    </font>
    #remove this line to uncomment -->
    <!-- Example of mapping "MS Mincho" to -->
    <!-- kochi-mincho-subst.ttf -->
    <!-- #remove this line to uncomment
    <font family="MS Mincho" style="normal" weight="normal" >
    <truetype path="/usr/lib/X11R6/lib/X11/fonts/truetype/kochi-mincho-subst.ttf" />
    </font>
    #remove this line to uncomment -->
    <!-- Default font is ALBANWTJ.ttf. You can change the -->
    <!-- font by mapping "Default" font family to another -->
    <!-- font.
    <font family="Default" style="normal" weight="normal" >
    <truetype path="OA_JRE_TOP/jre/lib/fonts/mybarcodefont.ttf" />
    </font>
    </fonts>
    </config>
    Now I can use my Barcode fonts by using my concurent XML program...
    Thanks Ravi...

  • How do I add a new worksheet to an excell file utilizing a template with the report generation toolkit?

    Hello,
    My vi is gathering data from a piece of machinery. At varrious points durring the process, my vi must create printable reports. I am using the report generation tool kit to do this. What I want to do is for every report generated durring the run, add it as a new worksheet in an Excell workbook. My excell template works fine for the initial master report and I can add new data to new worksheets. What I am having a problem figuring out is how do I add the new data to a new worksheet using an excel template? I have 5 different reports that need to be generated at different times with some more often than others. I would like all these reports to be in the
    same master excel file. Thanks in advance
    -Greg
    Gregory Osenbach, CLA
    Fluke

    Hi Greg,
    There is no built-in support in LabVIEW to add a new worksheet to an existing Excel report simply because this functionality does not exist in the Excel application itself.
    My suggestion would be to open up the template you wish to use for the new worksheet. Copy the cells from the template and paste them into your new worksheet that you've created. Then close the original template and you have another copy of the template in which you can populate with data values.
    I have attached an example program of how to Copy and Paste a Cell in Microsoft 97 Using ActiveX in LabVIEW to this post. Hope this helps!
    Kileen C.
    Applications Engineer
    National Instruments
    Attachments:
    XL_cell_copy_and_paste.llb ‏76 KB

  • ICal Lion is infuriating. How can I add a new event in a chosen calendar without having to create it in my default then edit it?

    iCal Lion is infuriating. How can I add a new event in a chosen calendar without having to create it in my default then edit it?

    We are all entitled to our own opinions. So I respect you there brother
    But then again, Apple has its own basis. iOS is what's selling like pancakes not Macs, so if the gazillions out there are using iOS device and have gotten used to the calendar in their iOS devices. Wouldn't you think it made sense if Lion has the same calendar look and feel?
    Everything was considered and weighthed when they developed Lion. They even mentioned it in the press, They were blown away with the success of iOS so they are extending it to OSX.
    Quite frankly, I like the old iCal but yeah I don't expect anything in SL to stay in Lion otherwise it'll be another Cat name related to Leopard
    People should start looking at this perspective and not get STUCK in the old OS.

  • How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    Si vous avez utilisé la commande Save As Template depuis Pages, il y a forcément un dossier
    iWork > Pages
    contenant Templates > My Templates
    comme il y a un dossier
    iWork > Numbers
    contenant Templates > My Templates
    Depuis le Finder, tapez cmd + f
    puis configurez la recherche comme sur cette recopie d'écran.
    puis lancez la recherche.
    Ainsi, vous allez trouver vos modèles personnalisés dans leur dossier.
    Chez moi, il y en a une kyrielle en dehors des dossiers standards parce que je renomme wxcvb.template quasiment tous mes documents Pages et wxcvb.nmbtemplate à peu près tous mes documents Numbers.
    Ainsi, quand je travaille sur un document, je ne suis pas ralenti par Autosave.
    Désolé mais je ne répondrai plus avant demain.
    Pour moi il est temps de dormir.
    Yvan KOENIG (VALLAURIS, France)  mercredi 23 janvier 2011 22:39:28
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How can I change the application default template

    Hi!
    If I go to Application Shared Components | Definition | Template Defaults I can see the default page template used by my application. One would think that this is the place to change the default template if wanted to change it, but NOOOOOOO..., like many other things ApEx that's not the way you do it. (An example is the order of columns in an interactive report... all those up/down arrows in there mean nothing if ApEx sets the column default order differently from what you set in the query source or the report attributes section. Nope. You have to log into the application as a developer, edit the column order in your interactive report, and save your report as the default, and THEN you'll get your ordering right. What are these ApEx developers thinking I just don't know...)
    I've search around the forums but I haven't found my answers (perhaps I haven't searched hard enough).
    So, how do I change the default page template for all pages in my application?
    Marc

    ...and once there, if you click on any of the templates looking for a way to set any of them as the default you'll be looking all day. You see the default column with check marks... why not implement the ability to check/uncheck defaults right there?
    Alas, if you click on Edith Theme <no>, then you can set the default template. It's a little link to the right under Tasks.
    My bad for still not understanding the way the ApEx interface works. It certainly isn't intuitive to me, but that's just me. Hopefully I'll get better.
    Marc

Maybe you are looking for

  • Unable to switch Macbook Pro off?

    Hi guys, I recently made the move from pc to mac, and while I have gotten used to mac now, I still have 1 or 2 problems with it.... I have a macbook pro 13, 2.66 ghz core 2 duo, which I got in january, and recently, it WON'T shut down! Its stuck at t

  • LDAP + User maintenance

    Dear all, One of our outsource Basis consultant recommends to configure the As ABAP system to LDAP directory. When we configured LDAP, could we maintain the users in the transaction SU01? or SAP trusts the LDAP user management therefore the user cann

  • Turn off backups while restoring!

    I had a 500 GB disk that just went bad, but since all the data was backed up on another drive by Time Machine, I decided to restore to a new drive. This probably would have worked just fine, but I neglected to turn off backups, and this created a pro

  • Urgent - Service Entry Sheet

    Dear All, Is there any internal assignments for PO & service entry sheets??? because when I create a PO automatically a service entry sheet is also getting generated automatic. So please provide me inputs on the same. Thanks & Regards, SAP FC

  • New tab button isn't working, niether is the "open new tab" in file menu

    When I click on the new tab button nothing happens. It also will not open a new tab when I click on "new tab" under the file menu. I have windows 7