First line indent Null

Hello

I need a null value in the paragraph Style "first line indent. See my code below

--------------

pstyle var = app.documents.item (0).paragraphStyles.everyItem () .getElements ();

for (i = 0; i < pstyle.length; i ++)

If (.appliedParagraphStyle [i] pstyle is '04 space pause FL')

{

pStyle [i] .firstLineIndent = null;

}

--------------

So now my space FL 04 with removal of first line Break tag is 1 p, but I need to set to null, the value.

By

Assia

Hi @Murali_Vetha,.

There are two errors in your code.

  • You should compare the name of the style.
  • NULL is not a value

Try this:

var pstyle = app.documents.item(0).paragraphStyles.everyItem().getElements();
for (i=0; i

Have fun

Tags: InDesign

Similar Questions

  • First line indent except the first line of a paragraph

    Hello

    I would create a paragraph style with a first line indent, with the exception of the first line, which I have no dash.

    Attached an example of how I want it to look.

    Best regards

    Vincent

    Schermafbeelding 2016-07-29 om 11.01.28.png

    You need a second style to the first paragraph. Based on the other model and the withdrawal of first line value of 0.

  • First line left indent

    I work with the copied text is indented (left) of paragraphs. In addition, paragraphs are justified, with the last line aligned to the left.

    When I set the withdrawal of 1st line in InDesign, the first line of paragraphs are not aligned with each other... the spacing is off. When I manually adjust spacing, I still can't align them perfectly. Can you please help?

    First line indents must be done by application of a first line indent value, not with tabs or spaces.

    You can delete tabs and spaces using the GREP next find/replace:

    Find ^ \s+ (which means find any white space at the beginning of a paragraph) and game of the formattin of find your style of subsection if yo just to do it for a unique style

    Do not fill the field Change and all change.

  • How can I get the first line of a paragraph style indent, but others not in withdrawal

    I created a style of paragraph indented on the first line of each paragraph. In most of the books, at the start of the first line of a chapter, this line is not indented while the rest are. Is there a way to set up in InDesign CS3? Is the only way to make this work is to manually go out the tab at the start of each chapter?

    2 paragraph styles.

    1 paragraph style has no dash

    2nd paragraph style has dash

    set "next style" in 1st paragraph for paragraph 2e style style

    the "next style" value in the style of paragraph 2 to "even".

    Existing text.

    Select all of the text

    Right-click on the 1 paragraph style and select apply style then next style.

    New text (typeing)

    Start typing with the selected 1 paragraph style. When you press ENTER to start a new paragraph, the style will switch automatically to the 2nd paragraph style to what manually enable you return.

    HTH

    -mt

  • First line of KeywordFilterField error

    I have a KeyworkFilterField with a simple reminder that uses drawListRow to create a list of 2 lines.

    When the screen initially loading the first line there is only one line. After a search with any character of 2nd line shows. This only happens for the first row.

    With the help of jde 4.6.1.

    {public drawListRow Sub (ListField listField, graphics graphics, int index, int y, int width)}
    MYLIST = myFilterField.getResultList ();
    listField.setRowHeight ((graphics.getFont () .getHeight () * 2) + 0);
    Object currentRow = myList.getAt (index);
    If (null! = currentRow) {}
    graphics.setColor (Color.BLACK);
    graphics.drawRect (0, y, width, listField.getHeight ());
    graphics.drawText (((Device) currentRow) m:System.NET.SocketAddress.ToString (), 2, y);
    graphics.setColor (Color.LIGHTGREY);
    graphics.drawText (((Device) currentRow) .getFormattedPhone (), 2, (y + graphics.getFont () .getHeight ()));
    Draw the separation line.
    graphics.drawLine (0, y + listField.getRowHeight () - 1, listField.getPreferredWidth () + 1000, y + listField.getRowHeight () - 1);
    }

    You can retrieve fonts using getFont() (this.getFont () or myField.getFont ()).

  • Mr President, how can I enter two rows at the same time with different default values that only the first line to use see?

    Mr President.

    My worm jdev is 12.2.1

    How to enter two rows at the same time with different default values that only the first line to use see?

    Suppose I have a table with four fields as below

    "DEBIT" VARCHAR2(7) , 
      "DRNAME" VARCHAR2(50),
      "CREDIT" VARCHAR2(7) , 
      "CRNAME" VARCHAR2(50),
    

    Now I want that when I click on a button (create an insert) to create the first line with the default values below

    firstrow.png

    So if I click on the button and then validate the second row with different values is also inserted on commit.

    The value of the second row are like the picture below

    tworows.png

    But the second row should be invisible. It could be achieved by adding vc in the vo.

    The difficult part in my question is therefore, to add the second row with the new default values.

    Because I already added default values in the first row.

    Now how to add second time default values.

    Concerning

    Mr President

    I change the code given by expensive Sameh Nassar and get my results.

    Thanks once again dear Sameh Nassar .

    My code to get my goal is

    First line of code is

        protected void doDML(int operation, TransactionEvent e) {    
    
            if(operation != DML_DELETE)
                 {
                     setAmount(getPurqty().multiply(getUnitpurprice()));
                 } 
    
            if (operation == DML_INSERT )
                       {
                               System.out.println("I am in Insert with vid= " + getVid());
                           insertSecondRowInDatabase(getVid(),getLineitem(),"6010010","SALES TAX PAYABLE",
                            (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                           }
    
            if(operation == DML_UPDATE)
                              {                                                    
    
                                 System.out.println("I am in Update with vid= " + getVid());
                             updateSecondRowInDatabase(getVid(),
                                 (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                              }                      
    
            super.doDML(operation, e);
        }
        private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object value4, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "Insert into vdet (VID,LINEITEM,DEBIT,DRNAME,AMOUNT) values " +
                 "('" + value1 + "','" + value2 + "','" + value3 + "','" + value4 + "','" + value5 + "')";  
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }
                  }  
    
                  private void updateSecondRowInDatabase(Object value1, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "update vdet set  AMOUNT='"+ value5+"' where VID='" + value1 + "'";                     
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);  
    
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }                  
    
                  }
    

    Second line code is inside a bean method

        public void addNewPurchaseVoucher(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("VoucherView1Iterator");
                   RowSetIterator rsi = dciter.getRowSetIterator();
                   Row lastRow = rsi.last();
                   int lastRowIndex = rsi.getRangeIndexOf(lastRow);
                   Row newRow = rsi.createRow();
                   newRow.setNewRowState(Row.STATUS_NEW);
                   rsi.insertRowAtRangeIndex(lastRowIndex +1, newRow);
                   rsi.setCurrentRow(newRow);
    
                   BindingContainer bindings1 = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter1 = (DCIteratorBinding) bindings1.get("VdetView1Iterator");
                   RowSetIterator rsi1 = dciter1.getRowSetIterator();
                   Row lastRow1 = rsi1.last();
                   int lastRowIndex1 = rsi1.getRangeIndexOf(lastRow1);
                   Row newRow1 = rsi1.createRow();
                   newRow1.setNewRowState(Row.STATUS_NEW);
                   rsi1.insertRowAtRangeIndex(lastRowIndex1 +1, newRow1);
                   rsi1.setCurrentRow(newRow1);
        }
    

    And final saveUpdate method is

        public void saveUpdateButton(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindingsBC = BindingContext.getCurrent().getCurrentBindingsEntry();      
    
                   OperationBinding commit = bindingsBC.getOperationBinding("Commit");
                   commit.execute(); 
    
            OperationBinding operationBinding = BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit");
            operationBinding.execute();
            DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("VdetView1Iterator");// write iterator name from pageDef.
            iter.getViewObject().executeQuery();  
    
        }
    

    Thanks for all the cooperation to obtain the desired results.

    Concerning

  • How to select and default hightlight the first line in a programmatic Table(ADF Table created based on a SortableModel) ADF.

    Hi all


    We use JDeveloper Studio Edition Version 12.1.3.0.0 and deployed on GlassFish Server Open Source Edition 3.1.2.2 (build 5) and connect to the SQLServer database.


    We created a table ADF programming related to a SortableModel created programmatically to a bean.


    We need to select and highlight the first row in the table just after making it to retrieve data based on the first line.


    We tried the based on the following thread: How to call the bean support just after JSFF / page fragment loads? and a few other posts online, but it does not work very well.


    W has created a hidden text in the bottom of the JSF model as follows:


    < af:table varStatus = "rowStat" Summary = "table" value = "#{pageFlowScope.crudBean.dynamicTable.collectionModel} '"

    Rows = "#{pageFlowScope.crudBean.dynamicTable.collectionModel.RowCount} '"

    contentDelivery = 'immediate' var = 'row' rendered = 'true '.

    Binding = "#{backingBeanScope.crudBackingBean.tasksTable} '"

    selectionListener = "#{backingBeanScope.crudBackingBean.customListener} '"

    "rowSelection ="single"id ="t1"partialTriggers =": pt_gr2 "columnStretching =" column: clmn0 ">

    < af:forEach items = "#{pageFlowScope.crudBean.dynamicTable.columnNames}" var = 'name' varStatus 'vs' = > "

    < af:column sortable = "true" sortProperty rowHeader = "#{name}" = "no style" headerText = "#{pageFlowScope.crudBean.dynamicTable.columnLabel [name]}" "

    inlineStyle = "width: 100px;"  ID = "clmn$ {vs.index}" >

    < af:activeOutputText value = "#{row [name]}" id = "aot1" / >

    < / af:column >

    < / af:forEach >

    < / af:table >

    ....


    < af:outputText id = "hiddenOutputTextId" visible = "false" value = "#{backingBeanScope.crudBackingBean.afterPageLoad} '"

    Binding="#{backingBeanScope.crudBackingBean.hiddenOutputText}"/ >

    And we have added the code to the bean to support below:

    public String getAfterPageLoad() {}

    If (!.) {AdfFacesContext.getCurrentInstance () .isPostback ()}

    selectFirstRowInTasksTable();

    }

    Return afterPageLoad;

    }

    public void selectFirstRowInTasksTable() {}

    try {}

    RKS RowKeySet = new RowKeySetImpl();

    RowKeySet rksEmpty = new RowKeySetImpl();

    Model CollectionModel = tasksTable.getValue ((CollectionModel));

    ROWCOUNT int = model.getRowCount ();

    If (rowcount > 0) {}

    model.setRowIndex (0);

    Key of the object = model.getRowKey ();

    RKS. Add (Key);

    tasksTable.setSelectedRowKeys (rks);

    SelectionEvent selectEvent =

    new SelectionEvent (tasksTable.getSelectedRowKeys (), rks, tasksTable);

    selectEvent.queue ();

    customListener (selectEvent); / / to retrieve data

    AdfFacesContext.getCurrentInstance () .addPartialTarget (tasksTable);

    }

    } catch (Exception e) {}

    }

    }

    I think that () selectEvent.queue; should work even without calling the customerListener, but it is not working in all cases.

    What is the problem in my code?



    Have you tried to bind property of 'selectedRowKeys' to selection configuration / bean there?

    Something like:

    public RowKeySet getSelectedRKS() {
        if (rks == null) {
            // make first record as selected
            // create RowKeySet and assign it to rks variable(where rks is variable defined in bean with some scope higher than request scope)
        }
        return rks;
    }
    

    Dario

  • Discover with function as datasource returns only the first line.

    Hello

    I created the following function to get the status of all the rules for the instances of SQL Server.

    The data type of the function output has been configured as 'List of SQLInstanceRuleStatuss', where SQLInstanceRuleStatuss is the custom type, I created in the same module.

    When I tested the function, it returns all instances of SQL Server with two other columns.

    But when I try to create a view with the Rows property that is configured to use the feature, it returns only the first line:

    sqlRules = new ArrayList();

    queryStatement = server. QueryService.createStatement ("(DBSS_Instance)");

    queryResult = server. QueryService.executeStatement (queryStatement);

    for (it in queryResult.topologyObjects)

    {

    sqlRule is functionHelper.createDataObject ("westjet_mark_dev:SQLInstanceRuleStatus", "none", "test");.

    sqlRule.instance = it;

    sqlRule.ruleName = 'test rule name';

    sqlRule.status = false;

    sqlRules.add (sqlRule);

    }

    Return sqlRules;

    Did I miss something?

    Thank you

    Mark

    Mark,

    I think I forgot something

    sqlRule=functionHelper.createDataObject("westjet_mark_dev:SQLInstanceRuleStatus","none","test");

    you create the test id

    change your line of

    sqlRule=functionHelper.createDataObject("westjet_mark_dev:SQLInstanceRuleStatus","none",null);

    This should allow the creation of a single object in your loop for

  • I'm working on a list at several levels, and when my list gets to the two figures on the third level, he pushes the first line of the text beyond the point of withdrawal.

    I played a bit with the indent and spacing in the paragraph without result style. How to get to the line upwards again after this point or just change the withdrawal of this it is so every game, no matter what number he?

    Use a withdrawal left, like 10 mm for iterated section, then set the indentation of first line to 10 mm. (or 15/15 etc., depending on how much you need. Enter a tab between the number and the text in the first line.

    If you use auto-numbering lists, then typing a tab is not necessary, but also take a look at the left indent and the parameters of the line first indent.

  • Missing RowSetIterator of first line

    ADF hello friends,

    I have a problem with the following code.
    JDEV version 11.1.2.2.0

    {} public void doSomething (ActionEvent actionEvent)
    BindingContext bctx = BindingContext.getCurrent ();
    BindingContainer bcon = bctx.getCurrentBindingsEntry ();
    DCBindingContainer dcbcon = bcon (DCBindingContainer);
    DCIteratorBinding dciter = dcbcon.findIteratorBinding("EmployeesView1Iterator");
    RowSetIterator rsiter = dciter.getRowSetIterator ();
    System.out.println ("COUNT:" + rsiter.getRowCount ());
    int i = 0;
    rsiter. Reset();
    While (rsiter.hasNext ()) {}
    Line = rsiter.next ();
    System.out.println (++ i + ":" + row.getAttribute ("LastName"));
    }
    rsiter.closeRowSetIterator ();
    }

    Shortened SOP output:

    COUNTY: 107
    1: Kochhar
    2: the Rooster
    .
    .
    -
    106: Gietz

    The RowSetIterator swallows the first line Mr.King. Is there a work around for this problem?
    The SOPs COUNT shows 107 lines, but LASTNAME has only 106 entries.

    Thank you for your help.

    Best regards
    Gunnar

    This is normal if your iterator is used on a page in the user interface. In this case, the reset method sets the iterator to the first row and not before the first row (which is normal for other iterators). So when you run essential next() you jump the first row.
    To resolve this problem, you can either use an ieterator that is not used on a page in the user interface or rewrite your loop of

    Row row = rsiter.first();
    while (row != null)
    {
    // work with the row
    row = rsiter.next();
    }
    

    Timo

  • Text box formatting withdrawal negative first: first line begins on the left, the rest is on the right.

    InDesign CS6 finally arrived less than two weeks before I need the preliminary version of a major publication. I used last InDesign version 3 or 4. I used Publisher lately. I'm half way through the manual ID so direct me to a page number if this is the answer in there.

    I want the first line of a paragraph in my text box to start on the left, then jump to a tab where more text begins. Until then, the text would wrap tab if it is long enough. Then the process begins again with the following paragraph in the same text box. I would like this formatting be automatic, with not much fuss on my part to do at work - and run around (not on top of) pictures on the right.

    It should look like this:

    -----

    Funding: Funding goes here. It is long.
    It wraps to the point the tab to the 'a '.

    Description: A description goes here. It is long.
    It wraps to the point the tab to the 'a '.

    -----

    In Word, do you it by pulling the back 'home' to the right, where it aligns with the tab, and it is called a "hanging indent."

    Is it possible (easily) in InDesign? Or do I have two areas of text with the vertices lined up, to get two different margins 'left'?

    I tried to do it with a table but sometimes the table gets too long and the bottom line or two disappears, even if the blue lines are way big... and the text is not flowing around the photos to the right, so I have to keep narrow if the type is not on the top of the photo. This is not the effect I want! My last page model has seven two columns, a table of line that is not an ideal solution either because I have to manually set the gaps between paragraphs and tables - and the text isn't always in circulation around the photos.

    Help!

    Peter's suggestion works if you prefer justified left, titles that show you in your example. Indent to here works when you want to right justified titles that I show in my example.

  • Hanging of withdrawals - new Para first line: double tab?

    Hi all

    Very limited experience with InDesign, so please forgive.

    I have a template for Word I'm trying to reproduce in Indesign for a book project:

    Screen shot 2013-04-19 at 17.20.03.png

    I used the hanging indents here to separate the initials of someone from their speech in a transcript. Using a tab at the beginning I can achieve. However, in InDesign, I seem to have to use two characters of tab for each new paragraph - is it possible so that InDesign can behave in the same way as Word?

    Screen shot 2013-04-19 at 17.20.58.png

    Up to this point, I have follow-up 'Create a hanging indent': http://help.Adobe.com/en_US/InDesign/CS/using/WSa285fff53dea4f8617383751001ea8cb3f-6dbba.h tml

    Any help much appreciated.

    This must be one of the least useful help topics.

    You need that a tab in the paragraph, between the initials and their speeches. Everything is managed through dashes, and it's best handles in a paragraph Style (a you actually need two styles if there is more than one paragraph per person), in the withdrawal and spacing screen in the style definition window.

    The first paragraph, set the left indent value. Which is how long you want the text of the speech from the edge of the frame. Then set the withdrawal of first line to a negative value, the same number, so the initials are on hunting left in thypically. You can add spaces before or after the space here, too, if you want paragraphs spacing as they are in your first example. Now go to the screen of the tabs in the dialog box and define a left-aligned tab at the same position as the left indent.

    For the following, your new style can be based on the first style, but the withdrawal of first line value of 0. It's the only thing you have to change here, but you can remove the tab if you want (or not, because at this point it will never get used).

    If there is always at least two paragraphs, you can set the second style be the following Style for the first (in the general screen). If the number of points may vary, with two styles and put 'same style' as the next style for your second. If there is always a fixed number of paragraphs, you can create a style for each of them (according to them) and set the style in a rolling loop so the last paragraph has the style of the first paragraph as its next style. This way you can just typing away and do not testify to a style. Whenever you press the Enter key, the following style will be applied to the new paragraph.

    As far as I remember, it really is the same way, we need to do it in Word.

  • How do to "BOLD" in the first line of text on a number of sections of text at a time

    CS5 using (but we have CS5

    .5 available) we will create a business directory. Each page has columns of type

    business listings with the company name on top, under this address under this phone, etc.  Each ad is separated

    by a single line. There are thousands of ads, and we need to "BOLD" in the top line of each. How can do us

    without making them individually?

    Each line a paragraph, or each list a paragraph with soft returns (forced line breaks)?

    It's very simple and basic in both cases an operation. It is especially easy if each ad has the same number of lines, so we will focus first with this case.

    Each line should be a separate paragraph. If you have 4 lines, as your example, you might want to mention their name, street, city, and phone. You can and should, all the styles that will be similar in appearance on the same basic model and change only the atrributes that are different, so, for example, if all lines use the same font, many use the same size and weight and only the top line is different and only by being "BOLD" and or larger size start by defining the street, then city and phone based Street and you don't need to define something more than the next Style, I'll get to in a second.

    For topics, set name based as well on the street, but change the font characters. Now all the features of the basic fonts can be changed in one place, the definition of the style Stree.

    Since you have the same number of lines in each list, you can set up a loop "next style". For name, style next street is, the street is the city, for the city it is the phone and is name for the phone. You will also need to toe after the add space in the name, or space on the phone to book spaces registration and you probably also consider to assign everything except phone keep with the next line to prevent a list from breaking across a page or column break. If currently you have blank lines as separators (empty paragraphs), get rid of them. There are change queries find already registered in ID that will do that.

    Once the text is in place and the styles are defined, you can select all, then right click on the style name in the paragraph Styles Panel and choose apply following Style and name. Reformatted your entire list. IT IS CRITICAL in this method that the structure of each list is identical, and if there are no empty lines between the lists.

    If each line is a paragraph, but there is line different counts, you will probably reach with just two styles, one for the headings oand one for everything else, but the beat of following style will not work. If there is something unique that appears in all the headings you can use find/replace to make search and reformat in shape, but I suspect that this will not be the case on in the real world, there will be a manual work involved.

    Where a lisitn is a single paragraph, line break forced (which is better suited to the case of an uneven lines by registration number) you can define a character style nested to be applied by means of a line break forced to make the first line "BOLD", red or any other thing you want.

    At this point, you are probbly, noting that a bit before planningn is a good idea when you do a directory so that your ads have some sort of coherent structure that allows for automation. I have no idea whre that your text is coming from or how it is done in the code. If it can be established as a .csv or a tab-delimited text file, you can use data merge to fill a file based on a model of merge (i.e., how to build directories for my clients who need). You can set styles in the model to each field or paragraph that contains several fields, and merge data will remove empty lines if all row fields are null and there is no punctuation or whitespace on the line.

    A multiple records per page fusion will give you individual blocks of text for each record, and you can, if you wish, thread them using the script text point of Rorohiko.com.

  • Prevent the withdrawal of first line at the beginning of a page or column

    Hello

    I work with long documents (books). I want to automate as much as possible to add. My question is: Y at - there a way to tell InDesign do not indent the first line of a paragraph when it is on a page or a column?

    Thank you

    Martin

    The quick answer is, no there is not, unfortunately. InDesign can't do 'conditional paragraphs', but it would be a very good feature request.

    What could be done is a script: the script to find paragraphs at the top of a page or column and remove the dash.

    You can also check "automatic formatting" in-Tools Pro to see if it does what it takes:http://in-tools.com/plugins.html

    Finally, I wonder if Framemaker has such an option. It's somehow better suited to long documents that InDesign, I just realized.

    Ariel

  • Definition of 1st line indent to the length of the previous line. Possible?

    In Ventura, we used to be able to set the indentation of the first line of a paragraph to the length of the last line in the preceding paragraph. Is this possible in ID CS4? I need to do and do not know how.

    Thanks for your help

    Jon

    This quick and dirty script should do the trick. Select text and run this script...

    paras = app.selection[0].paragraphs;
    for(var i=0;i
    

    Substances

Maybe you are looking for

  • Cannot sync with I - Mac

    When you try to back up or synchronize 6 I - Pod or I-phone version 6 for 2011 I have Mac, receive error message "wrong answer received from the device."  I - Tunes does not recognize the device. Have reset tried hard and soft, I tried different cabl

  • A subscription to Match iTunes will allow me to get the rest of the Albums I already own from iTunes on Mac for Android?

    About 2/3 of my iTunes Library on my Mac was bought through the iTunes Store, about 1/3 of it was torn off a physical purchase of the CD album or bought directly at the site of artists (like A Moon pool of Radiohead in the form of www.amoonshapedpool

  • Error 0 x 80070422

    Separated from this thread. I get this error message in windows 7 x 64 Here are my log files. Any help would be great http://1drv.Ms/1nmYRCH

  • PERC H200 on SBS2011 RAID configuration

    Hello Is someone can you please tell me if there is a management tool of Windows OS database for Perc H200 Dell RAID controller? I spent hours searching the web and the Dell Web site looking for an other than the utility based BIOS configuration util

  • Smartphones New blackBerry Storm: Getting strange recurring text in the SMS application

    Hi all, I'm new to the storm and it works well, but I get a strange recurring message in my application of SMS. Whenever I get an email, phone call, voicemail, etc. I receive a text message in my SMS application that usually looks like this: "March 7