RoboHelp WebHelp 2015: Can I map RoboHelp styles to a Word template when I create a printed Document?

Hello

I need to create a WebHelp project file and a file of printed document. Firstly, I would like to generate the word and then to create the pdf file in Word. Is it possible to generate the help file in a specified Word template and have the styles in RoboHelp convert Word styles?

Thank you

MDawn

Could find more in the Documentation printed - forum https://forums.adobe.com/community/robohelp/robohelp_documentation

Tags: Adobe

Similar Questions

  • How to make sure that I needed to 'Graphic Styles' launched when I create a new document? in Adobe Illustrator CC 2015?

    7d38c5a901df4dfa88900419ebf04944.png

    I want to here these three styles launched by default when I create a new document in Adobe Illustrator CC 2015?

    I record this way:
    C:\Users\indigo\AppData\Roaming\Adobe\Adobe 19 Settings\en_GB\x64\Graphic Illustrator Styles

    Did not help :)

    Create a file that contains these graphic styles and save it in Illustrator C:\Users\indigo\AppData\Roaming\Adobe\Adobe 19 Settings\en_GB\x64\New Document profiles

  • How can I change the default blue text and underline when I create a hyperlink?

    How can I change the default blue text and underline when I create a hyperlink?

    Click on the links hyperlink to change Styles of bindings; or Site properties, and then click text.

    Slash screen opens. If you want to create a new style there is an icon small page in the bottom right of the window next to a trash box. This icon pulls a new style of link, and you can edit each of the four States. Simple, when you find this "cute little page icon" who thought something silly would be obvious for everyone...

  • When you select the print document, a box comes up to save the document as. How can I prevent this from happening every time?

    I want just the print page, will not record to it anywhere.

    I hope it's just a setting. I can't find to fix on my own. Thank you for your help.

    Sandy

    Depending on your printer, there may be a checkbox in the print dialog box to "print to file". Make sure the box is unchecked.

  • Can someone tell me what I'm doing wrong when you create a native extension for iPad? (Very detailed)

    My company is developing a game for iPhone and iPad using Flash cs5.5 and Air3.0

    The customer requires that certain features be supported - these things as GameCenter, rating, etc... which none are currently supported by flash for the iOS.

    However, they provide us with a bunch of xCode example files on how they want things to work.

    My idea was to bridge the gap in functionality by creating a native extension using the xcode source that was given to me, giving me the required functionality.

    But first, I need to truly CREATE a native extension, even just a base echo/hello everyone... I followed all the steps of various guides and tutorials and I have managed to create an ipa and put it on my iPad 2 to test, but when the program starts, nothing happens, I find myself with a black screen. When I comment on the lines of code that initialize the extension, it fires just fine.

    (and Yes, I even tried to put things in try blocks where there was a mistake - no luck)

    So I hope that someone can read through the process of what I do below and point out what I am doing wrong, or what Miss me.

    What I use:

    Mini Mac running OS x 10.7.2 - this is used to run xCode 4.1 build 4B 110

    PC - Windows 7 home 64 bit - running Flash CS5.5 (version 11.5.1.3469) with the 3.0 SDK inside AIR. I also have the sdk 3.0 air in a separate file for the command-line running. (This is my primary development platform)

    The PC has flash builder installed, but I've never really used it, and I don't know how to use it... everything that has been built to date has been done using Flash CS5.5

    So, here's what I did.

    The first thing we do is to create a library static .a on mac.

    I open xcode and create a new project.

    • Select iOS framework and library, then select "Cocoa touch static library.
    • Give it a name, in this case "EchoExtension" and put it in a folder.
    • I then delete the file EchoExtension.h as all the samples I've seen so far do not use.
    • I then add 'FlashRuntimeExtension.h' to the project of the AIR3.0 sdk frameworks folder on my PC
    • I remove everything in my folder ".m", and then, next to several different examples and tutorials, type the following code:

    //

    EchoExtension.m

    EchoExtension

    //

    #include "FlashRuntimeExtensions.h".

    Echo FREObject (FREContext ctx, void * funcData, uint32_t argc, {FREObject argv)

    return argv [0];

    }

    //----------- Extention intializer and finalizer ----------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------ -

    A native context instance is created

    void ContextInitializer (void * extData, const uint8_t * ctxType, FREContext ctx, uint32_t * numFunctionsToTest, const FRENamedFunction * functionsToSet) {}

    Configure the number of functions in this extention

    for ease of reference, set the number of function that will use this extension.

    int FunctionCount = 1;

    set the number of function pointer reference that will use this extention.

    * numFunctionsToTest = FunctionCount;

    create an array to store all the functions that we will use.

    FRENamedFunction * func = (FRENamedFunction *) malloc (sizeof (FRENamedFunction) * FunctionCount);

    create a table for each function entry

    Func [0] .name = (const uint8_t *) "echo"; the name of the function

    Func [0] .functionData = NULL;                    the data type

    Func [0] .function = & echo;             the reference to the real function

    Save the array to a pointer.

    * functionsToSet = func;

    }

    A native context instance is deleted

    void ContextFinalizer (FREContext ctx) {}

    return;

    }

    Initialization of each extension function

    void ExtInitializer (void * extDataToSet, ctxInitializerToSet FREContextInitializer *, FREContextFinalizer * ctxFinalizerToSet) {}

    * extDataToSet = NULL;

    * ctxInitializerToSet = & ContextInitializer;

    * ctxFinalizerToSet = & ContextFinalizer;

    }

    Called when the extension is unloaded

    void ExtFinalizer (void * extData) {}

    return;

    }

    • I'll then 'product', 'building' and it creates libEchoExtension.a
    • I'm copying this .to file on my PC.

    I am now finished with this abandoned mac of God (* shudder *)
    Back on my PC, I create a folder for my test project. For all the intentions a purposes, we will call this "D:\src\EchoExtension" then I create 2 folders, one called "lib" and one called "app". Lib, it's where I'm going to create the actionscript source for my extension.

    • In my lib folder, I create a new fla in flash cs5.5, called "EchoExtension.fla".
    • I create my lib folder, the following:
      • com\extensions\EchoExtension\EchoExtension.as
      • a folder named 'Build' in which I place my libEchoExtension.a file.
    • I have in my EchoExtension.as file, place the following code:

    package com.extensions.EchoExtension

    {

    import flash.events.EventDispatcher;

    import flash.events.IEventDispatcher;

    import flash.external.ExtensionContext;

    SerializableAttribute public class EchoExtension extends EventDispatcher

    {

    protected var _extensionContext:ExtensionContext;

    /**

    * Constructor.

    */

    public void EchoExtension()

    {

    Super();

    Initialize the extension.

    _extensionContext = ExtensionContext.createExtensionContext ("com.extensions.EchoExtension", "main");

    }

    public void echo(Prompt:String):String

    {

    Return _extensionContext.call ("echo") as String;

    }

    }

    }

    • In my main fla, on the first layer of the time line, I put just the following code to make sure that did get file included when I publish the swc.

    import com.extensions.EchoExtension.EchoExtension;

    var ext:EchoExtension = new EchoExtension();

    Stop();

    • I then opened upwards from my fla publication settings, disable the swf - which I don't need, and check the swc and ensure it generates in my generation folder.  «. "/ Build/EchoExtension.swc.
    • I also updated the player Air 3.0 (which I can do because I managed integrated AIR 3.0 along side my AIR 2.6 and can build both without any problem)
    • I then publish the swc. So far so good. No problems.
    • I then made a copy of the CFC and rename it to EchoExtension.swc.zip, how I extracted the library.swf file and place it in the folder of my generation.
    • I then create extension.xml in case of generation that contains the following code:

    " < extension xmlns =" http://ns.Adobe.com/air/extension/2.5 ">

    com.extensions.EchoExtension < id > < /ID >

    < versionNumber > 1 < / versionNumber >

    <>platforms

    < platform name 'iPhone-ARMS' = >

    < applicationDeployment >

    < nativeLibrary > libEchoExtension.a < / nativeLibrary >

    < initializer > ExtInitializer < / initializer >

    < finalizer > ExtFinalizer < / finalizer >

    < / applicationDeployment >

    < / platform >

    < / platforms >

    < / extension >

    • Now, at this point, I'm a little suspicious, because I build for the iPad2... the platform is iPhone... I thought that may be a problem and at some point I have tested the same build on the iPhone4 and had the same results. I also tested using the name of the platform of the iPad-ARM and got the same results... So I don't think that's the problem, but I'm not sure.
    • Now, to make things easier, I created a batch file called "buildane.bat" in my file generation. That's what I use to create my .ane file and it contains the following command line:

    D:\SDKs\AirSDK30\bin\adt-Paquet - target ane EchoExtension.ane extension.xml - CFC EchoExtension.swc - iPhone-ARM library.swf libEchoExtension.a platform

    • I then open a command prompt and run buildane.bat and Ottoman. My donkey is created. My generation file now has the following files in it:
        • buildane.bat
        • EchoExtension.ane
        • EchoExtension.swc
        • EchoExtension.swc.zip
        • extension. XML
        • libEchoExtension.a
        • Library.swf

    Now that I have my swc, donkey and it's time to create my sample application that will be used to test my new extension.

    • I go back to my D:\src\EchoExtension folder and go to the folder app ealier, I created.
    • I then create a new flash project called EchoExtensionTester.fla
    • I open the action script settings, paths to library and add the CFC I created in my D:\src\EchoExtension\lib\build file to my project.
    • On my stage, I create a field called text txtInput, a field of dynamic text named txtEcho, and a couple of buttons called btnClear, btnRuntime and btnEcho
    • I open the first layer of the timeline, and place the following code:

    imports of base.

    import flash.desktop.NativeApplication;

    import flash.events.MouseEvent;

    import flash.text.TextField;

    import the extension of our swc.

    import com.extensions.EchoExtension.EchoExtension;

    the value of our input text to the need the softkeyboard field

    txtInput.needsSoftKeyboard = true;

    Add event handlers to our buttons.

    btnEcho.addEventListener (MouseEvent.CLICK, btnEcho_Click);

    btnClear.addEventListener (MouseEvent.CLICK, btnClear_Click);

    btnRunTime.addEventListener (MouseEvent.CLICK, btnRunTime_Click);

    create our variable expansion.

    var ext:EchoExtension;

    Try

    {

    initialize our extension of echo.

    Ext = new EchoExtension();

    } catch (error) {}

    txtEcho.text = 'Error when trying to create new EchoExtension:\n\n' + e;

    }

    Stop();

    Delete the text echo field

    function btnClear_Click(e:MouseEvent):void

    {

    txtEcho.text = "";

    }

    just to test, put the latest version of the air runtime in our text field, so we can make sure we run air 3.0

    function btnRunTime_Click(e:MouseEvent):void

    {

    txtEcho.text += "\nRuntime version =" + NativeApplication.nativeApplication.runtimeVersion; ".

    }

    call the extension, passing all that is in the text input field and get back and place it in our text echo field

    function btnEcho_Click(e:MouseEvent):void

    {

    txtEcho.text += "\n";

    Try

    {

    txtEcho.text += ext.echo (txtInput.text);

    } catch (error) {}

    txtEcho.text += "\nError call ext.echo:"+ e;»

    }

    }

    • I save the project, Open Air for the parameters of the iOS, then perform the following settings: (Yes, I know... I'll have to use adt to perform the build, but I need to first create the swf file)
      • File: EchoExtensionTester.ipa
      • AppName: EchoExtensionTester
      • Version 1.0
      • Landscape
      • Full screen on
      • Auto orientation is disabled
      • GPU rendering
      • device: iPad and iPhone
      • RES: high
      • Deployment: I use my certificate and profile provisionging that I use for my main project (that works) and defined for the test of the device.
    • I close the window and save again... but before I publish, I opened newly created "EchoExtensionTester - app.xml" which is located in my app folder.
    • I add the extensions <>< extensionID > com.extensions.EchoExtension < / extensionID > < / extensions > to the XML in the file so now it looks like this:

    <? XML version = "1.0" encoding = "UTF-8" standalone = 'no '? >

    " < application xmlns =" http://ns.Adobe.com/air/application/3.0 ">

    <>Extensions

    < extensionID > com.extensions.EchoExtension < / extensionID >

    < / extensions >

    < id > EchoExtensionTester < /ID >

    < versionNumber > 1.0 < / versionNumber >

    < file_name > EchoExtensionTester < / name of the file >

    < description / >

    <!-to locate the description, use the following format for the description element. < description > < text XML: lang = "fr" > App English description goes here < / text > < text XML: lang = "fr" > French App description goes here < / text > < XML text: lang = "ja" > Japanese App description goes here < / text > < / description >->

    < name > EchoExtensionTester < / name >

    <!-to locate the name, use the following format for the name element. < name > < text XML: lang = "fr" > insert here the name App English < / text > < text XML: lang = "fr" > insert here the French App name < / text > < XML text: lang = "ja" > insert here the Japanese App name < / text > < / name >->

    < copyright / >

    < initialWindow >

    < content > EchoExtensionTester.swf < / content >

    standard < systemChrome > < / systemChrome >

    < clear > false < / transparent >

    < visible > true < / visible >

    true < fullscreen > < / full screen >

    landscape of < aspectRatio > < / aspectRatio >

    GPU < renderMode > < / renderMode >

    < maximizable > true < / maximizable >

    < minimizable > true < / minimizable >

    < resizable > true < / resizable >

    < autoOrients > false < / autoOrients >

    < / initialWindow >

    < icon / >

    < customUpdateUI > false < / customUpdateUI >

    < allowBrowserInvocation > false < / allowBrowserInvocation >

    < iPhone >

    < InfoAdditions >

    <! [CDATA [< key > UIDeviceFamily < / key > < table > < String > 1 < / string > < string > 2 < / string > < / array >]] >

    < / InfoAdditions >

    < requestedDisplayResolution > top < / requestedDisplayResolution >

    < / iPhone >

    < / application >

    • I save the changes to the xml file and return to Flash. I then publish.
    • The swf file is created as it should be, but then I get the error message:

    Error creating files.

    A native implementation extension 'com.extensions.EchoExtension' required by the application is not found for the target platform.

    • Now, while it is a pain in the rear, I again, this was going to happen because in my reading tutorials and samples, they have all said that you use adt to build the ipa... but that is fine... all I wanted anyway, was the swf, which I now have in my app folder.
    • I close flash because I no longer need and I create a new batch file: (Note: I have change the name of the cert, profile and password for this post)

    CLS

    "D:\SDKs\AirSDK30\bin\adt" - package - target the ipa-ad-hoc - stores pkcs12 - keystore "D:\src\mycert.p12" - storepass MYPASSWORD-putting into service-profile "D:\src\myprovfile.mobileprovision" "EchoExtensionTester.ipa" "EchoExtensionTester - app.xml" "EchoExtensionTester.swf" - extdir... / lib/Build

    Set dummy = p

    ECHO done

    • I then open a command window in my app folder and run build.bat.
    • I wait about 2 minutes...
    • ...
    • ...
    • YAY! My ipa file was created without error reported so far... Time to copy this bad boy to the iPad and see what happens.
    • I opened iTunes, drag "EchoExtensionTester.ipa" to the applications, then synchronize my device...
    • ...
    • YAY! iTunes installed ipa on the device... and there is a white icon bright and shiney for Echo Extension tester...
    • I open the app... and...
    • nothing.
    • I'm waiting for
    • still nothing.
    • I go to the bathroom.
    • I'll be back... still nothing... just a black screen.
    • I press the home button on the iPad, the app minimized, I restore it... nothing... black screen.

    management of human resources. Time to do some trial and error to see if I can figure out what the distribution.

    • As a test, I opened my fla and I comment out the following lines:
      • Ext = new EchoExtension();
      • txtEcho.text += ext.echo (txtInput.text);
    • I then rebuild the swf... get the same error (don't care)... I then rebuild the ipa using the batch file... and reinstall it on the device when it is made.
    • Exactly the same thing...
    • I opened the xml file... and remove the < extensionID > com.extensions.EchoExtension < / extensionID > line, save and re - run the batch file again... Wait for the ipa ends, then run it on the device.
    • I start the program on the iPad and it starts perfectly... with the exception of the commented line of code actually create and call the extension, everything works as it should. The runtime on the device reports as 3.0.0.4080
    • A test, I opened the .fla save and uncomment the 2 lines, I commented out above... keep the xml file extensionID, I re - publish the ipa... of course, this time, it actually creates the flash API, because the id of the extension is not in the xml file.
    • I put the file API with the extension in place on the ipad code... The fire and make the txtInput text and press the button of the echo. I get the following error:
      • Error calling ext.echo: TypeError: Error #1009
    • I suspect it's because I failed to include the extension in the descriptor... but when I build it with the extensionid in the xml file, I just get a black screen. I'm 99% sure that the context of the extension in the ext object is null (because that's what happens when I run Flash debug without extension lines in the xml)

    And here I am stuck.

    Can someone tell me what I am doing wrong or what I forgot to do?

    Thank you.

    Hi can check you if the CFC of the native extension is linked as external?

    Next image can help locate and change the link type of CFC.

    The issue that many people face here (i.e. extension works fast/interpreter mode and only when they are packed in standard mode) occurs only when the SWC of the NE is not linked externally.

    I hope this helps.

    Kind regards

    Mathyas blabla

    IOS of the AIR

  • Is it possible to reuse the mapping file which was produced to match the FrameMaker styles to RoboHelp when you create a PDF file in RoboHelp?

    I use RoboHelp 11 to produce WebHelp. The documentation has been previously written in FrameMaker and published in PDF format, but he suffered many outings since then. I am now prompted to create the help PDF and WebHelp. Not really a problem except that the help format doesn't look particularly good in PDF format (not designed for two).

    Ideally, I would just use the mapping file to the original frame to the RoboHelp conversion in sense (with some editing) reverse - to convert RoboHelp styles in original FrameMaker formats when I create the PDF, however, A) there doesn't seem to be an option for that and B) originally FrameMaker in RoboHelp map file does not seem have been kept after this conversion.  He's here and I'm just not see it?

    If necessary I can just create a different CSS to redefine the styles, but if I don't, I rather not.

    I think that even if you can't find mapping information (pass to know where) it would just tell you A Style on the Fm band has been mapped to the B Style in HR but gives you no information on how Style has been set on the Fm band.

    I think your only options are to create a CSS that suggest you or, as I would create, redefine the model of mapping of the Word Style on. By going to the first word, you can change the output for page breaks better and other tweaking you may want.

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • RH9: How can I get a CSS class or id defined style applies to Word or PDF output using the &lt; div &gt; tags?

    HR I wrote the following:

    This is the code-behind:

    The 'DivNote' CSS id is defined:

    However, when I generate the printed output, I get this:

    OutputImage_DivNote.jpg

    The style of the Note disappeared.

    I created a class = "Note"...:

    .. .and applied to the div tag with similar results, but with some of the style through:

    OutputImage_classNote.jpg

    The output HTML (.chm) seems, like the display of the preview (Ctrl + W).

    Your help is appreciated gracefully.

    Steve Roehrig

    In RoboHelp you map to a Word template or simply by selecting a CSS?

    I assume that you are by selecting a CSS and that the solution might be to map to a Word template, where you can map the. Note the style.

    Mapping to take word longer to set up the first time, but once done, you may be easier to get the desired results.

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • Cannot map HR styles in Conversion settings after the .isf file loading

    Hello

    I'm trying to create AIR applications help on TCS 3.5, FrameMaker ver.10 books.

    When I load the project .isf file since I can't map the parameters of conversion to FrameMaker documents

    (I can open the dialogue box "Parameters of Conversion", but is unable to "map" the HR styles: neither "expand" buttons appear on the column settings FrameMaker).

    So, when I update book FM, all styles are not mapped.

    If you have faced similar problems and find a solution (or workaround), please kindly let me know.

    Thanks a lot for your help in advance!

    Hi Jeff,

    Thank you very much for your suggestion. I tried and found that it has not changed...

    Instead, I found a workaround (by chance);

    1 load the .isf file on file > project - Import tab setting.

    2. Select "Apply a FrameMaker template prior to importation", click Browse and choose model FM for the book.

    3. then click on the button change in conversion to FrameMaker "Edit" documents settings

    With this process, we can change the mapping of FM styles and those of HR.

    I don't know why, and I think that this feature is not intended for this purpose, but somehow the link FM - RH is restored.

    * If your project is multilingual, in particular, it contains multibyte characters, just make sure that your paragraph for graphic caption style is correctly set

    (language and police); or Adobe Distiller converts bad to do all the jumbled legends.

    I hope this workaround solution helps!

  • I created actions on my xp machine, but I can't map of these actions

    I created actions on my xp machine with the appropriate settings for each user. Then, when I try the mapping of these actions on another computer, the problems occur. I can't map to actions that require me to use another username and password. When I look at the session of shared folders, it shows that the connection is as a guest. The actions that I have created have the same permissions as the ntfs permission.

    Hi Paulo,

    Thanks for posting your question in the Microsoft community forum!

    I'm sorry to hear that you found a mistake in trying to map to the shares on the windows XP computer.

    1. What is the full error message?

    2 is this a wired or wireless network?

    3. are you connected to a domain network?

    4 have have there been recent changes made on the computer before the show?

    I suggest to check the following links and check if it helps.

    How to connect and disconnect a network drive in Windows XP

    http://support.Microsoft.com/kb/308582

    How to configure Internet connection sharing in Windows XP

    http://support.Microsoft.com/kb/306126

    Troubleshooting Internet connection sharing in Windows XP

    http://support.Microsoft.com/kb/308006

    How to use Simple file sharing to share files in Windows XP

    http://support.Microsoft.com/kb/304040

    Your response is very important for us to ensure a proper resolution. Please get back to us with the information above to help you accordingly.

  • How can you put several style of character class?

    @How you can put several style of character class?

    If I put: low magenta tooltip centre-left w150 slide down

    Adobe Muse done: Tooltip-magenta-bottom-left-center-w150-slide-down

    Can I apply several styles of character at a time?

    1 - tool - tip

    2 - magenta

    3 bottom

    4 left

    5 - Center

    6 - w150

    7 drag-down

    Not without coding, each time after Muse has updated the code of the web page...

  • Mac user: First Pro CC 2015 "can't find compatible video display modules" at startup?

    Premiere Pro CC 2015 "can't find compatible video display modules" at startup? I'm on a 27 "iMac, end of 2013, OS X 10.11.3, NVIDIA GeForce GTX 780 M 4096 MB. More info in the forum seems to deal with Windows solutions to this problem. Can someone help a Mac user? Thank you!

    Hi Douglask,

    Premiere Pro CC 2015 "can't find compatible video display modules" at startup? I'm on a 27 "iMac, end of 2013, OS X 10.11.3, NVIDIA GeForce GTX 780 M 4096 MB. More info in the forum seems to deal with Windows solutions to this problem. Can someone help a Mac user? Thank you!

    Please check, if you provision for video drivers:

    CUDA for MAC drivers Archive | NVIDIA

    Try this:

    Go to the following locations:

    1 location: In the Finder, click go > go to folder > ~/Library/Application Support/Adobe

    Situation 2: Go > go to folder > ~/Library/Preferences/Adobe

    Location 3: Documents > Adobe

    Everywhere, rename the folders 'Adobe' to 'OldAdobe '.

    Launch the first, accept the license agreement and see if it works.

    Note: You will lose your customized workspaces and keyboard shortcuts.

    Thank you

    Ilyes Singh

  • It is stated that my account renewal date 30/11/2015, can I ask for cancel now?

    It is stated that my account renewal date 30/11/2015, can I ask for cancel now?

    my adobe ID is < moderator signatures Email and your personal informationpersonal information >

    Thank you
    Nayla

    You may please check out the link below for instructions on cancellation.

    Cancel your membership creative cloud

    For more information you can contact the Support from Adobe by clicking on the link below.

    Contact the customer service

    Please make sure that you are connected to the right Adobe ID.

    Hope this will help you.

    Kind regards

    Hervé Khare

  • Can character or paragraph automatically apply a style to recurring words in a document?

    Can you character style or paragraph search for recurring words in a document and automatically apply a style? For example to make some "BOLD" words that appear several times in a document? To help Windows and must currently Adobe InDesign C.

    You can add a GREP style to a paragraph style to apply a character style to any match for your GREP expression, which may be your Word.

  • How can I add css style to all elements within a symbol.

    How can I add css style to all elements within a symbol.

    For example.

    If I have a call symbol "data" and in this context, I have 4 elements called 1,2,3,4 How can I add a style to all of these without having to re - write the code for each item.

    I know that I can style a symbol called "data":

    sym.$("data").css("font-family", "baumans, sans-serif", "font-size", "15px");
    
    

    ... But this style not content items 1,2,3 and 4

    If I was using the standard HTML and CSS then all the div in a div named "data" would be will be the same.

    help to "my friends of the code.

    Hi Justin,

    (1) you have an error in syntax here: sym. $("données") .css ("font family", "baumans, sans", "-font size", "15px");

    SYM. $("données") .css ({"font family": "baumans, sans", "-font size": "15px"}); / / OK

    SYM. $("données") .css ('police', ' 15px baumans, without serif '); //correct


    (2) then, loading the jQuery file is not necessary. You can create a class or change the tags.

    • How to add a class:

    • Change the tags:

    You have 2 demo files (edge 5.0) here: class or tag.zip - Box


  • How can I change the style of police in After Effects CS6?

    How can I change the style of police in After Effects CS6?

    Basics of EI: go to the window > character or select Workspace > text

    In the timeline panel, select the layer in the Comp panel, with the tool selected text or text and the layer selected in the timeline panel, select the text you want to change

    In the character Panel, change the attributes of police...

    Take a look at this short video. You will learn how to find the police Panel, change the style and the base line of paragraph:

    Please, since your question tells me that you're very new to After Effects start here: Basic Workflow

Maybe you are looking for