Flash Data Text - Format Loss With IE

I have a website that is all flash. I have a main file that
loads in the nav and then the nav loads in the designated .swf file
for each section. So there are several sections(.swf's) with lots
of text taken from a database and inserted into the swf file from
an XML file. If I click in between sections, and go back to the
original section of text the formatting is lost. This is only in
Internet Explorer 7- this does not happen in Firefox or on the Mac.
Any help would be greatly appreciated.. This seems like a major
bug.

If by loss of formatting you mean fonts then if you are not
using embedded fonts, you are depending on the OS to provide the
font and thus font rendering should be considered unpredictable -
but still I would think it would do it the same way each time.
You may need to isolate the swf and the XML loading together
in a separate HTML doc and load on the XML with a button so you can
reload to debug outside the larger app.

Similar Messages

  • BPC 7.5 NW Master Data Text Node Load with Hierarchy Intervals - Duplicate

    Hi,
    Does anyone have ideas on how to get past this error (besides a BADI)?
    I am loading master data text nodes from a BW hierarchy (say 0COSTCENTER) that has intervals defined for cost center nodes.  The problem is that the text nodes fail since there are duplicate values in the hierarchy table.
    Master data (dealt by table level) has errors
    Detected duplicate member ID 'F100'
    Detected duplicate member ID 'F100'
    Detected duplicate member ID '1000'
    Detected duplicate member ID '1000'
    etc...
    Thanks!

    Hi Virginie,
    You should be able to see an example in many threads; look for an example to Restriction of bw infoobect(not mapped to dim)
    You can also make a restriction under the InfoObject name when you run the DM package.
    Hope this helps,
    Gersh

  • Flash and Text formatting

    Hi,
    I have a dynamic TextField with very wide letter spacing in my .fla. However, whenever I change the text in the TextField using actionscript, the letter spacing resets. Is there a way to keep that from happening? And why does it happen in the first place? Thank you so much for all your help,
    --Saib
    P.S. If it's any help, I'm using Flash CS4.

    If you are setting this up in the Properties panel, It is not assigning the property to the textfield however (unfortunately), just the text that happens to be in the textfield when you create the instance on stage, if any.  What you should be able to do is assign a TextFormat to the textfield so that it retains what you define for it.
    var tFormat:TextFormat = new TextFormat();
    tFormat.letterSpacing = 60;
    tField.defaultTextFormat = tFormat;
    Having done that, any text you assign to the textfield (tField) afterwards should have the letterSpacing property you defined.

  • How do i deduct dates using formatted search with a query

    Hi Experts,
    I would like to know how to get the date difference using query and formatted search. Below are the details:
    1. I have created 3 Header UDF's composed of 2  Date type fields and 1 Quantity field.
    2. The first one is for the Original Date, the next one is for the Payment Date and the Last one is for the No. of Days Lapsed.
    What I would like to do is automatically compute for the number of days from the original date to the payment date. What query syntax should i use to achieve this?
    Thanks,
    Yvette

    Hi Yvette,
    It should be something like;
    DATEDIFF (day, T0.[createDate], T0.[closeDate] ) as 'Aging'  This is just an example. You may add your udf's instead of dates.
    Thanks,
    Joseph
    Edited by: Joseph Antony on Jul 2, 2010 1:53 PM

  • Planning Data from formatting issue with Smart view in 11.1.2

    Hi,
    We are facing one strange issue in Smart view.
    We have created a dataform in Planning as follows:
    Columns:
    FY10 FY10 FY10
    Budget Budget Budget
    Jan Feb Mar
    But when we open this in Smart view, we are getting the columns as follows:
    FY10
    Budget
    Jan Feb Mar
    i.e. year and scenario are spreading across months instead coming at each column level.
    We are using Hyperion Planning 11.1.2, Smart View 11.1.2 and Office 2003.
    Please help us.
    Thanks,
    Naveen Suram

    Are you saying you want the dimension members FY10 and Budget to be repeated in each column?
    I think that can be done for Ad-Hoc Analysis mode, but not where you have opened up a Planning form.
    Cheers

  • CS5 - Text format for classic text error

    will now have to re-edit every part.
    Clearly you can get around this by other formats but fact is if you have a document that has negative spacing dont open it in CS5 cause you
    This may have been in recent update.
    Flash now resets them when you open the file to 0, if you notice or not.
    when you have negative (-20) set in spacing, usually used when you have margins.
    Classic Text Error
    Flash CS5

    Here's a workaround.
    FixTextIndent is a class with static methods that
    provides a workaround for the Flash CS5 text formatting
    bug.  The Flash CS5 IDE will not remember the text
    indent setting for either static or dynamic text fields.
    We can set the indent in Actionscript for dynamic fields,
    so to use this class, convert your fields to dynamic,
    then set the left margin.
    When you call FixTextIndent methods, they will set
    the indent to the negative of the left margin.
    Gary Weinfurther, 12/17/2010
    package com.keysoft.util
        import flash.display.DisplayObject;
        import flash.display.DisplayObjectContainer;
        import flash.text.TextField;
        import flash.text.TextFormat;
        public class FixTextIndent
             Fixes the line indent of all dynamic text fields
             in a given display object container so that
             the indent is the negative of their left margin.
            public static function FixContainer(container:DisplayObjectContainer):void
                for(var i:int = container.numChildren - 1; i >= 0; --i)
                    var obj:DisplayObject = container.getChildAt(i);
                    if (obj is TextField)
                        FixTextField(obj as TextField);
             Fixes the line indent of a dynamic text field
             to the negative of its left margin
            public static function FixTextField(tf:TextField):void
                var format:TextFormat = tf.getTextFormat();
                if (format.leftMargin != null && format.leftMargin > 0)
                    format.indent = -(format.leftMargin as Number);
                    tf.setTextFormat(format);

  • Date Format Mask with text only...

    Hi!
    I have a problem with my date text item: the format mask is set to YYYY-MM-DD HH24:MI:SS and it work perfectly if the user enter only numeric character, it will validate the date correctly. But if the user enter a value only alpha (something like 'uuuuyyyy') instead of validate with the mask format it will fire an error trigger ORA-06502.
    I want to know if it's possible to check if the user has enter only alpha to bypass this problem.
    Also, how can a check that a date field is null. I Try with : IF :BLOCK_NAME.DATE_ITEM IS NULL THEN ...
    AND ALSO with IF TO_CHAR(:BLOCK_NAME.DATE_ITEM) IS NULL THEN... and nothings seems to work.
    Thanx in advance.

    AFAIK, the only way to do this is to have two items. One is a hidden database item, type DATETIME, to hold the date value.
    The other is a non-database character item, visible to the user. You populate it at POST-QUERY from the database field, and use an ON-VALIDATE-ITEM to copy any value entered/changed by the user over to the hidden field. If you're smart, you'll write a library procedure to do the on-validate stuff, passing it the names of the two items.
    In that procedure, you can attempt to convert the entered text into a valid date using whatever date format(s) you like, only raising an error if you can't do it at all.

  • What can I do simply  to keep all my previous contents, (own pics, videos, etc.) on my previously authorized iPad on PC, but get a new authorisation and a right syncronization, without data loss with a new  iTunes on my new Mac?

    Friends,
    I already had an iPad(1) and its full contents (not only the purchased items, applications from Apple, but my all own pics, videos, songs etc.) is normally syncronized with an authorized PC (Windows) computer.
    Now,  I've bought a new MacBook Air computer, and want to sell my PC. But I don't know how to transfer (or syncronize) all of the contents from my previous iTunes on PC to the new one on the Mac.
    When I connected my iPad to my new MacBook Air, I promted, if I want to change authorization of my iPad to the MacBook.
    But also got a warning, that the new iTunes will delete from my iPad all my previously syncronized items, pics, videos and music, with the previously authorized  iTunes on the previous computer, expect the saved pics from the net.
    What can I do just like that, simply  to keep all my previous contents on my iPad, but have a new authorisation and a right syncronization, without data loss with the new  iTunes on my new Mac?
    Thanks a lot for your answer.
    ([email protected])

    Here are some instructions that I have posted several times that may be helpful to you as they have been to others. You can simply ignore anything that does not apply or that you have already done.
    As Alan stated above - transferring the iTunes library is the best first step. If you can transfer the iTunes library to the Mac, most of this will be unecessary for you to do.
    Very Important ....
    1. Authorize the computer.
    2. Turn off auto sync in iTunes
    3. Transfer purchases
    The text in italics is from the other thread - non italics are my words.
    The following was copied from this thread. This is essentially what you want to accomplish.
    https://discussions.apple.com/message/11527071#11527071
    1) Without connecting your iPad to your new computer, start iTunes. Click on iTunes. Click on Preferences. Click on Devices. Check the box next to "Prevent your iPod etc. from automatically syncing." Click OK.
    2) Now connect your iPad to your computer and start iTunes.
    3) When iTunes starts, right click on your iPad under Devices in the left column. Select Transfer purchases etc.
    4) After it finishes transferring all your apps to your computer, right click on your iPad and select Backup your iPad.
    5) After it finishes backing up your iPad, right click on your iPad and select Restore etc.
    6) After it finishes restoring, left click on your iPad , then click on the Apps tab on top, and check the box next to Sync Apps, then click on Apply below.
    If everything on your iPad looks good after the sync, go back and click on iTunes / Preferences / Devices and UN-check the box next to Prevent your iPod etc. The only other thing you may want to check is if your contacts, bookmarks, etc. are syncing correctly now. If not, go to the Info tab after connecting and make sure you indicate which features you want to sync with what sources.
    Read this thread and the support links as well. There are apps that you can purchase that will allow you to transfer photos from the iPad to your computer. Look at Photo Transfer App in the App store and you can search for others as well.
    https://discussions.apple.com/message/13016026#13016026
    This support site will help you with transferring iTunes music to your new computer.
    http://support.apple.com/kb/HT4527
    One final note - you may want to leave auto sync turned off - but that is totally up to you. I never did use auto sync.

  • Problem with Date - Text File Source and Oracle Target

    Hi All,
    I have a source data (text file) with date column in the format of 'MM/DD/YYYY'. My target is oracle. I am using the LKM FILE TO SQL and IKM SQL Control Append. When i execute this interface, i am getting an error as
    7000 : null : com.sunopsis.jdbc.driver.file.b.i
    com.sunopsis.jdbc.driver.file.b.i
    at com.sunopsis.jdbc.driver.file.b.f.getColumnClassName(f.java)
    at the Load Data step.
    How to load date columns from text file to oracle tables? Please help me in resolving this...
    Thanks in Advance,
    Ram Mohan T

    The worst solution is to define for your text file the date as a string and then to rebuild your date type in Oracle.
    something like
    convert(Substr(myfield,4,2)||Substr(myfield,1,2)||Substr(myfield,7,4) ,'MMDDYYYY')
    this is maybe the worst solution but it should work.
    Regards
    Brice

  • Date and Time text format

    Hello, I am working with a .csv file that i extracted from a SCADA. When I convert that file into excel 2013, all of the dates become unusable. It appears like the dates have become text. I have tried to convert the date columns into the date format from
    the conversion wizard, leave them in the general format, but it stays the same.
    The problem with the solutions I have found so far browsing the internet is that my date format appears like this: 06/06/2014 12:58:37 p.m., and no one has given any solution for this kind of format.
    Another issue I am facing is that since it is a file extracted from a SCADA I have at least 5000 registers and the width of the file can go from A to AZ, where half of the columns are dates.
    If anyone can help me with this, I would be very grateful

    Re:  a date or something
    A number/date will align right in a cell.  If your "Date" aligns right then just change the cell number format to meet your needs.
    If Excel is treating the cell contents as text (aligned left in cell) then...
    It appears as if the punctuation (dots) in the "p.m." suffix makes Excel read the entry as text.
    Removing all dots can be done using Edit/Replace or whatever it is called in xl2013.
    That may be enought to change the entries to dates.  If not you then have to...
    1.   Change the number format of the cells to the appropriate date format.
    2.   Force the conversion of the cells to a number/date.
         (enter 1 in an empty cell, copy the cell, select the data, use Paste Special (with the 'Multiply' option check marked)
    Jim Cone
    excel Date Picker add-in (free - no ads, no trackers, no cookies, no registration)
    After Installing, Right-click Any Cell
    https://jumpshare.com/b/O5FC6LaBQ6U3UPXjOmX2

  • Excel date to Numbers text format troubles

    I've been sent an Excel .xls document which I'm opening in Numbers '09 (2.1).
    The spreadsheet has a date column which I need to be in text format as dd/mm/yyyy. I expected the original Excel document to have the dates already in text format but Numbers says the fields are 'Custom' and shows the dates in US format: 11/04/2011, even although my Mac is set to UK format. No matter, I can set the cells to text format, however that results in the date being shown as 04/11/00002011.
    Where did those extra zeros in the year come from!?
    How can I reformat the dates to the dd/mm/yyyy format as text?
    I've tried a couple of formula to create a new column
    =Year(A1)
    for example and I think I could recreate the date  like that, but the cell must be text format.
    DG

    Here is the script required to peek dates from Numbers then poke them in Numbers.
    --{code}
    Apply this script to a Numbers table containing :
    B2 : 1943/12/31 23:59
    B3 : 1789/07/14
    B4 : 2010/01/01 00:12
    B5 : = NOW()
    set myTimeZone to (do shell script ("/usr/bin/perl -le 'print( readlink(\"/etc/localtime\") =~m{zoneinfo/(.*)} )' ")) -- Perl code by Mark J. Reed.
    tell application "Numbers" to tell document 1 to tell sheet 1 to tell table 1
              repeat with r from 2 to 5
                        set thenumbersdate to value of cell r of column 2
                        set value of cell r of column 3 to thenumbersdate as text
                        set thenumbersdate to my TZtoGMT(thenumbersdate, myTimeZone)
                        tell cell r of column 4
                                  set format to text
                                  set value to thenumbersdate as text
                        end tell
                        tell cell r of column 5
                                  set format to text
                                  set value to short date string of thenumbersdate
                        end tell
              end repeat
    end tell
    --=====
    set myTimeZone to (do shell script ("/usr/bin/perl -le 'print( readlink(\"/etc/localtime\") =~m{zoneinfo/(.*)} )' ")) -- Perl code by Mark J. Reed.
    set thenumbersdate to my TZtoGMT(thenumbersdate, myTimeZone)
    Handlers by Nigel GARVEY
    http://macscripter.net/viewtopic.php?id=36449
    (* Convert an ISO-format date string to an AppleScript date. *)
    on isotToDate(isot)
              set n to (text 1 thru 8 of isot) as integer
              set ASDate to (current date)
              tell ASDate to set {day, year, its month, day} to {1, n div 10000, n mod 10000 div 100, n mod 100}
              if ((count isot) > 8) then
                        set n to (text 10 thru 15 of isot) as integer
                        set ASDate's time to n div 10000 * hours + n mod 10000 div 100 * minutes + n mod 100
              end if
              return ASDate
    end isotToDate
    --=====
    (* Transpose an AppleScript date/time from the given time zone to GMT. *)
    on TZtoGMT(TZDate, TZ)
      -- The difference between TZDate when it's local and the GMT date we want is usually
      -- the same as the difference between the local date when TZDate is GMT and TZDate itself …
              set GMTDate to TZDate - (GMTtoTZ(TZDate, TZ) - TZDate)
      -- … but not around the time the clocks go forward. If the GMT obtained doesn't reciprocate to TZDate,
      -- shift to a nearby local date where the above DOES work, get a new GMT, unshift it by the same amount.
              set testDate to GMTtoTZ(GMTDate, TZ)
              if (testDate is not TZDate) then
                        if (GMTDate > testDate) then -- "Clocks forward" is towards GMT.
                                  set shift to GMTDate - testDate
                        else -- "Clocks forward" is away from GMT.
                                  set shift to -days
                        end if
                        set nearbyDate to TZDate + shift
                        set GMTDate to nearbyDate - (GMTtoTZ(nearbyDate, TZ) - nearbyDate) - shift
              end if
              return GMTDate
    end TZtoGMT
    --=====
    (* Transpose an AppleScript date/time from GMT to the given time zone. *)
    on GMTtoTZ(GMTDate, TZ)
      -- Subtract date "Thursday 1 January 1970 00:00:00" from the GMT date. Result in seconds, as text.
              copy GMTDate to date19700101
              tell date19700101 to set {year, its month, day, time} to {1970, 1, 1, 0}
              set eraTime to (GMTDate - date19700101)
              if (eraTime > 99999999) then
                        set eraTime to (eraTime div 100000000 as text) & text 2 thru 9 of (100000000 + eraTime mod 100000000 as integer as text)
              else if (eraTime < -99999999) then
                        set eraTime to (eraTime div 100000000 as text) & text 3 thru 10 of (-100000000 + eraTime mod 100000000 as integer as text)
              else
                        set eraTime to eraTime as text
              end if
              return isotToDate(do shell script ("TZ='" & TZ & "' /bin/date -r " & eraTime & " +%Y%m%dT%H%M%S"))
    end GMTtoTZ
    --=====
    --{code}
    Yvan KOENIG (VALLAURIS, France) samedi 5 novembre 2011 14:14:26
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How to save data acquired from NI-DAQ in text format instead of TDMS using the DAQ-mx ANSI C code?

    Hi,
    I wanted to save data acquired from NI-DAQ (for example, NI 9234) in a file using the DAQ-mx ANSI C Code. The response I got was as follows:-
    One way to do it is with TDMS logging. DAQmx comes with functions designed to log to a TDMS file. This is a special file type that is used for collecting data in a logical format. It can be displayed in a TDMS viewer where data is separated into groups and channels. NI-DAQmx provides examples for how to log to TDMS. Look at the TDMS examples in the C:\Users\Public\Documents\National Instruments\NI-DAQ\Examples\DAQmx ANSI C\Analog In\Measure Voltage directory.
    However, now I want to know is there a way that using that same C code, can we save the data in a .txt file format (Text File) instead of a TDMS file? We actually want to access that file through MATLAB (that's why we want to save it in text format).
    Also on an other note, is there a way we can access & open TDMS files by MATLAB?
    Thanks,
    Sauvik Das Gupta

    There's a way you can access TDMS files in MATLAB:
    http://zone.ni.com/devzone/cda/tut/p/id/7446

  • Run time data binding via FormCalc/JavaScript+wrong text formating

    Hello Everybody
    I need to print a text block with company details depending on company code (different details for different codes). I tried to use this code for event "calculate":
    if ($record.LS_HEADER.BUKRS == "1000") then
    $ = $record.COMP_DETAILS_1000
    elseif ($record.LS_HEADER.BUKRS == "1000") then
    $ = $record.COMP_DETAILS_2000
    endif
    $record.COMP_DETAILS_1000, $record.COMP_DETAILS_2000 are elements from the form context which are linked to textmodules.
    This code works and it prints correct textmodules for different company codes. But the printed text is not formated like text in the textmodules. The most important thing here is that these texts are always printed as a single long string and I need paragraphs like in the textmodules. It's a problem... If I use a statical binding (without FormCalc programming) the text modules will be printed with correct formating.
    Using of checkbox "Allow Multiline Lines" hasn't helped here...
    Have you any idea how should I do the run time data binding?
    Thank you very much in advance!

    Hello,
    the important part is "If I use a statical binding (without FormCalc programming) the text modules will be printed with correct formating." That means you can get the text in the shape you want. Just do that. Get all the texts. Next use the JS/FC scripting to hide all but one text. You get only one text to display and you use static binding to get the proper text format.
    Hope this helps, Otto

  • Migrating text formatting from InDesign CC to Flash CC

    Since TLF is no longer supported in Flash CC, does that mean that maintaining the integrity of the type from an InDesign layout to Flash is no longer possible? Is there a possible work around?
    I'm designing content for interactive labels for a museum exhibit in InDesign and having trouble migrating the text formatting to the interactive programmer who is using Flash. We tried all the options in the export to FLA dialoge and each time the text either turns out wonky or gets rasterized. The text needs to remain editable, so the rasterization will not do.
    I know a little bit about Flash, so I can possibily go into her file and make adjustments as needed without having to hang over her shoulder as she makes the edits. Is it possible to use the Creative Cloud Files section for collaboration like is possible in Google Docs, where the changes are live and there is no need for mutiple files.

    I've noticed that if you export as TLF and let FlashCC make the conversion back to classic the results are a bit better—at least multiline text doesn't get chopped up. I think you will have to make adjustments in Flash. You want to avoid justified text because there's no hyphenation. Flash doesn't have any justification preferences, so you have to avoid subtle typography.
    Is it possible to use the Creative Cloud Files section
    You should be able to if the programmer has a CC subscription, or you could do it with DropBox.

  • Download sales order data in Text format -User exit

    Hi Experts
    I am very new to user exits, my requirement is if i go to sales order change mode and then press save, some of the details about the sales order needs to be downloaded in text format. Please give me the steps and procedures.
    How to do this, please help me on this.
    Regards
    Rajaram

    Hi,
    Go to include MV45AFZZ,u will find USEREXIT_DOCUMENT_SAVE.In this exit
    u can get all the data from strcutures availabel thre..declare an internal table and fill the internal table with the data u want..andthen try for FM "GUI_DOWNLOAD" and pass the internal table data.I hope it might work..
    Regards,
    Nagaraj

Maybe you are looking for

  • How Can I Sync Multiple Changes at the same time?

    Is there a way to configure iTunes so that I can make changes in multiple sections, and only sync or apply them when I've made all of them? For example: I want to changes setting in Music, Apps, and Books. Today, it seems like I have to go to change

  • Computer is no longer authorized

    I keep getting this over and over "This computer is no longer authorized to play purchased items that are on iPod "Shawn B's IPod". Would you like to authorize this computer for items purchased from iTunes stores?" I authorize the computer and then i

  • FileNotFoundException in XMLProvider

    I modified the SampleXML provider's URL property to point to "http://www.w3schools.com/xml/simple.xml" and have a xsl file under the defaults. I get this exception when i run the portal. I can open this url in the browser and it brings up the xml pag

  • How do you easily move pictures around in a book design?

    When I place an image into a book, I cant move it arround. The image is placed in a centered position, but it crops it incorectly. I dont need to scale it or crop it, just to move it arroun with-in the bounding image box. Thanks much

  • Reading incoming data 32bits at a time

    I have raw binary data coming into a UDP port, from which I want to read 32 bits at a time from the actual production data. Each 32 bits will be of a different format ie 1st 32 bytes - float, 2nd 32 bytes - double precision integer etc... so I need t