TextField Scrollbar with external data

If I load a textField with data using AS3, e.g. mytext.text =
"lots of text here....", and if the textField has a UIScrollBar
component attached, the scrollbar works fine in testmovie mode, and
in IE, but doesn't display in FF.
The scrollbar displays correctly if the text is included in
the textfield in the authoring environment, it only fails when the
text is added using AS, and only in FF!
Can anyone give me any insight into this problem? I don't see
any discussion of such a problem anywhere on the web so I imagine
I'm doing something wrong!

The scrollbar component needs to know how much text is loaded
into the textfield so that it can work correctly. For whatever
reason, the Flash activeX control can deal with this but the plugin
doesn't work as well.
If you apply the scrollbar using actionscript, and add it to
the textfield after the text is loaded, it will work
correctly.

Similar Messages

  • SPM : Integration with External Data Sources

    Dear Experts,
    Can you let me know with your comments or by sharing any link or documentation, as to how to Integrate SPM with External Data Sources.
    And how many or what all external Data Sources, can SPM Connect with ?
    Regards
    Pankaj

    Hi Pankaj,
    There are no limitations of external data you can bring into BW and visualise in the SPM UI - you can expose custom bex queries as "datasources" in the user interface, and these can show anything you like. Its just a question about what makes sense to show in SPM.
    Are you looking to bring in anything specific?
    Thanks
    Neil

  • Strategies for populating drop downs with external data

    Hi,
    I have a couple nice forms that call various array scripts that populate drop down boxes based on a selection.  Everytime I need to update pricing, models, etc... I have to go in and manually edit the array.  I am using just designer - we do not have the server version.
    Is there a better way to do this ranther than edit the array and keep saving version?  I have seen some expamples using anXML file to the form.  This looks like a solution but I am not sure how to do it if this.
    It would be nice to have seperate database that contained my widgets external, update it and then make the connection. 
    Any help would be apprecated!

    This is a similar thread....
    http://forums.adobe.com/message/5538822#5538822
    Maybe this is a taboo subject as it something adobe wants you to buy the server version for...  I see this get asked many times but there never seems to  be a direct answer.
    In an effort to make my question more clear - If i have users out there with a form, and I want to update the form with a nightly updated file, that may contain pricing for example, how can one do this?
    So the core form stays the same, but dropdowns can be populated with external data.
    Thanks in advnace for any all help.

  • Basic form with external data

    I am not sure if I am overcomplicating something I am trying to do with designer/Acrobat.
    I am trying to create an interactive work order.
    Much of the basic layout has been done, and most of the fields are doing what I want them to do, though I still have a little here and there that needs some tweaking.  But before I get to doing those, my primary focus is to have the form access external data.
    For example.  I have a table in the form that has the following fields.
    Quantity     Part Number     Description     Price     Amount
    Quantity, price and amount are all internal to the form itself, and are fillable by the user of the form, with the exception that the amount field is a calculated value based on the previous two.  My intention is that these fields are only filled by the user of the form when needed.
    My issue however is the Part Number and Description fields, which has me quite perplexed on what would be the best way to go.
    From some of what I have read here and there in this forum and elsewhere, it seems that I have to have some kind of complex setup regarding sql servers if I want to use a simple database file (access for example) where I can edit as needed on the fly to pull data into the form as needed, using for example, a pulldown, to populate the two fields.
    I can muddle through that for my personal needs, however, my intention is to provide the form to co-workers so they can use it without having to set up what I am seeing as extremely complex setup of installing and configuring sql servers and so forth.  The computers will not be connected to any networks, these are field laptops.
    What I was hoping was to provide the database with the pdf file and let the end user simply copy those to a folder and use them without much fuss, aside from them being able to edit the database file to add their own custom information.  I was also considering adding in the ability for them to save and recall customer contact information as well.
    I am not by any stretch of the imagination a programmer.  I am a technician.  I can figure out how to use access easily enough.  But beyond this...well...its all greek to me if you get my gist.
    Am I overcomplicating the matter.  Is there an easier approach to what I want to do?  Are there any complete samples  (includes all the files needed) available that I can use and study to accomplish what I am trying to do?
    Appreciate any input from you folks here.
    Thanks.

    Hi,
    There are (at least) two ways of approaching this.
    One is to have the Part No. and Description in an external source (eg database) and then set up a data connection in the form to access this information. One problem is that if the user are using Adobe Reader, then the data connections will not work. See summary of deployment options here: https://acrobat.com/#d=3lGJZAZuOmk8h86HCWyJKg
    Another option is to hard wire the Part No and Description into the form. There is an example here and links to a tutorial on Acrobat Users website. Linking Drop Down Fields / Combo Boxes
    Good luck,
    Niall

  • Populating InDesign document with external data?

    Hi All – I hope I’m asking this question in the correct forum. I’m assuming that this is a scripting issue, but if it’s not, I apologize. Anyway -  am wondering if this is possible, and if so, if someone could point me in the general direction of further information:
    My company occasionally asks us to produce employee directories that include information (photo, contact info, education info, etc.) about various segments of the Firm population – for example, one directory might include all women of color, one might include everyone in the Los Angeles office, etc. I would like to find a way to “template” this in InDesign so that the relevant info can flow into the document from an external data source – for example, HR’s SQL database or maybe a spreadsheet generated from that database. I know that we are currently able to do something similar using Word, but the end product looks like crap.
    I’m not sure what this would even be called in InDesign, so any info will be greatly appreciated. I'm using version CS5. Thanks!

    i'd do this using the Data Merge feature. It's similar to the mail merge feature of word. There's a great video of how it works here: http://www.theindesigner.com/blog/episode-43-data-merge-video
    there are more complicated ways using XML or third party plug-ins, but i'd try this method first.
    colly

  • Working with external data

    Hi,
    does anybody knows if there's a way to include external data within the extension without modifying the code?
    Basically I need to deploy my extension using different settings (depending on user credentails).
    It would be nice if were possible to inoculate an xml file or expand manifest.xml in order to add some external data without changing code every time.
    Is there a right way to do this?
    Thanks!

    package
    import flash.display.Sprite;
    import flash.events.*;
    import flash.net.URLLoader;
    import flash.net.URLLoaderDataFormat;
    import flash.net.URLRequest;
    import flash.net.URLVariables;
    public class urlloader extends Sprite
    public var dataArray:Array
    public function dataLoader()
    var request:URLRequest = new URLRequest("params.txt");
    var variables:URLLoader = new URLLoader();
    variables.dataFormat = URLLoaderDataFormat.VARIABLES;
    variables.addEventListener(Event.COMPLETE, completeHandler);
    try
    variables.load(request);
    catch (error:Error)
    trace("Unable to load URL: " + error);
    private function completeHandler(event:Event):void
    var loader:URLLoader = URLLoader(event.target);
    var variables:URLVariables = new URLVariables(loader.data);
    dataArray = variables.dayNames.split(",");
    dispatchEvent(new Event("loadComplete"));
    trace(dataArray[1]);
    // in your fla
    var loader:urlloader=new urlloader()
    loader.dataLoader()
    loader.addEventListener("loadComplete",f);
    function f(e:Event){
    mainText.text=loader.dataArray[1];
    }

  • Textfield validation with XML Data

    hello
    can i validation a textfield with data from a XML file?
    i will read eg usernames form an XML file and will check it
    with a username was typed in in a textfield,
    if the username exits the textfield is invalid, since the
    username was typed in, is not in the XML file.
    thanks
    jack

    Hello,
    I don't advise you to make such an scenario. The solution you
    propose involve some high security risks and privacy problems
    because you send to the browser a complete list of users of your
    website.
    The Spry Validation Textfield supports callback validation
    javascript function. This means you create your own function that
    include the necessary code to validate the user input and pass to
    the widget as parameter the name of your function. A good sample of
    this feature could be seen in the
    Password
    Validation section.
    Regards,
    Cristian

  • Loading a grid or matrix with external data

    Hi, we have two SAP companies defined, from one company I need to perform a search on the second company and provide a grid or a matrix with the results.
    We are using the 2007 SDK is it possible to do this?
    Many thanks.
    Mike.

    i think you can use the Recordset object like "oRs.DoQuery("select [company2].dbo.table.....

  • Prompt with external data

    Hi!
    I wolud like to create a variable based on an object from the database times a value the user can choose.
    For example:
    =<Sales>*( 0,2 or whatever the user choose to write).
    I do not want the user to edit in the variable, can I create a prompt where I can take the answer times sales?
    Thanks
    //Marianne

    Hi Marienne,
    I think this should go under the Desktop Intelligence, as that is the latest version of BO Full Client.
    With regard to your issue.
    Add a condition to your universe that always resolves to to true and prompts the user to enter the number.
    @select('My Class\My Object') = case when @prompt('Enter Factor', 'N',....) = 0
    then @select('My Class\My Object')
    else @select('My Class\My Object')
    end
    Add this to your query and then create a variable v_userEnteredFactory as
    =UserResponse("Enter Factory")
    Hope this helps
    Alan

  • Lookup field in external data-object????

    Hi All.
    Is it possible to create lookup field in data object with external data-source?

    Hi ,
    yes you can create.look ups for any Data Objects.
    Regards
    Siva Sankar

  • DATE fields and LOG files  in context with external tables

    I am facing two problems when dealing with the external tables feature in Oracle 9i.
    I created an External Table with some fileds with the DATE data type . There were no issues during the creation part. But when i query the table, the DATE fields are not properly selected though the data is there in the files. Is there any ideas to deal with this ?
    My next question is regarding the log files. The contents in the log file seems to be growing when querying the external tables. Is there a way to control this behaviour?
    Suggestions / Advices on the above two issues are welcome.
    Thanks
    Lakshminarayanan

    Hi
    If you have date datatypes than:
    select
    greatest(TABCASER1.CASERRECIEVEDDATE, EVCASERS.FINALEVDATES, EVCASERS.PUBLICATIONDATE, EVCASERS.PUBLICATIONDATE, TABCASER.COMPAREACCEPDATE)
    from TABCASER, TABCASER1, EVCASERS
    where ...-- join and other conditions
    1. greatest is good enough
    2. to_date creates date dataype from string with the format of format string ('mm/dd/yyyy')
    3. decode(a, b, c, d) is a function: if a = b than return c else d. NULL means that there is no data in the cell of the table.
    6. to format the date for display use to_char function with format modell as in the to_date function.
    Ott Karesz
    http://www.trendo-kft.hu

  • I have new hard drive in macbook pro(08) and have SATA cable with external power source to old hard drive (10.5.8)via. USB port and newer drive(10.6.8) will not recognize older drive..Do I need to partition newer drive with older disk to recover data?

    I have new HD 750GB Hybrid in 2008 Macbook Pro 17" w/ Snow Leopard 10.6.8  connected to old Hard drive(250GB that had 10.5.8 on it at time of failure) via SATA cable to USB port with external power source.. Computer not acknowledging old HD at all in Disk Utility or otherwise (that I'm aware of)..Do I need to partition New HD and load old(10.5.8) onto partition to recognize older drive for data recovery? Thanks Wayno08

    You do not need to load 10.5.8 onto your new drive in order for a 10.6.8 system to see the contents of a 10.5.8 system.
    You might want to check out the hard drive troubleshooting bootk in the downloads section of this web site:
    http://scsc-online.com
    They also sell a product named Phoenix that can do OS extraction  and volume copying/cloning, but to be honest I don't know if it's appropriate in this case.
    I would suggest the following:
    Open up Terminal.app (under utilities) and type "diskutil list" without the quotes. This is the command line version of Disk Utility. If the external drive doesn't show up at all, then it's likely not connected properly, not getting power, or just plain dead. If it shows up with only a devce name like disk0s16 but no volume it means the drive is seen, the OS just can't make sense of it.
    Assuming the drive shows up, I would try to boot off the original installl disks for the system and run Disk Utility from that. I'm assuming the drive will show up. You'll want to select the option to repair the drive and then perform the option to repair the permissions.
    If the unit isn't showing up, as per step 1, try a different USB port. More importantly with your unit, try it on another side of the unit if possible. If you read the book I referenced above, some of those units have I/O boards that are separated from the logic board. If the cable from the logic board to the I/O card goes bad or has problems, which isn't all that uncommon, some or all of the ports on the I/O card may appear to be bad as well. If you use a USB port on another side, it would be routing out of a completely different I/O path, so that's a potential problem.
    If the drive is only seen with a device name such as disk0s16, it's likely either the index files are corrupt beyond Disk Utility's ability to see them. The  only thing that I think would help would be a product named DIsk Warrior, but I can't guarantee that.
    Disk Warrior can be found at:
    http://www.alsoft.com/diskwarrior/
    The company that I linked in the first link above also makes a product named Scannerz that does HD and system testing. The Scannerz/Disk Warrior combination make a good pair because the complement each other....Scannerz does what Disk Warriror can't and Disk Warrior does what Scannerz can't. However, at this point I'm not too sure getting a tool like Scannerz would be of much use because it sounds like the  damage has already been done.
    Let us know what happens.

  • Dashboard with QaaWS - cannot access external data

    Hi all,
    I built a dashboard with 3 qaaws, all based on one universe which is base on one bw-query.
    All works fine for the group: Administrators.
    If I take the Users out of the Adminstrators group, i get the message that the external data cannot be accessed. No Error # or so is displayed.
    Even if I grant the usergroup Full Control on the QaaWS, the Universe, the Connection and the Dashboard itself, it does not work.
    We use BO 4.0 SP01 FP11.
    As far as I can see is, that it can't be a Network (Firewall)-Problem, because it works for the memebers of the Adminstration groups - What else can it be?
    Thanks a lot in advance!
    Regards Karin

    Sergey,
    Considering you have sufficient rights, use fiddler tool to ensure as to why you are getting the error.
    If it is not a rights issue then you need to check if you have crossdomain file deployed.
    For using fiddler:
    Go to fiddler2.com
    Get Fiddler downloaded and installed
    Run Fiddler
    Launch your dashboard
    In Fiddler, on left hand side panel you should see HTTP traffic happened between you server and the dashboard.
    Go through captured HTTP traffic to find where exactly we are facing the issue.
    Let me know if this helps.
    Thanks,
    Tejas

  • External data column as shared column in document library with document sets

    Hello,
    I'm using a document library with document sets. Within this document library i have a External data column called "Project"
    This column has it's columns:
    Project: Installatietype
    Project: Relatie
    Project: Object
    Project: Projectleider
    Project: Status_project
    I wan't to use the external data column as an shared column for my document set(s). But i can't figure out or this is possible.

    Hi,
    According to your description, my understanding is that you want to set the external data column as a shared column in document set content type.
    I tested the same scenario in my environment, and the external data column was not supported to be set as a shared column in document set.
    Here is a similar thread for you to take a look:
    http://social.technet.microsoft.com/Forums/en-US/5488b777-1c18-4895-a264-27802b2cde27/document-set-shared-columns-and-bcs-data?forum=sharepointgeneralprevious
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Dashboard with Webi Report link  - Cannot access external data

    Dear Gurus,
    I've a  dashboard with access to WEBI report for Language setting.
    All works fine for the group: Administrators.
    If I take the Users out of the Adminstrators group and assign them normal power user group, I get the message that the external data cannot be accessed. No Error # or so is displayed.
    Even if I grant the usergroup Full Control / Power User on the
    Universe,
    the Connection
    Dashboard itself,
    WEBI Application
    Webservices
    Still it does not work.
    As far as I can see is, that it can't be a Network (Firewall)-Problem, because it works for the memebers of the Adminstration groups - What else can it be?
    I've attached the screen shot for your reference
    Cannot find service name=WS_Lang_Pref or you do not have the rights to view this service.

    Hi Guys,
    This error is fixed by maintaining the security profile for
    "Web Service Query"
    Regards,
    -Ahmed Baseer

Maybe you are looking for