Inserting invisible text

Hello, I created my website using Fireworks to make images
and text, and now the search engines like Google and Yahoo are not
picking up my site. Someone in the Forum suggested I start from
scratch, creating new CSS for each page that has text. I do not
know how to use CSS, so I would like to simply insert the text into
the HTML page created by Dreamweaver and then turn that text white
so that spiders will pick up the text but viewers will not.
Will this strategy work for me for now, or do I necessarily
have to start from scratch using CSS?
Thanks
IDOW

Invisible text is definitely not a good search engine
strategy. But you
don't necessarily need to re-create your site. CSS in and of
itself doesn't
help with the search engines; what does help is simple, clean
code, with
lots of keywords packed into the HTML text (NOT text in
images).
Patty Ayers | Adobe Community Expert
www.WebDevBiz.com
Free Articles on the Business of Web Development
Web Design Contract, Estimate Request Form, Estimate
Worksheet
"I Dream ofWeaver" <[email protected]> wrote
in message
news:erd4r3$95t$[email protected]..
> Hello, I created my website using Fireworks to make
images and text, and
> now
> the search engines like Google and Yahoo are not picking
up my site.
> Someone in
> the Forum suggested I start from scratch, creating new
CSS for each page
> that
> has text. I do not know how to use CSS, so I would like
to simply insert
> the
> text into the HTML page created by Dreamweaver and then
turn that text
> white so
> that spiders will pick up the text but viewers will not.
>
> Will this strategy work for me for now, or do I
necessarily have to start
> from
> scratch using CSS?
>
> Thanks
>
> IDOW
>

