Text widget

I just got my droid x about a week ago. Before that I had the droid pro. When I had the pro I put a text widget to one of my contacts and when I went to that widget it took me to the entire conversation. Now on my droid x the widget just let's me text but won't let me see the conversation. Is there a way to let me see everything or is that just how the x works?

I don't know what text app you are using, but there may be a market text app that will offer a widget that will do what you need.
I understand what you are getting at. I've never had that need, so I've not delved into trying it.
Look at Handcent, Chomp, and Go messaging.
Also, there may be a way to get that Droid Pro widget on your X. Unfortunately, you won't find it here, LOL. Do a search for "Android Forums" or sites and you just might find that widget, as I did with the News & Weather widget from the original Droid, before that widget was put on the phone in the Froyo update.
Good luck,
Geri O

Similar Messages

  • Java Text Widget

    I'm looking for a java text widget toolkit that has features for graphically editing (resizing,moving, etc), for example, a JTextArea. Features that allow for colorizing characters will also be great. I have been unsuccessfully looking for such a tookit. If any one knows where I can find something along these lines, please let me know..

    Features that allow for colorizing characters will also be great.Check out this [url http://forum.java.sun.com/thread.jsp?forum=57&thread=34458]thread.

  • Resizable text widget increases leading

    Hi,
    I am finding that the resizable text widget does not resize text but increases leading instead.
    Has anyone found this to be the case?
    Thanks,
    Germán Herrera

    Zak. thank you very much!
    And sorry for coming back so late on this.
    You solution perfectly solved the problem.
    On the downside,) I did have to change the layout and reformat the site to submit it to the client because the deadline came before I got your reply.
    Perhaps the "Round Leading to a Whole Number" setting should be checked by default to avoid this kind of problems for other users in the future.
    Anyway, a million thanks!

  • CP8: Custom question using multiple TEBs / Scrollable Text Widgets

    Hi,
    I want to create a custom question with multiple Text Entry Boxes (TEBs) or Scrollable Text Widgets (STWs) that is compatible with HTML5.
    User has to enter just one word in each TEB / STW i.e. a one line STW.
    I want the user to be able to Retry the question i.e. click Retry button to automatically clear the TEBs / STWs that are incorrect.
    Question is not being scored or reported to an LMS.
    TEBs:
    I'm assuming you can't clear a TEB so I tried using a STW.
    STWs:
    FYI: I'm clearing the STW using Null.
    The issues I am trying to resolve are:
    1. Disabling the Enter key so that the 1 line STW will behave like a TEB i.e. doesn’t move to the 2nd line, and the Up Down scrollable indicators aren't displayed.
    There is a post that suggests executing JS on Slide Enter but I already have an Advanced Action associated with Slide Enter.
    https://forums.adobe.com/thread/1451011?q=disabling%20Enter%20key
    2. When retrying a question how do I disable STWs i.e. ones that contains a correct answer so user can't change it. (I know the Disable action won't work)
    I am using Captivate 8.0.1.242 on Windows 8.
    Thanks for your help.
    Regards
    Donal.

    Some answers, probably not all what you want. I blogged about using the Scrolling Text (formerly the TextArea widget) several times.
    In Captivate 8 you can indeed control what is shown in the Scrolling Text Interaction, by changing the associated variable. That was not possible before this version (have been begging for it, finally with success) and it is still not possible for a Text Entry Box. You can change the value of the variable, but it will not be visible in the TEB.
    An interaction is automatically reset when re-entering the slide, maybe that can help you as well? That is not the case for a TEB.
    Disabling  has no sense for an interaction that is static, only for interactive objects (and interactions). That means that you can disable a TEB, but not a Text Scrolling Interaction.
    Maybe this tip to prevent changing a correct answer for the interaction:  replace the interaction by a similar looking text container with the value of the variable if the answer is correct.

  • Apple support communities text widget causes unwanted variations in font size

    Typing a simple message into the Apple Support Communities using the built-in rich text widget often results in the published message containing unwanted variations in font size.
    At a random place in the published post, the font size gets slightly bigger, then at another point it gets slightly smaller, then slightly bigger and so on. I can't discern any pattern to when these variations occur - it's often in the middle of a sentence.
    It is not just me; I've seen the same effect in posts written by other people.
    I find these variations in font size are incredibly distracting to read; they really detract from whatever message that the poster is trying to convey.
    At first I thought it only happened when I pasted text in from elsewhere, but then I realized it happens even when I compose the message entirely in the web site's rich text widget.
    EDIT: You can see the variations happening in this post, even though it was composed entirely by typing and editing text within the site's built-in editor, without selecting any deliberate changes in font type or size. A quick look at the HTML from one of the paragraphs above shows some of the craziness going on:
    <p>At a random place in the published post, the font size gets slightly bigger, then at another point it gets slightly smaller, then slightly bigger and so on. <span style="font-size: 13.3333330154419px;">I can't discern any pattern to when these variations occur - it's often in the middle of a sentence.</span></p>

    [heh heh]
    Well... it looked consistent IN the advanced editor! I have been plagued with all kinds of editor failings when [Reply] twanger punched... I am resigned to take what it dishes out - soon to abandon any ' fancy' formatting attempts - the worst is pasting and using the QUOTE tool. Alas, poor Yurick...
    ÇÇÇ
    EDIT - see what happens this time for grins
    8 10 12 14 18 14 12 10 8 = Arial
    8 10 12 14 18 14 12 10 8 = Andale Mono
    8 10 12 14 18 14 12 10 8 = Arial Black
    8 10 12 14 18 14 12 10 8 = Book Anigua
    8 10 12 14 18 14 12 10 8 = Colibri
    8 10 12 14 18 14 12 10 8 = Helvetica [ Steve Jobs' favorite, it issaid ]

  • Counting words in a text widget

    Hi,
    Is there a way I can count the number of words in a text box widget?  I realise that means counting the number of words in the attached variable - but can I do this?
    I have tried playing with Javascript (about which I know nothing)
    I put the script below into the script window for a button, but nothing seems to happen!
    Test=Q5WidgetAnswer.split(" ").length-1;
    document.write(Test);
    I want to check for three words in an answer and if there are only two, or four, warn that there are Three answers.
    Would be grateful for any help!

    After much heartache I solved the issue. 
    The code needed to be as follows:
    var objCP = document.Captivate;
    var Answer = objCP.cpEIGetValue('WidgetAnswer');
    var Words;
    if(Answer ==  ''){   /* tests for empty answer */
      Words=0;
    alert("Fred")
    else {
    Words = Answer.replace(/[^ ]/g,'').length+1;    /* counts the number of spaces in answer */
    Where objCP can be any name you want, and cpEISetValue and cpEIGetValue are special Captivate functions
    /* and */ enclose a comment

  • Ticker Widget  (or other scrolling text widget) - including HTML??

    We are trying to enable a scrolling ticker type widget on a dashboard using Xcelsius 4.5.  We want this to dynamically pull the text from a file and have written a method to provide the XML link to the file data.  We are wondering how to enable HTML to be interpreted in the scrolling text so that it has color, bold, etc.  It would be great to also include links in the HTML scrolling so that the observer could click to follow the link.
    I greatly appreciate any help that you can provide,,,,
    Thanks!!
    Also, if there are ways enabled in 2008 to do this, pass along the info as well....even though we would really like to do it in 4.5.

    Hi,
    To clarify, when you say "ticket type widget" do you mean the ticker component?
    If so, in order to get the change in color you will have to utilize the alert settings, which can be found by double clicking on the component and adjusting these setting in the alert tab.
    Hope this helps! 
    Xcelsius Gurus
    http://www.everythingxcelsius.com
    "Xcelsius Gurus share tips, reviews, tricks and much more!"

  • How to position things based on the size of Text widget

    e.g. If I want to place the center of the baseline of a simple string over a certain point, what would I do?
    Text t = new Text("Hello");
    t.setTextOrigin(VPos.BASELINE);
    I was thinking of doing something like:
    t.setTranslateX(-width/2.0);
    But I can't get the width. Text does not have a "width" property!
    How do I know what X coordinate corresponds to the center of the Text node?
    Font doesn't have any methods for computing bounds of characters or strings
    EDIT....
    As usually I think I've found a way a couple seconds after posting...
    text.prefWidth(-1) appears to return a reasonable value.
    EDIT #2...
    Looked reasonable but isn't right. So far I've had to wrap the Text in a Pane just so I can bind to the width of the Pane. That seems like jumping through too many hoops.
    Edited by: swpalmer on Dec 19, 2011 11:41 AM

    Well, you can not create dependencies like this, but you could use nested master pages. You would still need 30 master pages for 30 chapters, in order to place the chapter number in different positions, but you
    would only need one or two main master pages for the rest of master page content. That would make it at least easier to change something on all master pages at once.

  • Can Apple widget builder output to ibooks author?

    I've searched around but haven't found any info about using the apple widget builder to create a html widget for ibooks author. I want the same result as cutting-pasting the iframe script (into a website) that automatically gets generated in the widget builder to be used in a book. I'm not familiar with how to use the auto-generated script and create a .wdgt file. I imagine this can be done in Dashcode. If anyone has experience with doing this, I'd appreciate some pointers.

    KT,
    The Apple Widget builder just provides a string of HTML-encoded output that you cut-paste into a website - maybe a text widget in Wordpress, for instance.
    For iBooks Author, you have to drag a .wdgt folder (with .PNG, info.plist, other files, etc.) into the HTML widget. If you cut-paste the HTML encoded output from the Apple Widget builder into the iBooks Author HTML widget, it doesn't work. You must use a .wdgt folder, and the Apple Widget builder does not appear to have an option to save as a .wdgt folder.
    Maybe my question should be "Is there a process to use the HTML-encoded output from Apple Widget Builder, and create the necessary .wdgt folder for iBooks Author"
    Bernie

  • Div ids are not persisting in rich text editor of CQ5.6

    Hi,
         I created a rich text widget and I added plugins. I activated "misctools" plugin also. I clicked on "sourceedit" and paste the code which contains ids for divs like -
    <div id="onboarding" class="row onboarding-content scroller">
    </div>
    After that I clicked ok and again I opened the dialog. But I'm unable to see id. It shows only -
    <div class="row onboarding-content scroller">
    </div>
    I also created "htmlRules/serializer/config" nodes of type nt:unstructured under the richtext editor widget. It worked in 5.5 but not in 5.6.
    Whats the problem behind this? Please suggest me the solution for this. Let me know if there is any other way to persist div ids in richtext editor of cq5.6
    Regards,
    Arya.

    Hi,
         Try this to persist div ids in rich text editor in cq5.6
         Create a folder structure similar to "/libs/cq/ui/rte/core/HtmlSerializer.js"  in apps as "/apps/cq/ui/rte/core/HtmlSerializer.js". Make sure that the folder structure and node types are as same as in libs. Then set "idAttribMode" to "keep" in "_init" function of HtmlSerializer.js. It will work
    Thanks,
    Arya.

  • Styling individual words in scrolling text interaction Captivate 7

    Does anybody know if it is possible to style only a portion of text that is being shown within the Captivate 7 scrolling text widget?
    For example, at the moment if I select a word that I'd like to make bold the entire content of the text pane is made bold, same with italic and underline.
    Any solution needs to be HTML5 compatible.
    Thanks in advance.

    Hi Sreekanth,
    It would definitely be useful if the styling worked properly, afterall, the options are shown in the editor so one can only think that it's a bug. I could even live with it if it accepted HTML markup.
    Re: your question, I put together a basic test using the Scrolling Text Interaction populated with lorem ipsum text and it seems to work as desired.
    I tested on Windows Vista Pro in Safari, IE9 and Chrome. I also tested on iPad running iOS7. I published in HTML5 only.
    The only thing (other than the styling issue mentioned above) was that the text pane seems to sit about 20px lower in the published file than it does on the Captivate stage. Not ideal when laying out individual content screens but not the end of the world to have to nudge the pane up in my working file.

  • Azure Wordpress Installation Not Updating Widget Changes

    I'm developing a WP site locally. When I use WebMatrix to "Publish" the local site to my url.azurewebsites.net, everything seems to be getting transferred except for widgets that have been placed into the Sidebar and Footer areas, including their
    content.
    How can I get those widget configurations to transfer from my local machine to my Azure account?

    Thanks for your reply. The link you shared does not address the hiccup that I am experiencing. Let me rephrase, to see if I can communicate the hiccup more clearly:
    Issue: Widgets from localhost to production (Azure) get deleted.
    Unable to correct this issue, after much effort, I uninstalled WP/DB both on localhost and the production site (Azure, not yet public), did a fresh install of WP/DB on localhost and uploaded that to production. With a fresh install, and no plugins installed,
    I can modify widgets on localhost (footer/sidebar text widgets, containing text, html, image, and nothing more complicated), and then push those to production. The widgets work in production exactly as they should, no problem. But then when I add even one
    plugin to localhost, push to production, and then refresh the production site, the widgets are deleted entirely from the production site.<sub></sub>
    Do you have any idea what causes this, and if so, how I can correct it?

  • Updating widgets on panel while looping

    Hi list,
    my plugin exists of a panel with different widgets.
    From there, when a users clicks a certain button, a lot of code gets executed. (Export xml, create package, upload to server, etc...)
    I would like to be able to change the icon of different IconSuiteWidgets when one of the processes is complete. For example: "XML Exported -> YES" - "Uploaded -> "YES" and so on...
    The problem is that myWidget->Invalidate() only gets updated after all the code is executed, so the user does not see any progression, except for the spinning beachbal (Mac)
    Wich steps should i take to solve this or is it not possible on a panel?
    Thanks in advance for your answers!
    Florian Soenens.

    Hi Florian,<br /><br />We had the same problem and we use the following code to update our static text widgets immediately, instead of waiting for the next update event to trigger the redraw.This can probably be applied to any type of widget, as long as you have the widget IControlView. The code was only necessary for MacOS - on Windows, the static text was updated immediately.<br /><br />     IControlView*     aWidgetView = [your control view];<br />     if(aWidgetView != NULL)<br />     {<br />          ViewPortAccess<IWindowPort> aWindowPort(lWidgetView, IID_IWINDOWPORT);<br />          if(aWindowPort)<br />          {<br />               InterfacePtr<IViewPort> aViewPort(lWindowPort, IID_IVIEWPORT);<br />               if(aViewPort)<br />               {<br />                    AGMGraphicsContext gc(aViewPort, aWidgetView);<br />                    aWidgetView->Draw(aViewPort);<br />#if MAC_OS<br />                    if (gc.GetSysPort() != nil )<br />                    {<br />                         if ( ::QDIsPortBuffered(gc.GetSysPort()) && ::QDIsPortBufferDirty(gc.GetSysPort()) )<br />                         {<br />                              ::QDFlushPortBuffer(gc.GetSysPort(), nil);<br />                         }<br />                    }<br />#endif<br />               }<br />          }<br />     }<br /><br />- Chris

  • How to create a drag outline while using custom drag source.

    Hi All,
    I am creating a plugin using sdk for cs2 in windows. I need to create a text frame on the document when I drag a text widget from a panel. I am using a custom drag source controller for the same and not dragsource as I am performing more requirements. This does not create a drag outline region. There is a method called 'DoMakeDragOutlineRegion' in the Basicdragdrop example provided in sdk. But it does not draw any outline. Is there something missed out in this example or do I need to add anything more to this existing code? Any help would be appreciated.
    Thanks in Advance,
    Pirathip.

    The BasicDragDrop example is misleading and as you found leaves out the interesting parts. E.g. that drop feedback drawing which is of course not factorised for reuse. Good news though, you should only need to go that far for own flavors (e.g. drop a color from color panel).
    Unless you give more details on those "requirements" you better make the best out of a target flavor helper.
    If you need custom drawing, search the SDK for keywords like ISprite, ITracker, HitTest ...
    Dirk

  • How to add data into a List box

    CS3 SDk:Windows<br /><br />Hi all,<br />I am trying to add  data into a basic List box in CS3??<br /><br />// .fr<br />GenericPanelWidget<br />     (<br />     // CControlView properties<br />     kInvalidWidgetID, // widget ID<br />     kPMRsrcID_None, // PMRsrc ID<br />     kBindNone, // frame binding<br />     Frame(0,0,250,90) // left, top, right, bottom<br />     kTrue, // visible<br />     kTrue, // enabled<br />     // GroupPanelAttributes properties<br />     "", // header widget ID<br />     { <br />     <br />     WidgetListBoxWidgetN<br />     (<br />     kWFPListBoxWidgetID, kSysListBoxPMRsrcId, // WidgetId,RsrcId<br />     kBindAll, // Frame binding<br />     Frame(0,0,250,90) // Frame<br />     kTrue, kTrue, // Visible, Enabled<br />     1,0, // List dimensions<br />     19, // Cell height<br />     1, // Border width<br />     kFalse,kTrue, // Has scroll bar (h,v)<br />     kTrue, // Multiselection<br />     kTrue, // List items can be reordered<br />     kTrue, // Draggable to new/delete buttons<br />     kFalse, // Drag/Dropable to other windows<br />     kTrue, // An item always has to be selected<br />     kFalse,// Don't notify on reselect<br />     kFalse, <br />     {               <br />     }     <br />                    <br />),<br />},<br />),<br /><br />//-------ID.h--------<br />DECLARE_PMID(kWidgetIDSpace, kWFPListBoxWidgetID, kWFPPrefix + 2)<br /><br />//observer.cpp-----------WFPDialogObserver::Update<br /><br />//get currently selected/active widget <br />WidgetID theSelectedWidget = controlView->GetWidgetID();<br /><br />// ist it the text edit field? <br />if (theSelectedWidget == kWFPInsertButtonWidgetID && theChange == kTrueStateMessage) <br />{ <br /><br />IControlView* listBox = panelControlData->FindWidget(kWFPListBoxWidgetID);<br /><br />InterfacePtr<IListControlData> listControlData(listBox, UseDefaultIID()); <br /><br />//Insert the string into listbox <br />PMString strText = dialogCtrl->GetTextControlData(kWFPTextEditBoxWidgetID); <br /><br />// obviously there can't be a translation for text entered by user <br />strText.SetTranslatable(kFalse);<br />listControlData->Add(strText,kWFPTextEditBoxWidgetID); <br />dialogCtrl->SetTextControlData(kWFPTextEditBoxWidgetID, ""); <br />break;      <br /><br />I am not able to Add items into list box.<br /><br />I tried based on Discussion <br />http://www.adobeforums.com/webx/.3bc43877<br /><br />but not able to locate  SDKListBoxHelper file .it is not available in SDK.<br /><br />Please ,<br />Tell me Where I am going wrong.<br /><br />Thanks,<br />Adil

    resource VSPDialogWidget (kSDKDefDialogResourceID + index_enUS)
         __FILE__,
         __LINE__,
         kVSPDialogWidgetID, // WidgetID
         kPMRsrcID_None, // RsrcID
         kBindNone, // Binding
         Frame(5,0,491,266) // Frame (l,t,r,b)
         kTrue,
         kTrue, // Visible, Enabled
         kVSPDialogTitleKey, // Dialog name
              DefaultButtonWidget
                   kOKButtonWidgetID, // WidgetID
                   kSysButtonPMRsrcId, // RsrcID
                   kBindNone, // Binding
                   Frame(9,234,89,254) // Frame (l,t,r,b)
                   kTrue,
                   kTrue, // Visible, Enabled
                   kSDKDefOKButtonApplicationKey,  // Button text
              CancelButtonWidget
                   kCancelButton_WidgetID, // WidgetID
                   kSysButtonPMRsrcId, // RsrcID
                   kBindNone, // Binding
                   Frame(394,234,474,254) // Frame (l,t,r,b)
                   kTrue,
                   kTrue, // Visible, Enabled
                   kSDKDefCancelButtonApplicationKey, // Button name
                   kTrue,  // Change to Reset on option-click.
              WLBCmpListBox   //Tree view
                   kWLBCmpListBoxWidgetID, kPMRsrcID_None,     // WidgetId, RsrcId
                   kBindAll,                                                       // Frame binding
                   Frame(299,49,475,170)           // Frame
                   kTrue, kTrue,                                             // Visible, Enabled
                   kTrue,                               // EraseBeforeDraw
                   kInterfacePaletteFill,           // InterfaceColor
                   kHideRootNode | kDrawEndLine,     // Options. Display root node
                   kFalse,          // Use H Scroll bar
                   kTrue,          // Use V scroll bar
                   20,               // fVScrollButtonIncrement
                   20,               // fVThumbScrollIncrement
                   0,               // fHScrollButtonIncrement
                   0,               // fHThumbScrollIncrement
                   2,               // Items selectable, 0 = No Selection, 1 = Single Selection, 2 = Multiple Selection
                   kFalse,          // Allow children from multiple parents to be selected
                   kTrue,          // Allow discontiguous selection
                        //The tree view is dynamically created.          
    // added to support the list elements in the list box
    resource LocaleIndex (kWLBCmpListElementRsrcID)
         kViewRsrcType,
              kWildFS, k_Wild, kWLBCmpListElementRsrcID + index_enUS
    resource WLBCmpNodeWidget (kWLBCmpListElementRsrcID + index_enUS)
         __FILE__, __LINE__,
         kWLBCmpListParentWidgetId, kPMRsrcID_None,     // WidgetId, RsrcId
         kBindLeft | kBindRight,               // Frame binding
         Frame(0, 0, 194, 20),               // Frame
         kTrue, kTrue,                         // Visible, Enabled
         "",                                        // Panel name
                   // Just a info-static text widget with about-box text view to get white bg.
              WLBCmpTextWidget
                   kWLBCmpTextWidgetID, kPMRsrcID_None,          // WidgetId, RsrcId
                   kBindLeft | kBindRight,                                        // Frame binding
                   Frame(45,1,194,18)                                             // Frame
                   kTrue, kTrue, kAlignLeft,kEllipsizeEnd                    // Visible, Enabled, Ellipsize style
                   "",                                                                 // Initial text
                   0,                                                                 // Associated widget for focus
                   kPaletteWindowSystemScriptFontId,                         // default font
                   kPaletteWindowSystemScriptHiliteFontId,                    // for highlight state.
    If you still got problems, post you email here - I'll send you the complete project/code then.
    -Marc

Maybe you are looking for