Text  not  shown in swf file in browser

hi,
m using flash8 and was created site. The problem is dat when
client c site on her pc and from cyber cafe. the font/text is not
visible to her. What behind that. pls solve it.
i think dat it's a problem of flash8 version.

Hi,
What version of photoshop and operating system are you using?
I'd try resetting the type tool by right clicking on the big T in the tool options bar and then clicking on Reset Tool.

Similar Messages

  • How to cache swf files via browser

    I notice that games on facebook ara caching lot's of swf files in browser temparary folder, I'm wondering how this is done, I'm new to web techs :> Somebody help? Thanks a lot.

    AndrewYuCWA1987 wrote:
    Thank U
    but what i attend to do is:
    - swf resource is need, and there're a lot
    - they're on the server first
    - when loading swf needed, access loacally file first, if there's none, get remote swf resource from server
    - after load from remote, cache swf files locally for the next application runs
    How can this be done?
    all the above happens by default unless a user clears their cache or has not browser cache- which you can't control.
    I met sand box issue when I apply URLRequest api, and I've looked into game's on facebook and other SNS platform, caching is the
    common way to build a game, there's a "loader.swf?v=XXXX" there, and if I copy it to file system and run it, surely it's doing URLLoading and trigger a sand box trouble like I do, but when it's applied in the browser, or say in the way it's originally used, it worked,
    So I doubt there's something I can do to implement the goal I've imagined, question is, how ) ;
    appending a changing query string (?v=XXX) to a url is a common way to prevent browser caching by making the browser think each of those swfs are different by virtue of the changing query string.

  • WebService is not shown in WSIL file

    Dear All,
    We are working on PI 7.1 EHP1, we have made a Scenario and published as a Web Service from Sender Agreement to the Service Registry of PI Server. The Web Service is visible in SR of PI Server, but when i am accessing the link of WSIL file http://xiserver:xiport/inspection.wsil then it not shown in this file.
    Please let us know how to make Web Service visible in WSIL file.
    regards,
    Ravi Siddam

    Seems like the default WSIL resource doesn´t include the PI SOAP Adapter WebServices. You can use the correction of SAP Note 1505853 in order to enable the PI specific WSIL resource http://DirectoryHost:Port/dir/inspection.wsil
    which should include all WebServices configured via the SOAP Adapter
    Regards,
    Matthias

  • ExternalInterface not working when swf file is embed inside a dynamically cloned DIV element.

    ExternalInterface not working when swf file is embed inside a dynamically cloned DIV element.
    It seems that flash movie is identifed as 'undefined' inside document.
    //a statically placed div
    var staticdiv=document.getElementById('PropDiv');
    //dynamically placed div with object tag
    var dynDiv =staticdiv.cloneNode( true );
    var xD=50;
    var yD=50;
    if(dynDiv)
    dynDiv.style.display  = "block";
    dynDiv.innerHTML="<object classid=" + "\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\"" + "codebase=" +
    "\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\"" + "width=" + xD + "height=" + yD +
    "id=" + "\"external\"" + "align=" + "\"middle\"" + ">" +
                    "<param name=" + "\"allowScriptAccess\"" + "value=" + "\"sameDomain\"" + "/>" +
                    "<param name=" + "\"movie\"" + "value=" + "\"external.swf\"" + "/>" +
                    "<param name=" + "\"quality\"" + "value=" + "\"high\"" + "/>" +
                    "<param name=" + "\"wmode\"" + "value=" + "\"transparent\"" + "/>" +
                    "<param name=" + "\"bgcolor\"" + "value=" + "\"#ffffff\"" + "/>" +
                    "<embed src=" + "\"external.swf\"" + "quality=" + "\"high\"" + "wmode=" + "\"transparent\"" +"bgcolor=" + "\"#ffffff\""
    + "width=" + xD + "height=" + yD + "name=" + "\"external\"" + "align=" + "\"middle\"" + "allowScriptAccess=" + "\"sameDomain\"" +
    "type=" + "\"application/x-shockwave-flash\"" + "pluginspage=" + "\"http://www.macromedia.com/go/getflashplayer\"" + "/>" +
                    "</object>";
       dynDiv.style.top=50;
       dynDiv.style.left=100;
    document.body.appendChild(dynDiv);
    In above situation communication is not establised when a  funtion which is retruning boolean is called from flash using
    ExternalInterfcae.call.The return value of this function is getting as false inside flash.But the value is true in javascript.
    if (navigator.appName.indexOf("Microsoft") != -1) {
       return window[movieName];
      } else {
       return document[movieName];
    window["external"] is returning as 'undefined'.
    Please give a  solution to solve this.

    Note that you have different file names for the object (images/banner.swf) and the embed (images/banner1.swf)
    You also placed the embed in the middle of a param tag and nested all param tags.
    Because you didn't include a MIME type and the object doesn't have a classid for an ActiveX control for IE, I'm not sure what Firefox will be using.<br />
    The object doesn't have a data attribute to specify the file.<br />
    A separate embed is only needed when you specify a classid in the object.
    <pre><nowiki><div class="bannercontainer">
    <object width="940" height="445" type="application/x-shockwave-flash" data="images/banner.swf" >
    <param name="wmode" value="transparent" />
    <param name="movie" value="images/banner.swf" />
    </object>
    </div></nowiki></pre>

  • Fonts Not appearing in swf file

    When I compile my swf file from flash, the dynamic text
    fields disappear completely.
    I know this sounds like a n00b problem, but I've done dynamic
    text a million times. I've never had this happen. I'm embedding the
    characters from the fonts in the preferences for the text field.
    I've manually written the characters I want to embed as well to try
    and override the character selector in flash. I've reinstalled
    flash. I've reduced the number of fonts loaded in my system. I've
    changed the font to other types to see if it's an issue with the
    font. I've tried to toggle display as html and selectability. None
    of this makes a difference. I've also ensured that my variables are
    loading properly (list variables in the debug pulldown on export)
    so there should actually be something to load.
    As a test, I tried to break apart my text. As with all text,
    you need to break it twice to render the text as a bitmap. On the
    second break, the text disappears. This should not happen either.
    This tells me that flash, though it's obviously getting the
    vector information for the fonts so it can display them properly,
    some level of the application isn't getting the information to
    render it when I either export the file or when I try to break
    apart my text.
    Sounds like a permissioning issue.... so I fixed permissions
    on my mac. Still have the problem.
    Here's a link to the file in the wild. If you want a link to
    the xml file, let me know. I'm getting the data from it, so it
    really shouldn't be the issue. There should be a large number in
    the price area of the first order option, and all options should
    have text in the burgundy rounded corner box at the bottom.
    http://www.omaxtra.com/Can_Help/rheumatoid_landing.html
    I'm developing on a PowerMac G5 2.0 completely patched to OS
    10.4.8.
    Perhaps I'm over-thinking this. Any thoughts?

    I never did figure out what the problem was. I sucked it up
    and exported it as a flash 7 swf. Thankfully I wasn't using
    anything from flash 8 in that particular instance.
    I have since embedded fonts in flash 8 files with much
    success. All of it for programatically set (AS) dynamic text.
    I'd be more than happy to try and help identify common
    variables (perhaps typefaces used, etc) with you to figure out what
    combination of things makes this bug appear. But other than that,
    unless you're using specific code from flash 8 or some of the new
    effects, I'd suggest rendering it in 7.
    Good luck, and PLEASE do let us know if you ever get a
    resolution.
    Happy new year!

  • Text droppping out of SWF file

    I am having a new problem with files I work with all the time
    in Flash MX version 6.0. When I upload my swf file, some of the
    text drops out. You can see an example of this by going to
    http://www.ballyhoostories.com/ballyhoo/main.html?1
    (click on the Table of Contents tab on the left and then go to
    Contact the Editors). The large text at the very bottom should read
    CONTACT, but instead reads NTAT, with spaces where the other
    letters should be. I notice when I publish the swf file, that the
    flash icon does not appear in the file list, but insead looks like
    a generic document icon, which leads me to belive it's not
    publishing properly.

    ballyhoostories wrote:
    > I am having a new problem with files I work with all the
    time in Flash MX
    > version 6.0. When I upload my swf file, some of the text
    drops out. You can see
    > an example of this by going to
    >
    http://www.ballyhoostories.com/ballyhoo/main.html?1
    (click on the Table of
    > Contents tab on the left and then go to Contact the
    Editors). The large text at
    > the very bottom should read CONTACT, but instead reads
    NTAT, with spaces where
    > the other letters should be. I notice when I publish the
    swf file, that the
    > flash icon does not appear in the file list, but insead
    looks like a generic
    > document icon, which leads me to belive it's not
    publishing properly.
    try to change the font used for that text. Make sure it's not
    dynamic but static.
    Best Regards
    Urami
    Beauty is in the eye of the beer holder...
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Why are the DNG Thumbnails of my Sony DRC RX100 not shown in the File Finder of my Mac?

    When I first import the original RAWs from my Sony DRC RX100, I can see the thumbnails in the File Finder (so my Mac with OSX 10.9.1. is perfectly fine), but after reworking them with Lightroom and exporting them as DNG files, the pictures are not shown any more as thumbnails in the file finder, but as empty white boxes. The curious thing is that the RAW pictures shooted with my Nikon D5200 do not have any visualization problem after exporting them from Lightroom.  The problem is very disgusting, as I can not search for pictures in the file finder. And Adobe did just close my open request on this issue (case #0180632682) without my consent and without any solution! Who else has got this problem and knows if there is any help to this stupid phenomenon? Does anyone at Adobe take care at all?
    Thanks!
    Tinero

    I think that this is a Lightroom problem because the original Raw files from the camera card are shown as thumbnails in the file finder, but after importing them into Lightroom as dng, retouching them and exporting them with Lightroom, the files are not shown any more. Obviously my sony RX100 camera is not the problem, at least not for my Mac. As Lightroom always needs to work together with a windows PC or a Mac, Adobe should ensure the compatibility of the functions with the host system. I think that is what all consumers logically expect from Lightroom. And a photography SW should be able to show fotos and export visible foto files...
    The very same Dng files from my other camera (a Nikon d5200) do not have this problem at all, although I export them in the very same format as the pics from my Sony, which is not at all an exotic camera. This is very confusing.
    I export dng files because this is the Lightroom own raw format that keeps the original quality of my raws. TIFF files are too large, and jpegs sensibly reduce the quality. So there is no option. I need to stay in Raw. Do I have any other quality options?

  • Can't view swf files in browser

    We recently reloaded our web server. Since the reload we can
    no longer view swf files on our homepage. I'm not sure if it's ain
    issue with IIS or with our files.
    I've searched the forums and have verified the Scripts folder
    is uploaded to our server. I've also tried removing the files and
    reinserting them, nothing seems to be working. Any ideas?
    url is
    http://www.bardhvac.com/
    I've also attached the code.

    Hmmm....
    I see what has happened. There are two different scripts
    folder. One in c:\inetpub\scripts and one at
    c:\inetpub\wwwroot\scripts. I was copying to the wwwroot one.
    It appears that c:\inetpub\scripts is defined as a virtual
    directory in IIS, therefore the code would have been targeting that
    location instead of the one in wwwroot folder. Not quite sure why
    it's a virutal directory, but looks like it has something to do
    with our new version of SLmail (webmail application).
    I copied the AC_RunActiveContent.js file to
    c:\inetpub\scripts and gave read authority, the swf files now show
    on our website.
    I'll need to look into this more. Thanks for your
    help!

  • Window.print() not working for swf file in webpage?

    I have used the javascript window.print() function to print a webpage. But when i click a button to invoke this function the swf file stops then the screenshot is taken and then it resumes playing,, thus resulting in a blank page to be printed... What to do??

    Since it is not clear what your intentions are for wanting to print the screen, you could try just using the Print Screen of your keyboard (pc) and then paste the resulting screen capture into an image using Photoshop or Fireworks.

  • Code changes are not reflected in .swf file

    Hi,
    I have made changes in the code and compiled it and executed
    the application.
    But, the changes whatever I made are not shown in GUI part. I
    am able to view the changes if I execute my application in debug
    mode but not in normal mode. Even I have reinstalled my Flex plugin
    in to Eclipse, that also not working.
    Expecting your valuable solution for my problem.
    -Sreedhar

    Oh, I'm facing that problem almost constantly. I'm even
    thinking to automate that process :)
    One solution that I use in HTML pages is that I specify some
    dummy random number. Say your SWF is called, my.swf. Then you could
    try to specify a name like my.swf?rnd=4857845 and so on.
    George

  • Spreadsheet component - bottom grid line not displaying in swf file

    Hi,
    I'm having an issue with the spreadsheet component. I'm using the "Ignore blank cells in Values" option on the behavior tab. This works fine. The problem I'm having is the bottom grid line in the spreadsheet table is not displaying in the swf file. The bottom grid line displays correctly in Preview mode....but is not displaying in the swf file. Anyone have any ideas on why?
    Thanks

    I'm not sure if I've interpreted your response correctly.  Our entire dashboard app is built on the swf files being called from the URL buttons.  We are not using HTML files.  Are you saying that if I do a file export to HTML that the swf file generated from this will display the bottom grid lines?
    I noticed that the spreadsheet component grid lines display correctly in the swf when not checking the ignore blank cells option in the behavior tab.
    So what would be our options here.....either uncheck the display grid lines for the spreadsheet component to not display the grid lines at all, or do not use the ignore blank cells option in the behavior tab to display a fixed number of rows each time?
    Thanks for the response, Matt.

  • Quiz results not displaying in swf file

    I am creating an interactive cd which basically runs a blank
    projector which then loads in various swf files from fscommand
    folder as and when required.
    Part of the CD is a quiz - created using one of the standard
    flash templates. When this is loaded into the main projector as a
    swf file it runs perfectly until it gets to the "results page" - at
    this point it returns the blank templates e.g Answered = 0.
    If you export the quiz as a projector file it runs fine and
    gives the results as expected too.
    Is there a way to make it run properly as a swf?

    Hey Arunbe,
    To be honest I'm pretty new to the Action Script side of
    things - I'm not actually very sure where and how I check that the
    variables are declared properly?!
    I would really appreciate any pointers you could give me in
    this area!!
    I have attached some code from the quiz - it might not be the
    right thing though!
    Thanks for any help you can offer!!!
    Stevie

  • Why is some text not shown after merging multiple documents

    One of my clients is using Adobe Acrobat XI and they are merging multiple PDF documents (up to 1000 single PDF's!) to create one big PDF document.
    But somehow just some parts of the text are not shown after the merging (it is actually still there because you can copy and paste it in to Word and you will see it again)?
    Any suggestions?

    Hi Wunold van Drunen,
    Since you have identified the problematic pages, have you checked if the issue occurs with the same pdf when merged with a smaller number may be 10 pdfs.
    How are these pdfs created? It might be possible that the said document's pdf structure is incorrect.
    You may want to sanitize the said pdf's before combining and check.
    Regards,
    Rave

  • Firefox will not load my swf file. Runs perfectly in all other browsers. Help!

    I've developed a website (www.fit-mamas.com.au) whereby you click on the black & white image and get a pop-up window running a video. The video is an .flv file running via a .swf file loaded from an html file. The .swf file was produced using Flash CS3. The video loads perfectly in all browsers except for Firefox which just displays a blank screen with video controls. I've been researching online for hours, as this problem is a common one, but nobody else's solutions are working for me. Any help would be appreciated. My code is as follows:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
    id="fit-mamas" width="640" height="400">
    <param name="movie" value="fit-mamas.swf">
    <param name="bgcolor" value="#FFFFFF">
    <param name="quality" value="high">
    <param name="allowscriptaccess" value="samedomain">
    <embed type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/go/getflashplayer"
    width="640" height="400"
    src="fit-mamas.swf" name="fit-mamas"
    bgcolor="#FFFFFF" quality="high"
    swLiveConnect="true" allowScriptAccess="samedomain"
    ></embed>
    </object>

    The video works for me on Linux. The server seems to be slow and playing stops all the time.
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • Code changes are not effected in .swf file

    Hi,
    I have made changes in the code and compiled it and executed
    the application.
    But, the changes whatever I made are not shown in GUI part. I
    am able to view the changes if I execute my application in debug
    mode but not in normal mode. Even I have reinstalled my Flex plugin
    in to Eclipse, that also not working.
    Expecting your valuable solution for my problem.
    -Sreedhar

    Run "Clean" command at FB2 from "Project" menu

Maybe you are looking for

  • How do you get subscription to work reliably?

    I have been using iTunes since it first came out and it is still a confusing mess, growing worse with each issue. 1. The difficulty of searching and finding material in the nooks and crannies 2. Having found them to get the subscription to actually s

  • How to link CRM Campaign to ECC Sales Orders

    Dear all, How to see Sales (R/3) that happened as a result of Specific CRM Campaign execution. while creating R/3 Sales Order where do we refer relevant Campaign ID. In SAP how to analyse with respect to Budget, Cost and Actual Sales for a Campaign.

  • Extracting MIME attachment from email using OSB proxy service - email transport

    Hi, I'm reading email messages(multipart/mixed) with attachments(pdf, zip, xml and csv) from MS Exchange Server 2010 using OSB proxy service email transport.I need to save the attachments to a local folder and process one of the attachments, an XML f

  • Crystal Reports Charting Issue with SAP Function Module

    I created a custom SAP Function module that returns 2 tables. The first table (summary table) contains two columns, column "a"  contains a grouping and column "b" is a quantity.  The second table is the detail and is linked to the first table by the

  • Apex 3.0 PDF with Images

    Hi, i would like to integrate my company-logo inside the pdf report. is there a chance to do this ? Thanks in advance Marco