TextFrame Object CS3 [vbs]

Good Morning all, I'm trying to access the Textframe object in CS3. I've noticed that there is a "Textframes" object which seems straight forward to access and there is plenty of documentation on the next and in Scripting Guides.
However I cannot find any examples, tutorials or guides in how to access the "Textframe" object.
can anyone help please?

hi
Set myTF = myStory.TextFrames.Item(1)
gives you first TF of Story
Set myTF = myDoc.TextFrames.Item(1)
gives you first TF in Document
Set myTF = myChar.ParentTextFrames.Item(1)
gives you parent TF of character - works same way for all text objects - Line, Word, Paragraph, Text, TextColumn, InsertionPoint - even if your text is in Cell - doesn't work in ID 2.0.2
Set myStory = myTF.ParentStory
if you want to get parent Story
robin
www.adobescripts.co.uk

Similar Messages

  • [CS3 / VBS]  TextFrame Problem

    So one of the old scripts I have revised to work for InDesign CS3 has a small problem.
    The script basically converts text into a table w/ some coloring options and so on. The problem is if I run the script with parts of the textframe not showing then it will only format the visible text. If I expand it and show the whole frame then it will work.
    Is there a quick option that I can throw in the code that will include all contents of the textframe so they are all converted correctly without expanding the frame?
    Thanks in advance!!!

    I don't know if I know exactly how the "parent story" works. I've been thrown into the scripting and InDesign world just recently and I'm working with scripts that were previously built.
    Here is a part of the VBScript that decides the users selection, maybe someone can help in telling me how to add the story into this -
    Rem finds the applicable frame and sends it to the ConvertIt function
    Set mySelection = myDoc.Selection.Item(1)
    Select Case TypeName(mySelection)
    Case "TextFrame"
    If mySelection.StartTextFrame.Tables.Count = 1 Then
    mySelection.StartTextFrame.Tables.Item(1).ConvertToText
    End If
    ConvertIt (mySelection.StartTextFrame)'.Texts.Item(1).ParentTextFrames)
    Case "Text", "InsertionPoint"
    If mySelection.ParentTextFrames.Item(1).StartTextFrame.Tables.Count = 1 Then
    mySelection.ParentTextFrames.Item(1).StartTextFrame.Tables.Item(1).Text.Item(1).ConvertToT ext
    End If
    ConvertIt (mySelection.ParentTextFrames.Item(1).StartTextFrame.Tables.Item(1).Texts)
    Case "Cell"
    Set mySelection = mySelection.Parent.ConvertToText
    ConvertIt (mySelection.ParentTextFrames.Item(1))
    Case Else
    MsgBox "Invalid Selection"
    End Select
    End If
    I appreciate all the help!!!

  • [CS3 / VBS] Groups in CS3

    I've converted over a few scripts that used to work fine in both CS and CS2.
    One particular scripts extracts text from tables on multiple textframes that include tables. After changing over to CS3 with this script, it does not extract any of the text from textframes/tables that has been grouped with other objects (for example images and other text frames).
    My question is there a way I can have the script ungroup items prior to running the rest of the script or is there any easier way than rewriting the whole script to include groups?
    Thanks!

    You don't need to ungroup the groups: use AllPageItems property of Group object. See posts 3 and 4 here – http://www.adobeforums.com/webx?128@@.59b6848b
    Kasyan

  • [CS3 / VBS]  Search in CS3

    I have another old script I'm updating for CS3. This one uses the "Search" function and CS3 doesn't like it, what would be my best option to replace this line with since I'm not having very good luck with it?
    If TextFrame.Tables.Item(1).Cells.Item(CellCounter).Characters.Count > 0 Then
    TextFrame.Tables.Item(1).Cells.Item(CellCounter).Search vbCr, False, False, " "
    End If
    Thanks in advance!

    Hi bstimpson,
    Try something like this:
    Rem Given a reference to InDesign "myInDesign"...
    Rem Clear the find text preferences
    myInDesign.FindTextPreferences = idNothingEnum.idNothing
    Rem Clear the change text preferences
    myInDesign.ChangeTextPreferences = idNothingEnum.idNothing
    Rem Set the "find what" property to a return
    Rem (using the InDesign metacharacter).
    myInDesign.FindTextPreferences.FindWhat = "^p"
    Rem Set the "change to" property to a space.
    myInDesign.ChangeTextPreferences.ChangeTo = " "
    Rem Do the find/change operation.
    TextFrame.Tables.Item(1).Cells.Item(CellCounter).ChangeText
    Rem Reset the find/change preferences
    myInDesign.FindTextPreferences = idNothingEnum.idNothing
    myInDesign.ChangeTextPreferences = idNothingEnum.idNothing
    Thanks,
    Ole

  • CS3, VBS, Selecting multiple text frames in a region is very slow

    Hello,
    I'm writing a script that selects a large crossword grid (19cm x 19cm), and changes the font and alignment before exporting out as an eps.
    When I run the code below, it starts off selecting the frames quickly and then gradually slows to a crawl, before being painfully slow at the end. It takes 35mins to run it on the clues grid and then the solution grid.
    Can anyone think of a way to rewrite the code so it's quicker? Or are there some settings that could be changed so it handles better? I've changed the Display Performance settings to the bare minimum, but it only has a little effect.
    Thanks for any help ... Nigel
    rem Selects grid and fixes text
    Set mySolPage = myDocumentA.Pages.Item(2)
    For myCounter = 1 to mySolPage.TextFrames.Count
    Set myTextFrame = mySolPage.TextFrames(myCounter)
    myBounds = myTextFrame.GeometricBounds
    If myBounds(0) > 35 and myBounds(1) > 5 and myBounds(2) < 240 and myBounds(3) < 210 Then
    myTextFrame.select(idSelectionOptions.idaddTo)
    myTextFrame.Texts.Item(1).AppliedFont = "Tahoma"
    myTextFrame.Texts.Item(1).fontstyle = "Bold"
    myTextFrame.Texts.Item(1).baselineShift = 0
    myTextFrame.textFramePreferences.VerticalJustification = idVerticalJustification.idCenterAlign
    myTextFrame.textFramePreferences.ignoreWrap = 1
    myTextFrame.textFramePreferences.firstBaselineOffset = idFirstBaseline.idAscentOffset
    else
    myTextFrame.select(idSelectionOptions.idremoveFrom)
    End If
    Next

    hi Nigel,
    1) move your TextFrames to separate layer - then you don't need to check Bounds
    2) turn OFF redrawing:
    Property EnableRedraw As Boolean
    Member of InDesign.ScriptPreference
    If true, enables redraw during script execution.
    3) create and use Para or Char Style - then you don't need to apply many times same params
    myTextFrame.ParentStory.Texts.Item(1).AppliedParagraphStyle = myParaStyle
    or
    call myTextFrame.ParentStory.Texts.Item(1).ApplyParagraphStyle(myParaStyle,True)
    and why you have:
    else
    myTextFrame.select(idSelectionOptions.idremoveFrom)
    there is no Select command ...
    but if you have Select command somewhere before - you can iterate .Selection collection - so you don't need to check bounds
    robin
    www.adobescripts.com

  • Where can I find the text fillColor for an empty TextFrame? [CS3]

    I've got a Javascript that needs the fillColor for text in a TextFrame.
    You can set the text fill color on an empty frame and InDesign will use that value when you enter text...but before you enter text, where can I get this value?
    Currently, for empty TextFrames I'm using pageItem.appliedObjectStyle.appliedParagraphStyle to retrieve the other settings. However, the "fillColor" value always appears to be (0,0,0,100).
    Where might I find this value?
    Thanks!

    hi,
    try to read it from
    pageItem.parentStory
    robin
    www.adobescripts.co.uk

  • [CS3 / VBS] Help with Story Selection

    This is basic I know but I'm having issues understanding stories in InDesign. I would like a selected frame to select the whole story and then do some type of functions.
    Here is a script that sets selection as a textframe, so something like this but with a story -
    Case "TextFrame"
    If mySelection.StartTextFrame.Tables.Count = 1 Then
    mySelection.StartTextFrame.Tables.Item(1).ConvertToText
    End If
    Thanks again!!!

    You want mySelection.ParentStory
    Peter

  • [CS3][VBS]Converting a CALS table to Indesign table in XML

    Hi!<br /><br />I have an xml-file with tables that I want to import into Indesign. It works fine when I use the Import CALS tables as Indesign tables in "Import options", but the problem is when I do this some emphasis elements inside the "entry" elements isn't found when I try to use XMLRules to format the emphasis elements in the document...<br />The structure of the table can be like this (in general):<br />Tabell<br />  table<br />    tblgrp<br />      tbody<br />       row<br />         <entry>Some text...<emp Type = "bold">bold text</emp></entry><br />         <entry>Some text</entry><br />         <entry>some text</entry><br />       row<br />      tbody<br />    tblgrp<br />   table<br /> Tabell<br /><br />When I import the Table as CALS tables to Indesign tables, the table structure is collapsed into just a <Tabell> element. I assume this is the reason why the <emp> element isn't found.<br /><br />I try to solve this by NOT importing CALS tables to Indesign tables. I see then that the whole table structure is intact in the structure panel and the <emp> elements are also found by the XMLRules, but the contents is not put inside a table in the indesign document. To put the table elements into a table in Indesign I use the Command: "ConvertElementToTable" but this doesnt work very well. I use it in XMLRules like this:<br /><br />Public Property Get xpath()<br />xpath = "//Tabell"<br />End Property<br /><br />Public Function apply(myXMLElement, myRuleProcessor)<br />With myXMLElement<br />.ConvertElementToTable "row", "entry"<br />End With<br />apply = False<br />End Function<br /><br />Does anyone have any experience of importing XML-tables in Indesign and formatting them? I could really need some to put the xml table into Indesign tables...Please help!<br /><br />In advance thanks!

    Hi!
    Just check the checkbox "Import CALS tables as Indesign tables" in the XML import options dialogbox. Then it should go automatically.
    The problem with this approach is that the entire table structure is collapsed to a single table element in the struture. If one want to do some xml-prosessing at row or cell level one need to to this outside indesign or not import CALS as Indesign tables. The big question is if there is some easy way to convert a CALS table to an Indesign table inside Indesign after one have imported the data and prosessed the row and cell elements...
    Hope anyone knows more than me about this....
    Anyway, mkarthic, I hope my answer helped you to import your CALS tables!:-)
    Greetings
    Pål

  • [CS3 / VBS] jpeg export - light horzontal line in final image...

    Hello,
    I am having an issue when exporting jpegs.
    When I output at the same dpi as an image placed on my document, I am getting between 1 and 5 horizontal light-colored lines showing up on the created jpeg. If I increase or decrease the output resolution by around 10 dpi, the line goes away.
    For example, my document has a 300 dpi image on it, I export at 300 dpi, I get a light colored line horizontal through just the image on the page, not anything to the left or right of the image area. If I output a 310 dpi jpeg, everything looks fine.
    This behavior happens whether called in code or exported by hand through the InDesign interface. I have also tried exporting to pdf, and it is find - no light-colored line. Last bit of information: The images I am using are both 24 bit color tiffs and grayscale tiffs. I have not tried it yet with other file formats.
    Anybody else run into this - and if so, what can I do about it?
    Thanks!

    I think I may have found out the problem here.
    The problem areas are with the high contrast blue and red-and other areas but blue and red show the most degradation. Obviously, DV being 4:1:1 (Panasonic DVCPro, NOT the 4:2:0 of DV PAL) there is a lot of colour information missing and the blue channel always takes the heaviest losses on the DVCPro format.
    The reason we've never seen this before is because we've always used the HVX cameras for either DVCPro 50 or DVCPro HD in this particular setup. In normal DV mode we almost always use our DVX100's which do have the different colour sampling and manage to smooth over this high contrast blue and red issue because of the sampling method and other factors like lesser quality optics, CCD blocks etc.
    So, by colour smoothing the material, something which QT player appears to do by default (I'm awaiting a reply from my engineer friend at Apple to confirm this) the steppy vertical lines disappear and everything is back to normal. It doesn't matter if the material is stretched out way beyond it's original dimensions, with the colour smoothed it fixes the banding on the high contrast red and blue areas.
    So the conclusion is format/codec, using a blue screen when a green one is far better suited to DV and subject material all conspired to produce the problem.
    As for the 1024 x 576 quandry, you say it doesn't exist yet if you select the Widescreen PAL square pixel preset in AE, the frame dimensions are...naturally: 1024 x 576. We also produce all our graphics for our video's at SD at that resolution and they work a treat in FCP in the anamorphic projects.

  • [CS3 / VBS] InCatalog Question

    Does anyone here work with InCatalog? I have a script I'm trying to use - InCatalogUpdateDataUsingODBC() to pull data from an active document.
    I'm trying to look at the actual InCatalog Link Field Name (ex. PartNumber, Price, etc.) to pick which data to actually pull from. I'm not sure how to incorporate it with the UpdateDataUsingODBC().
    I'm not sure if I'm making complete sense but any help would be greatly appreciated since I'm trying to get this script done asap.
    Thanks in advance!!!

    Are you trying to make a text frame expand to fit content? I was told that there is no intrinsic functionality for doing that, though there apparently is a script out there for it. If that's what you're doing, look at the InDesign WIndows forum for reference to the script.

  • [CS3][VBS] Delete Unused Swatches ALSO clears Gradient Swatches!

    Hi Folks!
    Heres another weird one. This code deletes unused CMYK swatches properly but also sets the background of some gradient swatches to black.
    myUnusedSwatches = currentdoc.UnusedSwatches.Count
    For myLoop = 1 To myUnusedSwatches
    On Error Resume Next
    Set myUnusedSwatches = currentdoc.UnusedSwatches.Item(1)
    *** I even through this in as a last ditch solution, but it only works sometimes***
    if instr(lcase(currentdoc.unusedswatches.item(1).name), "gradient") = 0 then
    myUnusedSwatches.Delete
    else myUnusedSwatches.Save
    end if
    Next
    Any ideas?

    I think i've gotten to the bottom of this - the designers have been using 'Paper' as a white background for gradients. When a colour swatch with CMYK 0 is used, the script works.
    If TypeName(currentdoc.UnusedSwatches.Item(1)) = "Gradient" Then
    Doesn't work, unfortunately, because its not actually deleting the gradient, its setting its background colour to black; the unused swatch its deleting is actually a color swatch.
    Since there will be a lot of files here set up this way, can you think of any way to work around this? Why does this not happen when you do the same action in the UI ('select all unsused'> 'Delete')?
    Thanks again Ole!
    Adam

  • CS3, VBS, Reset zero point

    Greetings,
    How do I reset the zero point to be 0,0 - ie relative to the top left corner of the document, in VBScript? In InDesign you double-click the top left box of the ruler.
    I found the below but have given up guessing how to apply it ...
    Property ZeroPoint As Variant
    Member of InDesign.Document
    The ruler origin, specified as page coordinates in the format [x, y]. as Array of 2 Units (Doubles or Strings)
    Thanks,
    Nigel

    try:
    myDoc.ZeroPoint = Array(0,0)
    (0,0) is always in top-left corner of Spread
    robin
    www.adobescripts.com

  • [CS3 / VBS] Ungroup Whole Document

    There may be a script already that does this but I haven't found it yet.
    Is there a simple line in a script I could have it ungroup everything in a document?
    It seems like it should be easy enough to do it.
    Thanks again from a beginner in scripting!

    I cannot test the VB script, but:
    my VB code will ungroup all groups - because after ungrouping grouped group myDocument.Groups.Count will be increased so this loop will end when all groups will be ungrouped
    but it should be modified - to prevent crash when Group is in Text as Anchored/Inline graphics and it should check if all remaining groups are as Anchored/Inline graphics - then loop should be ended
    robin
    www.adobescripts.co.uk

  • [CS3 JS] Indesign Textframe to Photoshop or Illustrator?

    I have some text in an indesign textframe I need exported to a transparent gif. Indesign has no option for exporting gifs, and jpgs won't work. Ive tryed looking at bridgetalk and doScript but I can't seem to figure out how to send a textframe object to photoshop(ill take illustrator too if thats easier). All I need to do is send the textframe as-is and export it to a transparent gif. Thanks in advance.

    Use InDesign for brochures; it has superior tyypograpical control, and is made for layout work. Use Illustrator for creating graphics and logos to place in the InDesign doucment. Save Photoshop for photo editing.
    Lynda.com is a good resourse, and it offers a free trail subscription. There are lots of good books available
    InDesign Visual QuickStart Guide by Sandee Cohen is one often recomended here.
    And once you get stated, the InDesign and Illustrator forums here are always a great resource.

  • CS3. Doesn't work FitContentToFrame in TextFrame

    Hi.
    I develop some script with support COM interface.
    I create new TextFrame and set some text. After that I execute function Fit(from TextFrame object) with parameter idContentToFrame. It not work. But, if I execute the same function with parameter idFrameToContent it excellent work.
    Please, help me.
    Thanks.

    Thank you Dave.
    I saw, in user interface it option is disabled, but I was think maybe I not correct set some other options for text frame, and got disable menu.
    I downloaded some script from adobe.com site for execute this operations. But it is in some hex code, like this:
    eval(unescape("%69%66%20%28%61%70%70%2E%64%6F%63%75%6D%65%6E%74%73%2E%6C%65%6E%67%74%68%20 %21%3D%20%30%29%7B%0A%09%69%66%20%28%61%70%70%2E%73%65%6C%65%63%74%69%6F%6E%2E%6C%65%6E%67 %74%68%20%3D%3D%20%31%29%7B%0A%09%09%73%77%69%74%63%68%20%28%61%70%70%2E%73%65%6C%65%63%74 %69%6F%6E%5B%30%5D%2E%63%6F%6E%73%74%72%75%63%74%6F%72%2E%6E%61%6D%65%29%7B%0A%09%09%09%63 %61%73%65%20%22%54%65%78%74%22%3A%0A%09%09%09%09%70%61%72%65%6E%74%54%65%78%74%46%72%61%6D %65%20%3D%20%61%70%70%2E%73%65%6C%65%63%74%69%6F%6E%5B%30%5D%2E%69%6E%73%65%72%74%69%6F%6E %50%6F%69%6E%74%73%5B%30%5D%2E%70%61%72%65%6E%74%54%65%78%74%46%72%61%6D%65%3B%0A%09%09%09 %09%73%74%6F%72%79%20%3D%20%61%70%70%2E%73%65%6C%65%63%74%69%6F%6E%5B%30%5D%2E%70%61%72%65 %6E%74%53%74%6F%72%79%3B%0A%09%09%09%09%62%72%65%61%6B%3B%0A%09%09%09%63%61%73%65%20%22%49 %6E%73%65%72%74%69%6F%6E%50%6F%69%6E%74%22%3A%0A%09%09%09%09%70%61%72%65%6E%74%54%65%78%74 %46%72%61%6D%65%20%3D%20%61%70%70%2E%73%65%6C%65%63%74%69%6F%6E%5B%30%5D%2E%70%61%72%65%6E %74%54%65%78%74%46%72%61%6D%65%3B%0A%09%09%09%09%73%74%6F%72%79%20%3D%20%61%70%70%2E%73%65 %6C%65%63%74%69%6F%6E%5B%30%5D%2E%70%61%72%65%6E%74%53%74%6F%72%79%3B%0A%09%09%09%09%69%66 %28%73%74%6F%72%79%2E%69%6E%73%65%72%74%69%6F%6E%50%6F%69%6E%74%73%2E%6C%65%6E%67%74%68%3C %32%29%20%65%72%72%28%22%53%65%6C%65%63%74%20%61%20%74%65%78%74%20%66%72%61%6D%65%20%77%69 %74%68%20%74%65%78%74%2E%22%29%3B%0A%09%09%09%09%62%72%65%61%6B%3B%0A%09%09%09%63%61%73%65 %20%22%54%65%78%74%46%72%61%6D%65%22%3A%0A%09%09%09%09%70%61%72%65%6E%74%54%65%78%74%46%72 %61%6D%65%20%3D%20%61%70%70%2E%73%65%6C%65%63%74%69%6F%6E%5B%30%5D%3B%0A%09%09%09%09%69%66 %28%70%61%72%65%6E%74%54%65%78%74%46%72%61%6D%65%2E%63%6F%6E%74%65%6E%74%73%20%3D%3D%20%22 %22%29%7B%0A%09%09%09%09%09%77%68%69%6C%65%28%70%61%72%65%6E%74%54%65%78%74%46%72%61%6D%65 %2E%70%72%65%76%69%6F%75%73%54%65%78%74%46%72%61%6D%65%29%7B%0A%09%09%09%09%09%09%70%61%72 %65%6E%74%54%65%78%74%46%72%61%6D%65%20%3D%20%70%61%72%65%6E%74%54%65%78%74%46%72%61%6D%65 %2E%70%72%65%76%69%6F%75%73%54%65%78%74%46%72%61%6D%65%0A%09%09%09%09%09%09%69%66%28%70%61 %72%65%6E%74%54%65%78%74%46%72%61%6D%65%2E%63%6F%6E%74%65%6E%74%73%20%3D%3D%20%22%22%29%7B %20%62%72%65%61%6B%3B%7D%0A%09%09%09%09%09%7D%0A%09%09%09%09%09%69%66%20%28%70%61%72%65%6E %74%54%65%78%74%46%72%61%6D%65%2E%63%6F%6E%74%65%6E%74%73%20%3D%3D%20%22%22%29%7B%65%72%72 %28%22%54%65%78%74%20%6D%75%73%74%20%62%65%20%70%72%65%73%65%6E%74%2E%22%29%3B%7D%0A%09%09 %09%09%7D%0A%09%09%09%09%73%74%6F%72%79%20%3D%20%70%61%72%65%6E%74%54%65%78%74%46%72%61%6D %65%2E%74%65%78%74%73%5B%30%5D%2E%70%61%72%65%6E%74%53%74%6F%72%79%3B%0A%09%09%09%09%62%72 %65%61%6B%3B%0A%09%09%09%64%65%66%61%75%6C%74%3A%0A%09%09%09%09%65%72%72%28%22%53%65%6C%65 %63%74%20%61%20%74%65%78%74%20%66%72%61%6D%65%20%6F%72%20%73%6F%6D%65%20%74%65%78%74%2E%22 %29%3B%0A%09%09%09%09%62%72%65%61%6B%3B%0A%09%09%7D%0A%09%7D%0A%09%65%6C%73%65%7B%0A%09%09 %65%72%72%28%22%53%65%6C%65%63%74%20%61%20%74%65%78%74%20%66%72%61%6D%65%20%6F%72%20%73%6F %6D%65%20%74%65%78%74%2E%22%29%3B%0A%09%7D%0A%7D%0A%65%6C%73%65%7B%0A%09%65%72%72%28%22%4E %6F%20%64%6F%63%75%6D%65%6E%74%73%20%61%72%65%20%6F%70%65%6E%2E%20%50%6C%65%61%73%65%20%6F %70%65%6E%20%61%20%64%6F%63%75%6D%65%6E%74%2C%20%73%65%6C%65%63%74%20%73%6F%6D%65%20%74%65 %78%74%2C%20%61%6E%64%20%74%72%79%20%61%67%61%69%6E%2E%22%29%3B%0A%7D%0A%0A%73%74%6F%72%79 %2E%74%65%78%74%73%2E%65%76%65%72%79%49%74%65%6D%28%29%2E%73%65%6C%65%63%74%28%29%3B%0A%61 %70%70%2E%63%6F%70%79%28%29%3B%0A%61%70%70%2E%73%65%6C%65%63%74%69%6F%6E%20%3D%20%6E%75%6C %6C%3B%0A%0A%6C%65%61%64%69%6E%67%20%3D%20%73%74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E%6C %65%61%64%69%6E%67%3B%0A%0A%0A%69%66%28%6C%65%61%64%69%6E%67%20%3D%3D%22%61%75%74%6F%22%29 %7B%0A%09%6C%65%61%64%69%6E%67%50%65%72%63%65%6E%74%20%3D%20%30%3B%0A%7D%20%65%6C%73%65%20 %7B%0A%09%6C%65%61%64%69%6E%67%50%65%72%63%65%6E%74%20%3D%20%6C%65%61%64%69%6E%67%20%2F%73 %74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E%70%6F%69%6E%74%53%69%7A%65%3B%0A%7D%0A%0A%2F%2F %66%69%72%73%74%20%63%68%65%63%6B%20%66%6F%72%20%6F%76%65%72%66%6C%6F%77%73%0A%77%68%69%6C %65%20%28%70%61%72%65%6E%74%54%65%78%74%46%72%61%6D%65%2E%6F%76%65%72%66%6C%6F%77%73%20%3D %3D%20%74%72%75%65%29%7B%0A%09%73%74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E%70%6F%69%6E%74 %53%69%7A%65%20%2A%3D%20%30%2E%35%3B%0A%09%69%66%20%28%6C%65%61%64%69%6E%67%20%21%3D%20%30 %29%7B%20%73%74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E%6C%65%61%64%69%6E%67%20%3D%20%20%73 %74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E%70%6F%69%6E%74%53%69%7A%65%2A%6C%65%61%64%69%6E %67%50%65%72%63%65%6E%74%7D%3B%0A%09%2F%2F%69%66%20%28%73%74%6F%72%79%2E%74%65%78%74%73%5B %30%5D%2E%70%6F%69%6E%74%53%69%7A%65%20%3C%3D%30%2E%31%29%7B%0A%09%09%2F%2F%65%72%72%28%22 %54%68%69%73%20%77%69%6C%6C%20%72%65%73%75%6C%74%20%69%6E%20%74%65%78%74%20%74%68%61%74%20 %69%73%20%6C%65%73%73%20%74%68%61%6E%20%30%2E%31%20%70%74%21%22%29%3B%0A%09%2F%2F%09%7D%0A %7D%0A%70%6F%69%6E%74%53%69%7A%65%31%20%3D%20%73%74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E %70%6F%69%6E%74%53%69%7A%65%3B%0A%0A%77%68%69%6C%65%20%28%70%61%72%65%6E%74%54%65%78%74%46 %72%61%6D%65%2E%6F%76%65%72%66%6C%6F%77%73%20%3D%3D%20%66%61%6C%73%65%29%7B%0A%09%73%74%6F %72%79%2E%74%65%78%74%73%5B%30%5D%2E%70%6F%69%6E%74%53%69%7A%65%20%2A%3D%20%32%3B%0A%09%69 %66%20%28%6C%65%61%64%69%6E%67%20%21%3D%20%30%29%7B%20%73%74%6F%72%79%2E%74%65%78%74%73%5B %30%5D%2E%6C%65%61%64%69%6E%67%20%3D%20%20%73%74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E%70 %6F%69%6E%74%53%69%7A%65%2A%6C%65%61%64%69%6E%67%50%65%72%63%65%6E%74%7D%3B%0A%09%2F%2F%69 %66%20%28%73%74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E%70%6F%69%6E%74%53%69%7A%65%20%3E%32 %30%30%29%7B%0A%09%09%2F%2F%65%72%72%28%22%54%68%69%73%20%77%69%6C%6C%20%72%65%73%75%6C%74 %20%69%6E%20%74%65%78%74%20%74%68%61%74%20%69%73%20%6D%6F%72%65%20%74%68%61%6E%20%32%30%30 %20%70%74%21%22%29%3B%0A%09%2F%2F%09%7D%0A%7D%0A%70%6F%69%6E%74%53%69%7A%65%32%20%3D%20%70 %6F%69%6E%74%53%69%7A%65%20%3D%20%73%74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E%70%6F%69%6E %74%53%69%7A%65%3B%0A%64%69%76%69%64%65%72%20%3D%20%70%6F%69%6E%74%53%69%7A%65%32%20%2D%20 %70%6F%69%6E%74%53%69%7A%65%31%3B%0A%77%68%69%6C%65%20%28%31%29%7B%0A%09%69%66%20%28%64%69 %76%69%64%65%72%20%3C%20%30%2E%30%31%29%7B%62%72%65%61%6B%3B%7D%0A%09%69%66%20%28%21%70%61 %72%65%6E%74%54%65%78%74%46%72%61%6D%65%2E%6F%76%65%72%66%6C%6F%77%73%29%7B%0A%09%09%70%6F %69%6E%74%53%69%7A%65%20%3D%20%70%6F%69%6E%74%53%69%7A%65%20%2B%3D%20%64%69%76%69%64%65%72 %0A%09%09%73%74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E%70%6F%69%6E%74%53%69%7A%65%20%3D%20 %70%6F%69%6E%74%53%69%7A%65%3B%0A%09%09%64%69%76%69%64%65%72%20%3D%20%64%69%76%69%64%65%72 %2F%32%3B%0A%09%7D%20%65%6C%73%65%20%7B%0A%09%09%70%6F%69%6E%74%53%69%7A%65%20%3D%20%70%6F %69%6E%74%53%69%7A%65%20%2D%3D%20%64%69%76%69%64%65%72%0A%09%09%73%74%6F%72%79%2E%74%65%78 %74%73%5B%30%5D%2E%70%6F%69%6E%74%53%69%7A%65%20%3D%20%70%6F%69%6E%74%53%69%7A%65%3B%0A%09 %09%64%69%76%69%64%65%72%20%3D%20%64%69%76%69%64%65%72%2F%32%3B%0A%09%7D%0A%09%69%66%20%28 %6C%65%61%64%69%6E%67%20%21%3D%20%30%29%7B%20%73%74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E %6C%65%61%64%69%6E%67%20%3D%20%20%73%74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E%70%6F%69%6E %74%53%69%7A%65%2A%6C%65%61%64%69%6E%67%50%65%72%63%65%6E%74%7D%3B%0A%7D%0A%0A%77%68%69%6C %65%20%28%70%61%72%65%6E%74%54%65%78%74%46%72%61%6D%65%2E%6F%76%65%72%66%6C%6F%77%73%29%7B %0A%09%73%74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E%70%6F%69%6E%74%53%69%7A%65%20%2D%3D%20 %64%69%76%69%64%65%72%3B%0A%09%69%66%20%28%6C%65%61%64%69%6E%67%20%21%3D%20%30%29%7B%20%73 %74%6F%72%79%2E%74%65%78%74%73%5B%30%5D%2E%6C%65%61%64%69%6E%67%20%3D%20%20%73%74%6F%72%79 %2E%74%65%78%74%73%5B%30%5D%2E%70%6F%69%6E%74%53%69%7A%65%2A%6C%65%61%64%69%6E%67%50%65%72 %63%65%6E%74%7D%3B%0A%7D%0A%0A%0A%0A%64%69%73%70%6C%61%79%44%69%61%

Maybe you are looking for

  • Bug in iMessage Can't Log in with different Apple ID

    My husband, four boys and I share my iTunes Apple ID to back up data to the iCloud and share music, as I pay for a large amount of storage for all of us. I set up a different Apple ID for my messages, as the boys keep turning on iMessage with MY phon

  • DDTS-100 Decoder with Inspire 5500D 5.1 Speakers (DIN Problem!)

    Dear all, I bought a DDTS-100 Decoder today, thinking it will improve connectivity and sound quality of my Inspire 5500D 5.1 Speaker System, but I have run into a bit of a problem. My system has a sub which every speaker is connected to and I have to

  • Using Google Docs to remotely convert documents.

    Damn, this is just too cool. GDD is a Python script that downloads all your Google Docs documents. What's even cooler is the fact that one can specify the conversion format. Which means, doc/docx/odt/rtf will be converted to HTML, xls/xlsx/ods will b

  • Valuation class,valuation type object in material creation.

    Dear all, We have some users who have authorization for Valuation class and Valuation type , so please advice the object name or t-code to control the users. Thanks & regards Ratnakar G.

  • Samsung no wifi help???

    Landed today and turned on my samsung and got the green 4g light but no blue wifi light and no green wifi light. I've reset and also pulled the battery. No luck. Any ideas?