Adding Simple Raw Text to I-procurement

Hi All
I am new to the forum & a non-Technical user.
I have a requirement to add simple raw text to an I-proc screen. I have succeeded in doing this, but it is a process of trial and error to find the right place to add the text. What is the correct method for working out where to add the text? Are there any documents that could help me - self learn?
TIA
Regards
Paul

What is the correct method for working out where to add the text?
Shouldn't this decision be based on the requirement as to where you want to place the text. What is the exact requirement? If its just some simple text for user, you can also consider the tip text component.[b]
--Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • Adding simple ALT Text to a photo

    Is there some easy way of doing this? I have 30 photos or so
    and I'm supose to add Alt Text to all the pictures, with the
    peoples' names. The photos have a hot spot over them, so the photo
    isn't actaully the button.

    Check the font size in the options bar. If it's really small you won't see it.
    Look in your layer's palette and insure your text is in a layer located above the photo in the stack.
    You might also check your image's resolution in the Image Size dialog. I've seen a couple of posts where someone changes the resolution to 1 with resample turned off...then can't see the text because it's too small even when they have large numbers inserted in the font size box.

  • Accessing raw text of TextFlow and performing a search

    I am trying to figure out the best way to perform a search
    within a TextFlow to locate a specific piece of text (either a word
    or set of words).
    I have had a hard time figuring out how to actually gain
    access to the raw text of the TextFlow that is loaded. Once that is
    loaded, I need to be able to search through that text, find the
    location of the text, and show that container.
    Essentially add search capability to the Pagination example.
    The only thing I can think of that seems like it may work
    would be to export the TextFlow into an XML file, then perform the
    search on the XML file. Once that is done, I would have to figure
    out which position in the xml file the text was located, and load
    the container with that position....
    Surely there is a better way?
    Thanks, Tim

    I think so - here's how I'd reccomend approaching the
    problem.
    Given a TextFlow I'd do a getFirstLeaf. That returns a
    FlowLeafElement. I'd then look at the FlowLeafElement.text property
    to access the text for matching. To advance to the next leaf
    element use FlowLeafElement.getNextLeaf.
    You'll have to do some book keeping when you find a match to
    figure out the absolute position of the beginning of the match.
    Next step would be to use
    textFlow.flowComposer.findControllerIndexAtPosition to figure out
    which container has the matched text.
    Adding niceties you could search a paragraph at a time by
    taking advantage of the limitElement parameter to getNextLeaf.
    After calling getFirstLeaf call getParagraph to find the paragrah
    and use that as the limit element. To advance to the next paragraph
    use null as the limit element and call getParagraph again for the
    new limit element.
    Hope that helps.
    Richard

  • Simple Button.Text not changing properly

    Hi all,
    The WPF learning curve is steep.
    I have pulled my hair over this simple Button.Text change and I can't get it to work.
    In WinForms this works:
    Public Class Form1
    Private Sub BTN_1_Click(sender As Object, e As EventArgs) Handles BTN_1.Click
    BTN_1.Text = "CLICKED BUTTON 1"
    BTN_2.Text = "CHANGED BY BUTTON 1"
    End Sub
    Private Sub BTN_2_Click(sender As Object, e As EventArgs) Handles BTN_2.Click
    BTN_2.Text = "CLICKED BUTTON 2"
    BTN_1.Text = "CHANGED BY BUTTON 2"
    End Sub
    End Class
    I want to do the same thing in WPF
    <Window x:Class="MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
    <Grid>
    <Grid.RowDefinitions>
    <RowDefinition/>
    <RowDefinition/>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition/>
    <ColumnDefinition/>
    </Grid.ColumnDefinitions>
    <Grid Grid.Column="0" Grid.Row="0">
    <Button Name="BTN_1" Click="CLICK_BTN_1">
    <StackPanel>
    <TextBlock Name="CLICK_BTN_1_LABEL_1" Text="Button 1 text" VerticalAlignment="Top" Foreground="#BF000000" >
    </TextBlock>
    <TextBlock Name="CLICK_BTN_1_LABEL_2" VerticalAlignment="Top" Foreground="#BF000000">
    <Run FontSize="25">Button 1</Run>
    <Run FontSize="12">Label 2</Run>
    </TextBlock>
    </StackPanel>
    </Button>
    </Grid>
    <Grid Grid.Column="1" Grid.Row="0">
    <Button Name="BTN_2" Click="CLICK_BTN_1">
    <StackPanel>
    <TextBlock Name="CLICK_BTN_2_LABEL_1" Text="Button 2 text" VerticalAlignment="Top" Foreground="#BF000000">
    </TextBlock>
    <TextBlock Name="CLICK_BTN_2_LABEL_2" VerticalAlignment="Top" Foreground="#BF000000">
    <Run FontSize="25">Button 2</Run>
    <Run FontSize="12">Label 2</Run>
    </TextBlock>
    </StackPanel>
    </Button>
    </Grid>
    </Grid>
    </Window>
    Class MainWindow
    Private Sub CLICK_BTN_1(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles BTN_1.Click
    ' CHANGE LABEL 1 ON BUTTON 1
    CLICK_BTN_1_LABEL_1.Text = "CLICKED BUTTON 1"
    ' CHANGE LABEL 1 ON BUTTON 2
    CLICK_BTN_2_LABEL_1.Text = "CHANGED BY BUTTON 1"
    End Sub
    Private Sub CLICK_BTN_2(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles BTN_2.Click
    ' CHANGE LABEL 1 ON BUTTON 1
    CLICK_BTN_1_LABEL_1.Text = "CHANGED BY BUTTON 2"
    ' CHANGE LABEL 1 ON BUTTON 2
    CLICK_BTN_2_LABEL_1.Text = "CLICKED BUTTON 2"
    End Sub
    End Class
    This used to be so simple with WinForms, what am I doing wrong here?
    New to WPF

    Yeah, I saw that as well but now I am stuck again:
    Same project but I have put the buttons in a usercontrol
    <Window x:Class="MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:Component_Changes"
    Title="MainWindow" Height="350" Width="525">
    <Grid>
    <Grid.RowDefinitions>
    <RowDefinition/>
    <RowDefinition/>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition/>
    <ColumnDefinition/>
    </Grid.ColumnDefinitions>
    <Grid Grid.Column="0" Grid.Row="0">
    <Viewbox Stretch="Fill">
    <ContentControl Name="UC_BTN1">
    <ContentControl.Content>
    <local:btn1 Margin="20"/>
    </ContentControl.Content>
    </ContentControl>
    </Viewbox>
    </Grid>
    <Grid Grid.Column="1" Grid.Row="0">
    <Viewbox Stretch="Fill">
    <ContentControl Name="UC_BTN2">
    <ContentControl.Content>
    <local:btn2 Margin="20"/>
    </ContentControl.Content>
    </ContentControl>
    </Viewbox>
    </Grid>
    </Grid>
    </Window>
    btn1.xaml
    <UserControl x:Class="btn1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
    <Button Name="BTN_1" Click="CLICK_BTN_1">
    <StackPanel>
    <TextBlock Name="CLICK_BTN_1_LABEL_1" Text="Button 1 text" VerticalAlignment="Top" Foreground="#BF000000" >
    </TextBlock>
    <TextBlock Name="CLICK_BTN_1_LABEL_2" VerticalAlignment="Top" Foreground="#BF000000">
    <Run FontSize="25">Button 1</Run>
    <Run FontSize="12">Label 2</Run>
    </TextBlock>
    </StackPanel>
    </Button>
    </Grid>
    </UserControl>
    btn1.xaml.vb
    Public Class btn1
    Dim CL_BTN2 As btn2
    Private Sub CLICK_BTN_1(sender As Object, e As RoutedEventArgs) Handles BTN_1.Click
    ' CHANGE LABEL 1 ON BUTTON 1
    CLICK_BTN_1_LABEL_1.Text = "CLICKED BUTTON 1"
    ' CHANGE LABEL 1 ON BUTTON 2
    CL_BTN2.CLICK_BTN_2_LABEL_1.Text = "CHANGED BY BUTTON 1"
    End Sub
    End Class
    btn2.xaml
    <UserControl x:Class="btn2"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
    <Button Name="BTN_2" Click="CLICK_BTN_2">
    <StackPanel>
    <TextBlock Name="CLICK_BTN_2_LABEL_1" Text="Button 2 text" VerticalAlignment="Top" Foreground="#BF000000">
    </TextBlock>
    <TextBlock Name="CLICK_BTN_2_LABEL_2" VerticalAlignment="Top" Foreground="#BF000000">
    <Run FontSize="25">Button 2</Run>
    <Run FontSize="12">Label 2</Run>
    </TextBlock>
    </StackPanel>
    </Button>
    </Grid>
    </UserControl>
    btn2.xaml.vb
    Public Class btn2
    Dim CL_BTN1 As btn1
    Private Sub CLICK_BTN_2(sender As Object, e As RoutedEventArgs) Handles BTN_2.Click
    ' CHANGE LABEL 1 ON BUTTON 1
    CL_BTN1.CLICK_BTN_1_LABEL_1.Text = "CHANGED BY BUTTON 2"
    ' CHANGE LABEL 1 ON BUTTON 2
    CLICK_BTN_2_LABEL_1.Text = "CLICKED BUTTON 2"
    End Sub
    End Class
    No warnings in the code but the error is: 'Object reference not set to an instance of an object' and I thought I did, obviously not in the right way.
    New to WPF

  • How to display HTML formatted text in the field with Item Style: Raw Text

    How can I display HTML formatted text in the field with Item Style: Raw Text.
    Currently the Item Style is Raw Text, but the text is being displayed along with HTML tags without formatting.
    Regards

    Hi,
    Use Item Style formattedText.
    Regards,
    Gyan

  • Is there a Simple free Text Editor for Belle?

    Symbian has been around for a very long time but I'm still struggling to find a
    simple free text editor where I can create a *.txt file and write down information in it or perhaps I don't know about it, so I was wondering is anyone familiar in any free text editor compatible with Belle?
    Thanking you in advance.
    Bobak.

    I use Notes. You know, standard notes. And easiest way to get this "file" out from the phone is to send it by e-mail.

  • Looking for Simple PDF Text Editor

    I have a very old laptop, and wanted a "simple PDF Text Editor".
    Basically, just a really express version where I can open a PDF, edit the existing text on the document and then resave the PDF.
    What's the simplest version without installing the Suites, or the full program?
    Is there just a simple version available?

    Adobe sells Acrobat Standard and Pro, that's it. Editing text in a PDF is not a trivial task, they're not intended to be editable documents.

  • Error - adding Feature "Full Text ..." SQL 2012 SP1

    I want to install a Feature "Full Text ..." on an existing SQL-Server Instance.
    I get the following error message:
    TITLE: SQL Server Setup failure.
    SQL Server Setup has encountered the following error:
    Registry properties are not valid under this context..
    For help, click:
    http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft%20SQL%20Server&EvtSrc=setup.rll&EvtID=50000&EvtType=0x610364A7%25400xE9BC3D64
    BUTTONS:
    OK
    The Link doesn't work. Can you help me?
    Kind regards
    Annegret

    Hi ,
    I suppose u were trying to add Full text feature to already installed instance of SQL server 2012 SP1.
    Ok so what procedure u followed did you try to run installation again and add this feature ..if u were using this method u will face error..
    You hav to go to application wizard  (Run..type Appwiz.cpl in run)and from there you have to add feature  see below link
    http://www.techrepublic.com/blog/networking/adding-sql-full-text-search-to-an-existing-sql-server/5546
    Also can u post complete error u got during failed installation...C\program files\....
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Raw Text for IFrame in Configurator

    Hi,
    I have a requirement of displaying a external HTML content as Iframe in the Oracle configurator.
    For this, I have created a Raw Text (as suggested in developer guide), but when I give text expression containing world IFrame, it gives below error:
    The following input contained illegal input value, please re-enter your input or contact the system administrator:
    Please let me know how to overcome this problem.
    Thanks

    No need to split the Raw Text into two Raw Texts.
    When the profile option Restrict text input (FND_RESTRICT_INPUT) is set to
    Yes at the Site level, OA Framework scans for and throws an exception page in
    case user enters one of the following tags:
    script, form, applet, object, embed, img, iframe, meta.
    To allow the above html/script tags in text field, Please set the "Restrict
    text input" value to "No" at site level. OA Framework does not scan for any
    script/html tags for CSS injections in the text field, if "No" is set for
    above profile.
    Once you set the profile to "No" at site level, bounce the server and test
    it.
    The above mentioned solution (setting to No) is only a workaround and should
    be used for temporary purpose. Once the raw text is created with img tag, you
    need to set the profile value to 'Yes' and bounce the server because of the security reasons
    The Benefit of setting this profile is that it provides a filter against XSS (Cross site scripting)
    and Other HTML Injection attacks.

  • Adding hyperlinks to text via spreadsheet

    Hi
    I have built a 52 page product document, and now have been asked to produce a PDF version with Hyperlinks on all the 300+ product names.
    The client is able to supply a spreadsheet of all the product names and URL in columns (XLS). Is there a way to find the Product Name in the doc and add the URL in to the hyperlinks panel.
    thanks
    Shane

    Hi Mark
    I've tried swapping in your script but it breaks in cs5.
    From my knowledge of applescript, find and replace now has a findType, eg. --findType is "text", "grep", or "glyph" (this sets the type of find/change operation to use).
    I've attached the FindChangeByList script below as this must use this method…
    --FindChangeByList.applescript
    --An InDesign CS5 AppleScript
    --Loads a series of tab-delimited strings from a text file, then performs a series
    --of find/change operations based on the strings read from the file.
    --The data file is tab-delimited, with carriage returns separating records.
    --The format of each record in the file is:
    --findType<tab>findProperties<tab>changeProperties<tab>findChangeOptions<tab>description
    --Where:
    --<tab> is a tab character
    --findType is "text", "grep", or "glyph" (this sets the type of find/change operation to use).
    --findProperties is a properties record (as text) of the find preferences.
    --changeProperties is a properties record (as text) of the change preferences.
    --findChangeOptions is a properties record (as text) of the find/change options.
    --description is a description of the find/change operation
    --Very simple example:
    --text {find what:"--"} {change to:"^_"} {include footnotes:true, include master pages:true, include hidden layers:true, whole word:false} Find all double dashes and replace with an em dash.
    --More complex example:
    --text {find what:"^9^9.^9^9"} {applied character style:"price"} {include footnotes:true, include master pages:true, include hidden layers:true, whole word:false} Find $10.00 to $99.99 and apply the character style "price".
    --All InDesign search metacharacters are allowed in the "find what" and "change to" properties.
    --For more on InDesign scripting, go to http://www.adobe.com/products/indesign/scripting/index.html
    --or visit the InDesign Scripting User to User forum at http://www.adobeforums.com
    tell application "Adobe InDesign CS5"
    --Set the user interaction level to allow InDesign to display dialog boxes and alerts.
    set user interaction level of script preferences to interact with all
    set myTextObjects to {text, text frame, insertion point, character, word, text style range, line, paragraph, text column, cell, table, row, column}
    if (count documents) is not 0 then
    if (count stories of active document) is not 0 then
    set mySelection to selection
    if (count mySelection) is not 0 then
    if class of item 1 of mySelection is in myTextObjects then
    if class of item 1 of mySelection is text frame then
    set myObject to object reference of text 1 of item 1 of mySelection
    else if class of item 1 of mySelection is insertion point then
    set myObject to parent story of item 1 of mySelection
    else
    set myObject to item 1 of mySelection
    end if
    my myDisplayDialog(myObject, myTextObjects)
    else
    set myObject to active document
    end if
    else
    set myObject to active document
    my myFindChangeByList(myObject)
    end if
    else
    display dialog ("The current document contains no text. Please open a document containing text and try again.")
    end if
    else
    display dialog ("No documents are open. Please open a document and try again.")
    end if
    end tell
    on myDisplayDialog(myObject, myTextObjects)
    tell application "Adobe InDesign CS5"
    if class of myObject is insertion point then
    set myObject to parent story of myObject
    end if
    set myDialog to make dialog with properties {name:"FindChangeByList"}
    tell myDialog
    tell (make dialog column)
    set myRangeButtons to make radiobutton group
    tell myRangeButtons
    make radiobutton control with properties {static label:"Entire document", checked state:true}
    make radiobutton control with properties {static label:"Selected story"}
    if class of myObject is in myTextObjects and class of myObject is not insertion point then
    set myContents to contents of myObject
    if myContents is not equal to "" then
    make radiobutton control with properties {static label:"Selection", checked state:true}
    end if
    end if
    end tell
    end tell
    end tell
    set myResult to show myDialog
    if myResult is true then
    set myRange to selected button of myRangeButtons
    destroy myDialog
    if myRange is 0 then
    set myObject to document 1
    else if myRange is 1 then
    if class of myObject is not story then
    set myObject to parent story of myObject
    end if
    end if
    my myFindChangeByList(myObject)
    else
    destroy myDialog
    end if
    end tell
    end myDisplayDialog
    on myFindChangeByList(myObject)
    local myFile, myFileRef, myEOF, myFindType
    tell application "Adobe InDesign CS5"
    set myFile to my myFindFile("FindChangeSupport:FindChangeList.txt")
    set myFileRef to open for access (myFile as alias)
    set myEOF to get eof myFileRef
    set myOldDelimiters to AppleScript's text item delimiters
    --That's a tab character between the quotation marks in the next line.
    set AppleScript's text item delimiters to {" "}
    if myEOF > 0 then
    --Delimiter is return--if you have trouble reading your find/change file, it's
    --probably because your line end characters are not Mac OS line end characters.
    set myText to read myFileRef using delimiter {return}
    close access myFileRef
    repeat with myCounter from 1 to (count myText)
    set myLine to item myCounter of myText
    if myLine starts with "text" or myLine starts with "grep" or myLine starts with "glyph" then
    if word 1 of myLine is "text" or word 1 of myLine is "grep" or word 1 of myLine is "glyph" then
    set {myFindType, myFindPreferences, myChangePreferences, myFindChangeOptions, myDescription} to text items of myLine
    if myFindType is "text" then
    my myFindText(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions)
    else if myFindType is "grep" then
    my myFindGrep(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions)
    else if myFindType is "glyph" then
    my myFindGlyph(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions)
    end if
    end if
    end if
    end repeat
    end if
    set AppleScript's text item delimiters to myOldDelimiters
    end tell
    end myFindChangeByList
    on myFindText(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions)
    tell application "Adobe InDesign CS5"
    --Clear the find text/change text preferences before each find/change operation.
    set find text preferences to nothing
    set change text preferences to nothing
    set myScript to "tell application \"Adobe InDesign CS5\"" & return & "set properties of find text preferences to " & myFindPreferences & return
    set myScript to myScript & "set properties of change text preferences to " & myChangePreferences & return
    set myScript to myScript & "set properties of find change text options to " & myFindChangeOptions & return
    set myScript to myScript & "end tell" & return
    do script myScript language applescript language
    tell myObject
    set myFoundItems to change text
    end tell
    --Clear the find text/change text preferences after each find/change operation.
    set find text preferences to nothing
    set change text preferences to nothing
    end tell
    end myFindText
    on myFindGrep(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions)
    tell application "Adobe InDesign CS5"
    --Clear the find grep/change grep preferences before each find/change operation.
    set find grep preferences to nothing
    set change grep preferences to nothing
    set myScript to "tell application \"Adobe InDesign CS5\"" & return & "set properties of find grep preferences to " & myFindPreferences & return
    set myScript to myScript & "set properties of change grep preferences to " & myChangePreferences & return
    set myScript to myScript & "set properties of find change grep options to " & myFindChangeOptions & return
    set myScript to myScript & "end tell" & return
    do script myScript language applescript language
    tell myObject
    set myFoundItems to change grep
    end tell
    --Clear the find grep/change grep preferences after each find/change operation.
    set find text preferences to nothing
    set change text preferences to nothing
    end tell
    end myFindGrep
    on myFindGlyph(myObject, myFindPreferences, myChangePreferences, myFindChangeOptions)
    tell application "Adobe InDesign CS5"
    --Clear the find glyph/change glyph preferences before each find/change operation.
    set find glyph preferences to nothing
    set change glyph preferences to nothing
    set myScript to "tell application \"Adobe InDesign CS5\"" & return & "set properties of find glyph preferences to " & myFindPreferences & return
    set myScript to myScript & "set properties of change glyph preferences to " & myChangePreferences & return
    set myScript to myScript & "set properties of find change glyph options to " & myFindChangeOptions & return
    set myScript to myScript & "end tell" & return
    do script myScript language applescript language
    tell myObject to change glyph
    --Clear the find glyph/change glyph preferences after each find/change operation.
    set find text preferences to nothing
    set change text preferences to nothing
    end tell
    end myFindGlyph
    on myFindFile(myFindFileName)
    tell application "Adobe InDesign CS5"
    try
    set myScript to active script
    on error
    set myScript to path to me
    end try
    end tell
    tell application "Finder"
    set myScript to file myScript
    set myParentFolder to (container of myScript) as string
    set myFileName to myParentFolder & myFindFileName
    set myResult to exists myFileName
    if myResult is true then
    else
    set myFileName to choose file with prompt "Locate your find/change file"
    end if
    end tell
    return myFileName
    end myFindFile
    thanks
    shane

  • SMTP - Output Formats for RAW Text

    Hi,
    I am trying to set the output format in transaction SCOT for RAW Text. I want to set the format to HTM. However, HTM does not exist in the dropdown menu. Does anyone know how I can get HTM as an option for RAW Text?
    Thanks
    /Elvez

    Hi Elvez,
    Check note 698124 SAPconnect: Customer-specific format conversion, let me know if it
    solved your request ?
    Ari

  • Added or ediited texts by Bluebeam Revu,and has been saved,when I open it by the Adobe reader version 8.1,why it does not show my texts added by Revu?8.1 is my favorite version,I also tried it in a later version fo Reader,it doesn't work too!

    Added or ediited texts by Bluebeam Revu,and has been saved,when I open it by the Adobe reader version 8.1,why it does not show my texts added by Revu?8.1 is my favorite version,I also tried it in a later version fo Reader,it doesn't work too!

    Bernd Alheit wrote:
    Looks like a problem of Bluebeam Revu, not Adobe Reader.
    The response above is only a speculative answer to the original question. DSI-Hal, did you try to flatten the text in Bluebeam Revu prior to opening it in Adobe. This has worked for me on several different documents but not sure if we are using the same version of Adobe Reader.
    Give it a shot. Good luck.

  • Safari shows page first in raw text

    I have generated my webpages using iWeb, and they look fine inthere, but the first time I visit them on the internet, I see raw text (not interpreted XML). After pressing enter in the address bar, the problem is resolved, I have to this for all pages on my site. I don't have this problem with windows PCs. Does anybody have any idea what I can do to resolve this?

    Guy...
    in safari, under the safari menu is a command called CLEAR CACHE. Do this and you should be fine. Safari is just not seeing the new site correctly.
    Hope this solves your problem.
    jim

  • Need a simple 3d text application. Any ideas?

    Need a simple 3d text application. Any ideas?
    I used to have a simple program called logomotion, but it has been discontinued. I just need something that I can just type "Welcome bla bla bla" and it will give me a few options like spin, scroll, random. Like that screen saver on PC where you just type in your companys name and it spins around 3D. (dont need anything crazy like maya,- any ideas!

    you could also check out Blender:
    http://www.blender.org
    free, open source, etc. i've never used it, but it looks fairly full-featured. actually, i think that might be something i'll download and check out this weekend, come to think of it.
    PowerMac G5 2.5GHz   Mac OS X (10.4.5)  

  • Simple vintage text effect

    Hi,
    I was trying to do a simple vintage text effect but I don't know how to name the effect so I can't find any tutorial online.
    Here's the effect, it's on the letterpress logo, behind the actual text there is a lined effect carved into the letters.
    http://www.castirondesign.com/archive/in-depth-jack-sinclair-letterpress-studio/
    Thanks!

    Hello there!
    In the following link:
    http://abduzeedo.com/vintage-typography-experiment-illustrator-and-photoshop
    Go to Step 22, as shown below:
    In addition with the helpful response by the contributor above, here are some more helpful links:
    http://www.computerarts.co.uk/tutorials/create-custom-type-illustration
    http://vectips.com/tutorials/quick-tutorial-create-a-reusable-retro-type-treatment/
    Please post back if you have any other questions
    Janelle

Maybe you are looking for