Similar Messages

  • How to insert sales text (MM02) into a single record of a Ztable.

    Hi,
    I'm extracting data from different data base tables and populating a Ztable which has Matnr as primary key and sales text as a field.
    I have already used READ_TEXT to display the text and it is displayed in multiple records which in turn leads to duplication of Material numbers.
    Now I want to avoid duplication of records (Matnr) as this being a primary record, and display the sales text of a particular material number into one single record.
    Can anyone tell me how to insert sales text (MM02) transaction into one single record.
    Thanks,
    Govind

    sorry i am not enough clear about your requirement...
    as i can understand i am explaining to you.
    suppose your itab contains repaeating matnr.
    matnr
    1
    1
    2
    2
    2
    3
    3
    like this.
    data : text(200),
             matnr like mara-matnr.
    loop at itab.
    call READ_TEXT fnmodule.
    loop at tline.
    concatenate text tline-tdline into text.
    endloop.
    matnr = itab-matnr.
    at end of matnr.
    itab1-matnr = matnr.
    itab1-text = text.
    append itab1.
    clear text.
    endat.
    endloop.
    NB change the code as per your requirement
    regards
    shiba dutta

  • How to Insert the Text in Selected Text Frame-Reg.

    Dear all,
    I am using the SnipperRunner - SDK, and create the TextFrame, but I can't insert the Text in the Particular Frame. so please give me the soultions,
    (*) Create TextFrame is ok,
    (*) Select TextFrame is also ok,
    (*) now, my Query ->
    How to Insert the Text in the Selected Frame?. (or)
    How to Link the Selectable Frame and my Text.? (or)
    How come to know the TextFrame is select?.
    Please any one can suggest me through the Coding....I will appreciate you...
    Thanks & Regards,
    T.R.Harihara SudhaN

    Hi,
    you have to get the TextModel associated with the textframe. Once you got that, ITextModel has an Insert()-method. You could also process kInsertTextCmdBoss - there are quite a few examples around. I believe WriteFishPrice also inserts text into a frame, just as an example. Good luck ...
    Bernt

  • Please Help.JTable insert styled text

    Hi all java guru,
    on post http://forum.java.sun.com/thread.jsp?forum=57&thread=485469 i've depicted my scenario in which i have a JTable where i want to add styled text.
    i've implemented a CustomTableModel that maintains information about text style, in such way that when renderer cell, i can rebuild exact text with its style....same method is adopted for CellEditor.
    It is possible to have more than one JTable in my application....then to correctly handle all JTables ' put them in a vector and during editing and rendering i find current focusable/selected JTable and edit/render it.
    Clearly i maintain information about style of text when i insert it, that is when i insert text, i update my CustomTableModel...same thing must be done when i delete text from JTable...that is, i must update CustomTableModel too in this case.
    Because my CellEditor is a JEditorPane component (extend it) i've registered document associated to it to a DocumentListener that notify every time that a remove operation is happens.
    What is the problem now???problem is that when i finish to edit a cell and click on another cell i've got a removeUpdate(DocumenEvent e) event, and i can't distinguish it.....it seems a real remove event....
    In this case(when i change cell) the code that is executes returns wrong result and invalidate all the rest.
    I think error is where i register celleditor , now i do it in CustomCellRenderer class that extend JEditorPane and implements TableCellRenderer.
    Please help me...this is a great trouble that invalidate all my work :(
    Any new idea is welcome.
    regards,
    anti-shock

    Hi stanislav, of course i can...you're a myth :)
    public class CustomCellEditor extends AbstractCellEditor implements TableCellEditor {
           CellEditor cellArea;
         JTable table;
         public CustomCellEditor(JTable ta) {
              super();
              table = ta;
              // this component relies on having this renderer for the String class
              MultiLineCellRenderer renderer = new MultiLineCellRenderer();
              table.setDefaultRenderer(String.class,renderer);
         public Object getCellEditorValue() {
              return cellArea.getText();
         public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected,     int row, int column) {
              int start = 0;
              int end = 0;
                                               // Get current selected table
              TableEditor tb = (TableEditor) TableEditor.getSelectedTable();
              TableModel model = (TableModel) tb.getModel();
              Vector fontInfo = model.getFontFor(row,column);
              CellEditor cellArea = (CellEditor) ((CustomCellEditor)tb.getCellEditor (row,column)).getCellEditor();
              Document doc = cellArea.getDocument();
              String content = tb.getValueAt(row,column).toString();     
              if (doc!=null && fontInfo.size()>0 && !content.equals("")) {
                                                     // This method reads from model and get right style info
                                                     // for current text, and restore them
                                                     restoreFontWithAttributes(doc,fontInfo,content);
              else
                   cellArea.setText(tb.getValueAt(row,column).toString());
              cellArea.rowEditing = row;
              cellArea.columnEditing = column;
              cellArea.lastPreferredHeight = cellArea.getPreferredSize().height;
              return cellArea;
          * @return
         public CellEditor getCellEditor() {
              return cellArea;
         public class CellEditor extends JEditorPane {
              private CellStyledEditorKit k;
              public CellEditor() {
                    super("text/plain","");
                    k = new CellStyledEditorKit();
                    setEditorKit(k);
                    // I tried to add document here, but i have had wrong behavior
                   doc = new DocumentListener() {
                   public void removeUpdate(DocumentEvent e) {
                      // Get current selected table
                      TableEditor tb = (TableEditor) TableEditor.getSelectedTable();
                      TableModel model = (TableModel) tb.getModel();
                      model.updateFontInfo();
                   getDocument().addDocumentListener(doc);
    }Ok, stan...this is my CustomCellRenderer class....as i have already said, i have some style text info mainteined by CustomTableModel associated with JTable.
    I update CustomTableModel every time that an insert and remove operation happens.
    If i add a DocumentListener to CellEditor (that rapresents editor cell of my table) happens that, if i remove some character from an editing cell, i got a removeUpdate event.....and this is right!!! But if i change cell (e.g. supposing editing cell(1,1), click on cell(2,1) then stop edit cell(1,1) and start edit cell(2,1)) i got a removeUpdate event, that I don't wait for to me..
    Look at this:
    empty cell | some text
    cell 0 ------- cell1
    supposing you're in cell1 and you have finished to insert "some text".Then click on cell0, that is empty....then document associated with CellArea(extend JEditorPane) before of the click on cell0 had some text, but after click have no text, then for it a removeUpdate is happens.....and is that one i got..
    it's as if an unique document is associated to all cells, while should be one document for each cell (i hope this is right).
    Clearly, i've same code for renderer, in such way that i can restore style of text on rendering.
    Hope is clear....if U have any idea or suggestion please give to me.
    Tnx a lot Stanislav..
    regards,
    anti-shock

  • Decode Case statement to insert total text

    Where the AGE BRACKET fields are empty or Null I need to insert "Total" text? Can anybody help?
    Table
    SOURCE CODE     AGE BRACKET     COUNT
    CLUBBEN     0-40 Years     3     
    CLUBBEN     41-49 Years     6     
    CLUBBEN     50-59 Years     38     
    CLUBBEN     60-69 Years     205     
    CLUBBEN     70-79 Years     181     
    CLUBBEN     80+ Years     19     
    CLUBBEN          452     
    CLUBJUNE     41-49 Years     2     
    CLUBJUNE     50-59 Years     21     
    CLUBJUNE     60-69 Years     100     
    CLUBJUNE     80+ Years     1     
    CLUBJUNE          124     
    TOTAL          576     
    Script Currently entered
    SELECT DECODE(GROUPING(F.SOURCE_CODE),1,'TOTAL',0,F.SOURCE_CODE) as "SOURCE CODE",
    CASE
    WHEN D.AGE BETWEEN '0' AND '40' THEN '0-40 Years'
    WHEN D.AGE BETWEEN '41' AND '49' THEN '41-49 Years'
    WHEN D.AGE BETWEEN '50' AND '59' THEN '50-59 Years'
    WHEN D.AGE BETWEEN '60' AND '69' THEN '60-69 Years'
    WHEN D.AGE BETWEEN '70' AND '79' THEN '70-79 Years'
    WHEN D.AGE >= '80' THEN '80+ Years'
    ELSE ''
    END AS"AGE BRACKET",
    COUNT(F.MEMBER_COUNT) "COUNT"
    FROM A3_FACT_NEW F, DIM_AGE D
    WHERE F.AGE_KEY = D.AGE
    AND F.JOIN_DATE BETWEEN '25/JUNE/2012' AND '30/AUGUST/2012'
    AND F.BEN_TYPE = 'Prime member'
    AND F.SOURCE_CODE IN ('CLUBBEN','CLUBJUNE')
    GROUP BY ROLLUP(F.SOURCE_CODE,
    CASE
    WHEN D.AGE BETWEEN '0' AND '40' THEN '0-40 Years'
    WHEN D.AGE BETWEEN '41' AND '49' THEN '41-49 Years'
    WHEN D.AGE BETWEEN '50' AND '59' THEN '50-59 Years'
    WHEN D.AGE BETWEEN '60' AND '69' THEN '60-69 Years'
    WHEN D.AGE BETWEEN '70' AND '79' THEN '70-79 Years'
    WHEN D.AGE >= '80' THEN '80+ Years'
    ELSE ''
    END)
    ORDER BY(F.SOURCE_CODE),(2)
    --------------------------------------------------------------------------------------------------------------

    Welcome to the forum!!
    Please consider the following when you post a question. This would help us help you better
    1. New features keep coming in every oracle version so please provide Your Oracle DB Version to get the best possible answer.
    You can use the following query and do a copy past of the output.
    select * from v$version 2. This forum has a very good Search Feature. Please use that before posting your question. Because for most of the questions
    that are asked the answer is already there.
    3. We dont know your DB structure or How your Data is. So you need to let us know. The best way would be to give some sample data like this.
    I have the following table called sales
    with sales
    as
          select 1 sales_id, 1 prod_id, 1001 inv_num, 120 qty from dual
          union all
          select 2 sales_id, 1 prod_id, 1002 inv_num, 25 qty from dual
    select *
      from sales 4. Rather than telling what you want in words its more easier when you give your expected output.
    For example in the above sales table, I want to know the total quantity and number of invoice for each product.
    The output should look like this
    Prod_id   sum_qty   count_inv
    1         145       2 5. When ever you get an error message post the entire error message. With the Error Number, The message and the Line number.
    6. Next thing is a very important thing to remember. Please post only well formatted code. Unformatted code is very hard to read.
    Your code format gets lost when you post it in the Oracle Forum. So in order to preserve it you need to
    use the {noformat}{noformat} tags.
    The usage of the tag is like this.
    <place your code here>\
    7. If you are posting a *Performance Related Question*. Please read
       {thread:id=501834} and {thread:id=863295}.
       Following those guide will be very helpful.
    8. Please keep in mind that this is a public forum. Here No question is URGENT.
       So use of words like *URGENT* or *ASAP* (As Soon As Possible) are considered to be rude.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to insert vietnameese text in a form

    Hi all,
    How to insert Vietnamese text in a smartform since it is not supported by SAP.

    You can insert using standard text So10 call the standard text in your form where every it is required.
    Download text/language converter using google search. Convert text to your desired language and place it in SO10.
    close the thread once your question is answered.
    Regards,
    SaiRam

  • Invisible text in acrobat forms

    For a number of years and a number of different versions of Acrobat we have noted that a form filled out across platforms may not show the filled in text unless it is highlighted.  I've searched Google and the Adobe site and found a number of discussions on this and some "fixes". 
    We've been dealing with this for a number of years and have noted that the issue is with the default text color, black.  If you actually chose any other color (we usually use dark blue) when creating the fields the text will appear on all platforms and almost all viewers.  You can also "fix" filled out forms that have the invisible ink issue by using the advanced editing tools to highlight a field and then select all and then adjust properties to change the text color to anything but black (or white).
    We have noted a correlation in the issue seeming to be when the form was created on one platform and then filled out on the other, aka Mac created but Windows filled out or vice versa. Ocassionally it will show up within a family (aka Windows) but where the base OS (XP vrs 7) or version of Acrobat (7 vrs X) is different from the one that originated the form.
    Is there some other global setting that needs to be or possible can be adjusted to fix this?

    Invisible text in Flash enabled web pages is a frustrating problem that is affecting Mac Users who play Farm Town (8.5+ million people on FaceBook) and probably many other games too.  See this forum as an example of the problem:  http://slashkey.com/forum/showthread.php?p=2531318
    Before even reading this forum I did everything that appears here with no success and then everything listed in the referenced forum (above) with no success... but the following did fix the invisible text problem and I hope that it will help others too.
    1.  Drag the Font folder from the User directory to the trash  ie. ~/Library/Fonts.  (where ~ is = your User Account Name.)
         Be careful; this is NOT the Font folder in the main library.
    2. Download Font Finagler v1.5 beta for Mac OS 6, and clean the font cashe files following the instructions for this free shareware app.
            http://homepage.mac.com/mdouma46/fontfinagler/
    3. Open the Font Book app which is a new app that is included with the Mac OS Snow Leopard (10.6). (Font Book is in the Applications folder.) Read the Help info for this app and then: Choose "All Fonts" in the left column and then choose "Select Duplicate Fonts" from the Edit menu. Disable or delete all duplicate fonts that this process identifies. After dealing with the duplicate fonts, select "All Fonts" again in the left column and choose "Validate Fonts" from the File Menu.  Deal with the results that it will display using the help file for guidance.  Interestingly, in my case there were no corrupt fonts in my Mac system, but the validation process identified more duplicate fonts that the previous step did not find. Again deal with the findings and disable or delete the duplicate fonts.
    4. Reboot your Mac and get on with using your Flash enabled web pages.  Duplicate fonts seems to be the problem that cause invisible text in Flash enabled web pages.
    Hope this helps you... it worked for me.
    Clark

  • How to insert independent text column in pages ?

    hello,
    I have made a flyer from one of the templates in pages..
    What I wnat to do is insert another text colum indicated at the attachment. I just con not figure out how to do it.. It keeps insertin within the main text..
    any help will be appreciated.
    Gokce
    oopss.. how do we attache images here ?
    Message was edited by: Gokce

    Gokce,
    Have you tried inserting a text box? If not, click on View > Show Layout to enter the layout view. Click in the gray margin area to make your cursor disapppear. Then click on Insert > Text. The box will be defined as Fixed on Page (because you clicked in the margin area), allowing you to move it anywhere on the page. You can resize it to look just like a column, then put text in it.
    Hope this helps.
    -Dennis

  • Invisible text in graphics

    When I copy-paste text into Animate graphics, I can't see the actual text until I double-click on the text box ... then I can see the text in editing mode. Anyone else had this problem?

    Invisible text in Flash enabled web pages is a frustrating problem that is affecting Mac Users who play Farm Town (8.5+ million people on FaceBook) and probably many other games too.  See this forum as an example of the problem:  http://slashkey.com/forum/showthread.php?p=2531318
    Before even reading this forum I did everything that appears here with no success and then everything listed in the referenced forum (above) with no success... but the following did fix the invisible text problem and I hope that it will help others too.
    1.  Drag the Font folder from the User directory to the trash  ie. ~/Library/Fonts.  (where ~ is = your User Account Name.)
         Be careful; this is NOT the Font folder in the main library.
    2. Download Font Finagler v1.5 beta for Mac OS 6, and clean the font cashe files following the instructions for this free shareware app.
            http://homepage.mac.com/mdouma46/fontfinagler/
    3. Open the Font Book app which is a new app that is included with the Mac OS Snow Leopard (10.6). (Font Book is in the Applications folder.) Read the Help info for this app and then: Choose "All Fonts" in the left column and then choose "Select Duplicate Fonts" from the Edit menu. Disable or delete all duplicate fonts that this process identifies. After dealing with the duplicate fonts, select "All Fonts" again in the left column and choose "Validate Fonts" from the File Menu.  Deal with the results that it will display using the help file for guidance.  Interestingly, in my case there were no corrupt fonts in my Mac system, but the validation process identified more duplicate fonts that the previous step did not find. Again deal with the findings and disable or delete the duplicate fonts.
    4. Reboot your Mac and get on with using your Flash enabled web pages.  Duplicate fonts seems to be the problem that cause invisible text in Flash enabled web pages.
    Hope this helps you... it worked for me.
    Clark

  • Invisible Text in Flash Player Using Windows XP

    I seem to have a problem with the Flash Player and invisible text. The Flash Player will load but there will be some buttons that are not labeled with text, so you don’t know what the buttons are, fill-in text boxes that have no text or text description, so you don’t know what to type in them, and drop-down lists that are blank, but there is supposed to be text to select from.
    I tried uninstalling and reinstalling FireFox, that did nothing; unistalled the Shockwave Flash Plug-in and reinstalled it, that did nothing; unistalled Flash and Shockwave standalone Players entirely, leaving only the Plug-in, nothing; uninstalled and reinstalled Flash Player standalone, nothing there either. I cannot seem to find a solution and every browser I have, the same problem occurs – invisible text.
    I was reading on the Adobe Forum that there is this same issue sometimes with Mac and that the problem seems to be font incompatibility.
    This happens with any browser I use – Firefox, Flock, PaleMoon, IE, Opera, Netscape.
    My OS is Windows XP Home Edition
    Main browser is FireFox version 3.6.17
    Shockwave Flash Plug-in version is 10.3.183.7
    I also have the Shockwave Player standalone version 11.6.1.629
    Has anyone, using Windows, had this same problem? Is there any solution?
    Thanks for any advice.

    Invisible text in Flash enabled web pages is a frustrating problem that is affecting Mac Users who play Farm Town (8.5+ million people on FaceBook) and probably many other games too.  See this forum as an example of the problem:  http://slashkey.com/forum/showthread.php?p=2531318
    Before even reading this forum I did everything that appears here with no success and then everything listed in the referenced forum (above) with no success... but the following did fix the invisible text problem and I hope that it will help others too.
    1.  Drag the Font folder from the User directory to the trash  ie. ~/Library/Fonts.  (where ~ is = your User Account Name.)
         Be careful; this is NOT the Font folder in the main library.
    2. Download Font Finagler v1.5 beta for Mac OS 6, and clean the font cashe files following the instructions for this free shareware app.
            http://homepage.mac.com/mdouma46/fontfinagler/
    3. Open the Font Book app which is a new app that is included with the Mac OS Snow Leopard (10.6). (Font Book is in the Applications folder.) Read the Help info for this app and then: Choose "All Fonts" in the left column and then choose "Select Duplicate Fonts" from the Edit menu. Disable or delete all duplicate fonts that this process identifies. After dealing with the duplicate fonts, select "All Fonts" again in the left column and choose "Validate Fonts" from the File Menu.  Deal with the results that it will display using the help file for guidance.  Interestingly, in my case there were no corrupt fonts in my Mac system, but the validation process identified more duplicate fonts that the previous step did not find. Again deal with the findings and disable or delete the duplicate fonts.
    4. Reboot your Mac and get on with using your Flash enabled web pages.  Duplicate fonts seems to be the problem that cause invisible text in Flash enabled web pages.
    Hope this helps you... it worked for me.
    Clark

  • Invisible text in Google Chromes Icloud Webmail

    Suddenly I can ONLY see the text in some of my emails in my Iphones icloud-mail or if I use Explorer (webmail).
    If I check it out on Iclouds WEBMAIL (Chrome) the message looks empty/blank?
    Only from certain users though (to make it more complicated).
    Started last week, and it doesnt matter which computer I use, (I've tried it on pc:s with different operating systems, bit not on a mac:s webmail, so far) but seems to work in other webreaders (explorer) but not google chrome and Firefox.
    It's kind of strange.
    I like Chrome otherwise, so what do I do?

    Invisible text in Flash enabled web pages is a frustrating problem that is affecting Mac Users who play Farm Town (8.5+ million people on FaceBook) and probably many other games too.  See this forum as an example of the problem:  http://slashkey.com/forum/showthread.php?p=2531318
    Before even reading this forum I did everything that appears here with no success and then everything listed in the referenced forum (above) with no success... but the following did fix the invisible text problem and I hope that it will help others too.
    1.  Drag the Font folder from the User directory to the trash  ie. ~/Library/Fonts.  (where ~ is = your User Account Name.)
         Be careful; this is NOT the Font folder in the main library.
    2. Download Font Finagler v1.5 beta for Mac OS 6, and clean the font cashe files following the instructions for this free shareware app.
            http://homepage.mac.com/mdouma46/fontfinagler/
    3. Open the Font Book app which is a new app that is included with the Mac OS Snow Leopard (10.6). (Font Book is in the Applications folder.) Read the Help info for this app and then: Choose "All Fonts" in the left column and then choose "Select Duplicate Fonts" from the Edit menu. Disable or delete all duplicate fonts that this process identifies. After dealing with the duplicate fonts, select "All Fonts" again in the left column and choose "Validate Fonts" from the File Menu.  Deal with the results that it will display using the help file for guidance.  Interestingly, in my case there were no corrupt fonts in my Mac system, but the validation process identified more duplicate fonts that the previous step did not find. Again deal with the findings and disable or delete the duplicate fonts.
    4. Reboot your Mac and get on with using your Flash enabled web pages.  Duplicate fonts seems to be the problem that cause invisible text in Flash enabled web pages.
    Hope this helps you... it worked for me.
    Clark

  • Import(insert) formatted text(HTML) into document

    Hi guys, I have faceed with folowing problem:
    how to insert into text frame formatted text ?
    At Indesign desktop version this feature was able through pasting HTML from clippboard with appropriate settings of clippboard preferences. But at server version there is no such function.
    I have also invesigated XML import:  you can set up text and paragraph styles and map them with tags but this technique doesnt support nested styles for instance if you have <b><i>xxx</i></b> and appropriate styles "b" and "i" i will be applied to "xxx".
    So I need to insert html as it did clipboard pasting.
    Any thoughts ?

    Questions:
    1. What version of SQL Server are you using?
    2. Are you required to use a specific DTS package or do you simply need to import data from a file to a table?  You might also consider using the bcp utility or, if you are using 2005 or newer, integration services.
    3. Is the uploading of files and the import of data a manual process or is it automated?  Is there a user uploading one file at a time to your server or do you receive files in batches.  Can you describe the work flow?
    You might try the following if you are required to use DTS:
    1. Upload your text file with CFFILE, putting in the directory expected by your DTS package.
    2. Rename the file to the name required by your DTS package
    3. Use CFEXECUTE to run the DTS package by calling dtsrun at the command line.
    dtsrun
    http://msdn.microsoft.com/en-us/library/aa224467%28SQL.80%29.aspx
    bcp
    http://msdn.microsoft.com/en-us/library/aa174646%28SQL.80%29.aspx

  • Insert in text file

    Hello, 
    I have an application that generates a measurement files (text) of several hundred Mo. 
    How can I insert text in the file without having to read all the contents (I know the position where to insert a text in this file). 
    Thank you in advance.
    Solved!
    Go to Solution.

    Excuse me for this francisism. I meant Mb (Megabyte) and not Mo (which is Megaoctet in french).
    Your definition of insert feat with what I want to do. So if I understand correctly, It's impossible to insert (and not overwrite) data in a file text without having to read the data located before and after my insert position ?
    You see the problem that I have, in my case, it is not possible to have read 800MB of data to insert 15 characters of text. 
    Other ideas, or it is really impossible ???
    Thanks. 

  • In Captivate 8, how do I insert a text animation. It is grey scale and therefore can't be selected. I also want to use a "typing" effect.

    In Captivate 8, how do I insert a text animation. It is grey scale and therefore can't be selected. I want to use animation and also want to use a "typing" effect.

    Hi there
    What is your project type? Responsive? If so, that's why animation is disabled. Animations are usually built in Flash and Responsive output doesn't "do" Flash.
    Cheers... Rick

  • Inserting formatted text

    How can I insert formatted text into the sequence, keeping it transparent so I can show it over another clip? The text generator doesn't let me vary the text within one frame. So if I have, "The Doodad Theatre Production of, Don Juan" and want to make Don Juan bigger, I can't. Also, Title 3D does not show up in my popup window and I can't find a way to access it.
    Thanks for your help!
    Elise
    Mac G5   Mac OS X (10.4.4)   FCP HD5

    Two ways to get it done;
    #1. Reinstall the Boris Calligraphy plugins from your FCP install disc. Title 3D is part of that plugin bundle.
    #2 Create the text in Photoshop as a TIF or PSD with a transparent backround, then import the PS file into FCP.
    -DH

Maybe you are looking for

  • How to NOT monitor SQL database on specific servers only

    I have a test server with SCOM agent installed. I am using it for Lync watcher node to monitor Lync using SCOM. On this server there is a local SQL Express database. SCOM has MP for SQLs and alerts me about this SQL express database on test server th

  • Out put to PDF Format

    Hi, Can anyone help me to convert O/p To PDF Format. Regards Amit Gupta

  • Seeburger Mapping Designer - Gentran

    Hi Experts. I have an Scenario EDI to Flat file , I'm using Seeburguer to convert file to XML and viceverse... I use the mapping EDI ???_E2X_Ansix12_204_V4010 to convert the file to XML , The EDI Files has an element wich Length is 2 but on Seeburgue

  • Slideshow bug in 4.2.1 when pushed using AirPlay to Apple TV2

    Anyone else found this bug? (after upgrading to iOS 4.2.1 and Apple TV 4.1) If you enable a Photos slideshow on the iPhone and change the custom transitions/photo lengths, everything plays fine on the iPhone 4 as expected. However, now that you can s

  • Ovi Mail does not work with supported browser?!

    I'm trying to use the new OVI mail and it says your browser is not supported. However, my browser is FF 5.0 - which is in the list of supported browsers. ALSO: The description says if you are not willing to update the browser (which I have done), you