HtmlText not working

I am using the following to load a file that I have put some
html code <b> that is not being rendered as html. This is the
script I am using. Am I missing something?
myData = new LoadVars();
myData.onLoad = function(){
content_pc.htmlText = this.var1;
myData.load("pp.txt");
stop();
Thanks

VernMan,
> I am using the following to load a file that I have put
some
> html code <b> that is not being rendered as html.
This is
> the script I am using. Am I missing something?
>
> myData = new LoadVars();
> myData.onLoad = function(){
> content_pc.htmlText = this.var1;
> };
> myData.load("pp.txt");
> stop();
Is your text field dynamic? Is it set to render text as
HTML?
myData.onLoad = function() {
content_pc.html = true;
content_pc.htmlText = this.var1;
David
stiller (at) quip (dot) net
Dev essays:
http://www.quip.net/blog/
"Luck is the residue of good design."

Similar Messages

  • StyleableTextField htmlText not working properly

    Hi,
    I am trying to customize the LabelItemRenderer so that I can use htmlText property. I used this CustomRenderer on my List component.
    When the List loads, I can't see the effect of the bold and font colors tag but when I tried to scroll it I was able to see the effect of bold and font color tag.
    How would I be able to see the effect of the bold and font colors without a need to scroll it before it take effect.
    Here is the codes of the customize LabelItemRenderer :
    package components
              import spark.components.HGroup;
              import spark.components.Label;
              import spark.components.LabelItemRenderer;
              import spark.components.supportClasses.StyleableTextField;
              public class CustomRenderer extends LabelItemRenderer
                        public var hGroup:HGroup;
                        public var textLabel:StyleableTextField;
                        public function CustomRenderer()
                                  super();
                        override public function set data(value:Object):void
                                  super.data = value;
                                  if (!value) return;
                                  invalidateProperties();
                        override protected function createChildren():void {
                                  if (!hGroup)
                                            hGroup = new HGroup();
                                            hGroup.paddingLeft = 5;
                                            hGroup.paddingRight = 5;
                                            hGroup.verticalAlign = "middle";
                                            hGroup.percentWidth = 100;
                                            addChild(hGroup);
                        override protected function commitProperties():void
                                  super.commitProperties();
                                  if (!textLabel) {
                                            textLabel = StyleableTextField(createInFontContext(StyleableTextField));
                                            textLabel.styleName = this;
                                            textLabel.selectable = false;
                                            textLabel.editable = false;
                                            textLabel.multiline = true
                                            textLabel.wordWrap = true;
                                            hGroup.addElement(textLabel);
                                  textLabel.htmlText = "<b><font color='#00ff00'>" + data.TextToDisplay + "</font></b>";
                                  invalidateDisplayList();
                                  invalidateSize();
                        // Override layoutContents() to lay out the HGroup container.
                        override protected function layoutContents(unscaledWidth:Number, unscaledHeight:Number):void
                                  // Make sure our width/height is in the min/max for the label
                                  var childWidth:Number = unscaledWidth - 6;
                                  childWidth = Math.max(hGroup.getMinBoundsWidth(), Math.min(hGroup.getMaxBoundsWidth(), childWidth));
                                  var childHeight:Number = unscaledHeight - 10;
                                  childHeight = Math.max(hGroup.getMinBoundsHeight(), Math.min(hGroup.getMaxBoundsHeight(), childHeight));
                                  // Set the label's position and size
                                  hGroup.setLayoutBoundsSize(childWidth, childHeight);
                                  hGroup.setLayoutBoundsPosition(3, 5);
                                  textLabel.commitStyles();
    Here is the code of  the View:
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark" title="Test"
                        viewActivate="viewAct()" initialize="view1_initializeHandler(event)">
              <fx:Script>
                        <![CDATA[
                                  import components.CustomRenderer;
                                  import mx.collections.ArrayList;
                                  import mx.events.FlexEvent;
                                  [Bindable] private var arrList:ArrayList = new ArrayList();
                                  private function viewAct():void
                                            var factory:ClassFactory = new ClassFactory(CustomRenderer);
                                            myList.itemRenderer = factory;
                                  protected function view1_initializeHandler(event:FlexEvent):void
                                            // TODO Auto-generated method stub
                                            var obj:Object;
                                            for(var i:Number = 0; i < 10; i++)
                                                      obj = new Object();
                                                      obj.TextToDisplay = "hello" + i.toString();
                                                      arrList.addItem(obj);
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:layout>
                        <s:VerticalLayout/>
              </s:layout>
              <s:List id="myList" width="100%" height="100%" dataProvider="{arrList}" contentBackgroundColor="white"/>
    </s:View>
    Can someone help me please?
    Thanks in advanced.

    Hi,
    For performance, don't use addItem : use a temporary array and an ArrayCollection.
    I don't know if your problem for html is complex but for this simple example (with bold and color), use a List like this :
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"
            xmlns:c="components.*"       
            title="List"   
            viewActivate="viewActivate()"
        >   
        <fx:Declarations>
            <s:ArrayCollection id="dataAC" />
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                public function viewActivate():void
                    var obj:Object;
                    var list:Array = [];
                    for(var i:int = 0; i < 40; i++)
                        obj = new Object();
                        obj.TextToDisplay = "hello " + i.toString();
                        list.push(obj);               
                    dataAC.source = list;
            ]]>
        </fx:Script>
        <s:List id="myList" width="100%" height="100%"
                dataProvider="{dataAC}"
                labelField="TextToDisplay"
                fontWeight="bold"
                color="0x00ff00"
                alternatingItemColors="[0xffffff, 0xeeeeee]"
                />
    </s:View>
    Philippe

  • Publishing a flash with AS3.0 on website does not work

    Okay, I'm finally at the end of my flash card. Here's the whole code.
    //import classes
    import com.greensock.TweenLite;
    import com.greensock.easing.*;
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    //end of importing
    //start of sound section is for sound
    var cssLoader:URLLoader;
    var css:StyleSheet;
    var soundReq:URLRequest=new URLRequest("audioFiles/PaukenBrumfiel_AngelsOnHigh.mp3");
    var sound:Sound = new Sound();
    sound.load(soundReq);
    sound.addEventListener(Event.COMPLETE, onComplete);
    //end of sound section
    //Loading external texts
    var weiss:Font = new Weiss();
    var weissBold:Font = new WeissBolder18();
    var weissBolder:Font = new WeissBolder();
    var slideXTween:Tween;
    var txtAlphaTween:Tween;
    var txtNextText:Tween;
    var txtContainer:Sprite;
    var txtField:TextField = new TextField();
    var myTxtField:TextField = new TextField();
    var txtFldwebImages:TextField = new TextField();
    var textRequest:URLRequest=new URLRequest("happyHoliday.txt");
    var textLoad:URLLoader = new URLLoader();
    var txtFormat:TextFormat = new TextFormat();
    var myLinkFormat:TextFormat = new TextFormat();
    var strLink:String;
    var numXPos:Number;
    var numYPos:Number;
    //end of loading external texts
    function onComplete(event:Event):void {
        sound.play();
    function textReady(event:Event):void {
        //txtFormat.font= weiss.fontName;
        txtFormat.color=0x000066;
        txtFormat.size=24;
        //txtField.x = stage.stageWidth;
        //txtField.width = 800;
        txtField.autoSize=TextFieldAutoSize.LEFT;
        //txtField.height = txtField.autoSize
        txtField.wordWrap=false;
        txtField.text=event.target.data;
        txtField.setTextFormat(txtFormat);
        //txtField.y = 350;
        txtField.embedFonts=true;
    textLoad.load(textRequest);
    txtFormat.font= weiss.fontName;
    textLoad.addEventListener(Event.COMPLETE, textReady);
    txtField.x=stage.stageWidth;
    addChild(txtField);
    txtField.y=350;
    TweenLite.to(txtField, 40, {x:-stage.stageWidth*2.25, ease:Linear.easeNone, delay:0.5, onComplete:Inspiration});
    function Inspiration():void {
        txtFormat.font= weissBolder.fontName;
        textLoad.load(new URLRequest("inspiration.txt"));
        txtField.x=130;
        txtField.y=330;
        txtField.alpha=0;
        TweenLite.to(txtField, 5, {alpha:1, onComplete:GoogleFunc});
    function GoogleFunc():void {
        //create and initialize css
        addChild(myTxtField);
        strLink = "<a href='http://www.google.com/' target='_blank'>Google</a>";
        numXPos = 180;
        numYPos = 370;
        var myCSS:StyleSheet = new StyleSheet();
        myCSS.setStyle("a:link", {color:'#000066',textDecoration:'none'});
        myCSS.setStyle("a:hover", {color:'#FF6600',textDecoration:'underline'});
        txtFormat.font = weissBold.fontName;
        //txtFormat.color=0x000066;
        txtFormat.size=20;
        //txtFormat.bold = true;
        myTxtField.setTextFormat(txtFormat);
        myTxtField.defaultTextFormat=txtFormat;
        myTxtField.styleSheet = myCSS; // Linking CSS to TextField
        myTxtField.htmlText="";
        myTxtField.htmlText=strLink;
        myTxtField.wordWrap=false;
        //myTxtField.embedFonts = true;
        myTxtField.width = strLink.length*2;
        myTxtField.x=numXPos;
        myTxtField.y=numYPos;
        //trace("Third txtField.y: " + txtField.y);
        myTxtField.alpha=0;
        TweenLite.to(myTxtField, 1, {alpha:1, onComplete:webImages});
        //trace("tween done");
    function webImages():void {
        addChild(txtFldwebImages);
        var myCSS:StyleSheet = new StyleSheet();
        myCSS.setStyle("a:link", {fontsize:'20',color:'#000066',textDecoration:'none'});
        myCSS.setStyle("a:hover", {fontsize:'20',color:'#FF6600',textDecoration:'underline'});
        txtFormat.font = weissBold.fontName;
        //txtFormat.color=0x000066;
        txtFormat.size=20;
        //txtFormat.bold = true;
        txtFldwebImages.setTextFormat(txtFormat);
        txtFldwebImages.defaultTextFormat=txtFormat;
        txtFldwebImages.styleSheet = myCSS; // Linking CSS to TextField
        txtFldwebImages.htmlText = "";
        txtFldwebImages.htmlText="<a href='http://www.google.com/webImages/' target='_blank'>Google Images</a>";
        txtFldwebImages.wordWrap=false;
        //myTxtField.embedFonts = true;
        txtFldwebImages.width = 300;
        txtFldwebImages.x=300;
        txtFldwebImages.y=370;
        txtFldwebImages.alpha=0;
        TweenLite.to(txtFldwebImages, 1, {alpha:1});
    //end of loading external texts
    Okay, the problem is when I publish the .swf files and put it in an html or .aspx page, it does not work. The audio is not there and a few others things ar enot working. However, it does work if I click on the.html file that Flash created during the publication.
    Here are the folder structions:
    www.mysite.com/myFlashPage.aspx
    www.mysite.com/flashFileFolder/
    www.mysite.com/flashFileFolder/audioFiles/
    So, the myFlashPage.aspx containsthe myFlash.swf file that is inside the flashFileFolder. For some reason, it does not work. Any suggestion is much appreciated.

    The .html file does work if I publish it into the same folder as I created the Flash project. However, when I publish the
    flash .swf to my web site folder (mapped), it's no longer working. The mapped web site drive structher are as follows:
    D:\Mysite\ contains the .html file
    D:\Mysite\flashFileFolder\ contains the .swf file
    D:\Mysite\flashFileFolder\audioFiles contains the PaukenBrumfiel_AngelsOnHigh.mp3 file
    D:\Mysite\flashFileFolder\greensock-tweening-platform-as3 contains all the tweenlite files
    The .html file does not work either. What else do I need to change?

  • Hyperlink text will not work with _self, only as self and then creates window

    I understand that the code below should work but it doesn't, I have to take the underline before self out, for the hyperlink to work at all, and then it creates another window for the file. There may some sort of glitch that I am not aware of. But the code below does not work as is in my app. Any further suggestions?
    var t:TextField = new TextField();
    t.htmlText = "hello world"+ "<a href='weeTestPage.html' target='_self'><u>click here</u></a>";
    t.autoSize=TextFieldAutoSize.LEFT;
    addChild(t);

    You are asking second time same question. (http://forums.adobe.com/message/3401366?tstart=0#3401366)
    I answered the first one.
    Haven't you read it?

  • Using AS Linkage name for embedded font not working in CS6

    "Myriad Pro" with bold and italic styles embedded with the linkage names "Body", "BodyBold" and "BodyItalic".
    Creating a TextField using Flash CS6's toolbar and setting its font to "Body*" works fine, but not when its htmlText value has <b> and <em>, etc, tags.
    This also does not work:
    style.setStyle(".something", {fontFamily:"BodyBold"});
    ... but this does:
    style.setStyle(".something", {fontFamily:"Myriad Pro Bold"});
    Using the AS Linkage name worked in prior versions. I like using them because I can change global fonts for "stage" elements.

    Justin_WX wrote:
    So on the list it says Arial http://support.apple.com/kb/ht5484 which is a font from Apple, which is different from Microsoft, but are named the same...
    Is there a list of Microsoft Fonts that will work with Pages?
    Are you actually seeing a noticeable difference in the fonts after conversion? While there are some difference between those fonts, they are very subtle differences and in all likelihood will not really change the look of the document.

  • Click to URL on RSS text not working on node variable.

    Hi.
    I have a RSS feed parsed into one text box and am using imported CSS to format the text in one Textfield that was created with as3.
    Problem is my roll over and click handler functions for making each text variable a link to the XML URL link will not work unless I point the function at the entire text field. I just want the individual text variables made from the RSS Title nodes, to be set to react to my handleFHTClicked, rollOutHandler and rollOverHandler functions. The movie runs Ok parsing the nodes and picking up the CSS, but I get this error in the output window when it reaches the aformentioned functions...
    TypeError: Error #1006: value is not a function.
         at AS3_CSS_external_file2_fla::MainTimeline/onLoaded()
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at flash.net::URLLoader/onComplete()
    Here is the code....
    var cssLoader:URLLoader;
    //load the fake preloader
    var preLoader = new loading_mc();
    preLoader.x = 170;
    preLoader.y = 50;
    preLoader.scaleX = .7;
    preLoader.scaleY = .7;
    addChild(preLoader);
    //This code loads and Parses the RSS feed
    var loader:URLLoader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, onLoaded);
    var dotExtension:String = "...";
    var maxLength:Number = 0;
    var xml:XML;
    function onLoaded(e:Event):void {
         removeChild(preLoader);
         xml = new XML(e.target.data);
         var firstheadtext = xml.channel.item[0].title;
         var firstbodytext = xml.channel.item[0].description;
         var secondheadtext = xml.channel.item[1].title;
         trace(firstheadtext);
         trace(firstbodytext);
         trace(secondheadtext);
         //dtfa.htmlText = "<p align='left'>"+firstheadtext+"</p>"+"</br>"+ "<p align='left'>"+firstbodytext+"</p>";
         var myText:String = "<p>"+firstheadtext+"</p>"
         +"<span class='myTextStyle1'>"+firstbodytext+"</span><br/>"
         +"<br/>"
         +"______________________________________________________________________________<br/>"
         +"<br/>"
         +"<span class='myTextStyle2'>"+secondheadtext+"</span><br/>";
         function cssLoadComplete(event:Event):void {
              var sheet:StyleSheet = new StyleSheet();
              sheet.parseCSS(cssLoader.data);
              myTextField.styleSheet=sheet;
              myTextField.htmlText=myText;
         var myTextField:TextField = new TextField();
         myTextField.width = 500;
         myTextField.height = 240;
         myTextField.multiline = true;
         myTextField.wordWrap = true;
         addChild(myTextField);
         var req:URLRequest = new URLRequest("myStyleSheet.css");
         cssLoader = new URLLoader();
         cssLoader.addEventListener(Event.COMPLETE, cssLoadComplete);
         cssLoader.load(req);
         //This code handels the click through
         firstheadtext.addEventListener(MouseEvent.CLICK, handleFHTClicked);
         function handleFHTClicked(e:MouseEvent):void {
              navigateToURL(new URLRequest(xml.channel.item[0].link));
           firstheadtext.addEventListener(MouseEvent.MOUSE_OVER , rollOverHandler);
           firstheadtext.addEventListener(MouseEvent.MOUSE_OUT, rollOutHandler);
           import flash.text.TextFormat;
              // create the text format objects
              var overTextFormat:TextFormat = new TextFormat();
              overTextFormat.underline = true;
              var defaultTextFormat:TextFormat = new TextFormat();
              defaultTextFormat.underline = false;
         // add the event handlers
              function rollOverHandler(e:MouseEvent):void
               TextField(e.target).setTextFormat(overTextFormat);
              function rollOutHandler(e:MouseEvent):void
              TextField(e.target).setTextFormat(defaultTextFormat);
    loader.load(new URLRequest("http://www.calgaryheraldonline.com/rss_echo.php"));
    Any assistance would be appreciated.
    Cheers
    Forrest

    If I un-nest the functions from the RSS loader, I get many more errors.
    Here is my un-nested code;
    import flash.text.TextFormat;
    var cssLoader:URLLoader;
    //load the fake preloader
    var preLoader = new loading_mc();
    preLoader.x = 170;
    preLoader.y = 50;
    preLoader.scaleX = .7;
    preLoader.scaleY = .7;
    addChild(preLoader);
    //This code loads and Parses the RSS feed
    var loader:URLLoader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, onLoaded);
    var xml:XML;
    function onLoaded(e:Event):void {
         removeChild(preLoader);
         xml = new XML(e.target.data);
         var firstheadtext = xml.channel.item[0].title;
         var firstbodytext = xml.channel.item[0].description;
         var secondheadtext = xml.channel.item[1].title;
         trace(firstheadtext);
         trace(firstbodytext);
         trace(secondheadtext);
         //dtfa.htmlText = "<p align='left'>"+firstheadtext+"</p>"+"</br>"+ "<p align='left'>"+firstbodytext+"</p>";
         var myText:String = "<p>"+firstheadtext+"</p>"
         +"<span class='myTextStyle1'>"+firstbodytext+"</span><br/>"
         +"<br/>"
         +"______________________________________________________________________________<br/>"
         +"<br/>"
         +"<span class='myTextStyle2'>"+secondheadtext+"</span><br/>";
    function handleFHTClicked(e:MouseEvent):void {
         navigateToURL(new URLRequest(xml.channel.item[0].link));
    firstheadtext.addEventListener(MouseEvent.MOUSE_OVER , rollOverHandler);
    firstheadtext.addEventListener(MouseEvent.MOUSE_OUT, rollOutHandler);
    // create the text format objects
    var overTextFormat:TextFormat = new TextFormat();
    overTextFormat.underline = true;
    var defaultTextFormat:TextFormat = new TextFormat();
    defaultTextFormat.underline = false;
    //This code handels the click through
    firstheadtext.addEventListener(MouseEvent.CLICK, handleFHTClicked);
    // add the event handlers
    // you only need these two functions
    function rollOverHandler(e:MouseEvent):void {
         TextField(e.target).setTextFormat(overTextFormat);
    function rollOutHandler(e:MouseEvent):void {
         TextField(e.target).setTextFormat(defaultTextFormat);
    function cssLoadComplete(event:Event):void {
         var sheet:StyleSheet = new StyleSheet();
         sheet.parseCSS(cssLoader.data);
         myTextField.styleSheet=sheet;
         myTextField.htmlText=myText;
    var myTextField:TextField = new TextField();
    myTextField.width = 500;
    myTextField.height = 240;
    myTextField.multiline = true;
    myTextField.wordWrap = true;
    addChild(myTextField);
    var req:URLRequest = new URLRequest("myStyleSheet.css");
    cssLoader = new URLLoader();
    cssLoader.addEventListener(Event.COMPLETE, cssLoadComplete);
    cssLoader.load(req);
    loader.load(new URLRequest("http://www.calgaryheraldonline.com/rss_echo.php"));
    And now the errors are telling me it cannot access the undefined property of myText and firstheadtext.
    I just don't understand what needs to be inside the onLoaded function and what has to be outside.

  • Asfunction not working

    Does the fact that I'm parsing this XML have anything to do
    with the fact that the mailto: function does not work?
    This is the function in Flash:
    function fMailTo(email)
    getURL("mailto:" + email);
    This is an attribute from my XML:
    email="&lt;a
    href='asfunction:fMailTo,[email protected]&apos;&gt;[email protected]&lt;/a&gt;"
    which, after being parsed and when traced appears like this
    in the output window:
    <a
    href='asfunction:fMailTo,[email protected]'>[email protected]</a>
    going into a dynamic text field with the following properties
    applied:
    phoneList_txt.html = true;
    phoneList_txt.htmlText = sList;
    sList is where all names, email addresses, etc. are

    aniebel,
    > Does the fact that I'm parsing this XML have anything to
    > do with the fact that the mailto: function does not
    work?
    It shouldn't. Let's see what you've got in your code.
    > This is the function in Flash:
    > function fMailTo(email)
    > {
    > getURL("mailto:" + email);
    > }
    So far, that looks fine. The above assumes that a string is
    being
    passed into the fMailTo() function as a parameter, and that
    the parameter is
    an email address.
    > This is an attribute from my XML: ...
    > which, after being parsed and when traced appears like
    > this in the output window:
    > <a
    href='asfunction:fMailTo,[email protected]'> ...
    When this hyperlink is clicked, asfunction, will invoke the
    fMailTo()
    function and pass it the parameter [email protected] --
    at least, it
    should. I would add a trace() statement inside the fMailTo()
    function to
    make sure a) the function is being triggered at all and b) is
    receiving the
    email address as expected. (The @ symbol might, for example,
    need to be
    escaped, though I don't think that would be necessary.)
    > going into a dynamic text field with the following
    properties applied:
    > phoneList_txt.html = true;
    > phoneList_txt.htmlText = sList;
    So far, so good.
    > sList is where all names, email addresses, etc. are
    Is sList is an array? If so, you would need to pull a
    particular
    element from that array, right? Something like ...
    phoneList_txt.htmlText = sList[0];
    Could that be it?
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • LINE messenger notification not work

    Hi,
    I have a problem about LINE messenger notification from my iPhone 4 is not working.
    I do not have such problem before until it happen on now.
    The problem was when i tried to receive message from my friends, the notification is not there is no sound and no pop up message.
    FYI, I have to tried the below testing but still failed:
    1. Checked all settings under the LINE messenger settings.
    2. Checked all settings under my iPhone 4 settings under 'notification'
    3. Restart iPhone 4 and re-downloaded the application many time.
    I am currently using:
    1) iPhone 4
    2) iOS 7.1.2 ((latest version for My phone can support)
    3) Latest version of LINE messenger

    I am giving you examples in both the ways which we can use
         1. Normal \n method:
                  var str = "Number of characters \nincluding line  breaks \nand spaces so \nfar:"
                   myText_txt.text = str;
         2. HTML break <br>:
           var str = "Number of characters <br>including line  breaks <br>and spaces so <br>far:"               myText_txt.htmlText = str;
    There is no other way to break a line directly.
    However you can use a character like "$" to seperate the string and on client side break the line where you find "$".
    This is the hard way, use programming to break a line and not a preffered way.

  • Not work tablet UI on Prestigio 5080 PRO tablet

    I read that browser.ui.layout.tablet = "1" can fix this problem. But it not works. I can work only in pnone interface that is not good for my 8'' tablet.

    Would it be possible for you to share the problematic pdf and OS information  with us at [email protected] so that we may investigate?
    Thanks,
    Adobe Reader Team

  • Why self-defined access sequences of free goods can not work?

    Hi gurus,
    I have maintained access sequences of free goods self-defined.but when i creat the SO it does not work!
    when i used the standard access sequences ,it is OK .
    Can anybody tell me why?
    thanks in advance

    Dear Sandy,
    Go to V/N1 transaction select your self defined access sequence then go in to the accesses and fields and check all fields are activated.
    Make sure that these fields are flowing in your sales order.
    I hope this will help you,
    Regards,
    Murali.

  • Adobe bridge raw not working with windows vista in photoshop cc, why?

    adobe bridge raw not working in photoshop cc, is there a fix?

    Your sure your using photoshop cc on windows vista?
    I was under the impression that photoshop cc would not even install on windows vista.
    What version of camera raw do you have?
    In photoshop under Help>About Plugin does it list Camera Raw and if so which version is it?
    (click on the words Camera Raw to see the version)
    Camera raw doesn't work if it's a camera raw file or some other file type such as jpeg or tif?
    What camera are the camera raw files from?
    Officially camera raw 8.3 is the latest version of camera raw that will work on windows vista.

  • Adobe Bridge CS5 in windows 7 not working?

    Adobe Bridge CS5 in windows 7 not working. I was using bridge perfectly for last 2 years. It stops working since 3 days. I tried to install updates. Showing some error to install.
    Tried to install creative cloud..again some error. Error code : 82
    Could you please advice how I can fix my adobe bridge.

    https://www.youtube.com/watch?v=xDYpTOoV81Q&feature=youtu.be
    please check this video I uploaded..this is what happens when I click adobe bridge.. just blinks and go off. bridge not working on task manager

  • ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • Partner application logoff not working

    We have a partner application registered with sso with custom login screen. The login works fine. We use the following code to logoff the partner application in logoff.jsp
    response.setHeader("Osso-Return-Url", "http://my.oracle.com" );
    response.sendError(470, "Oracle SSO");
    session.invalidate();
    but the logoff is not working properly. It is not invalidating the session and the logout http request is not going from the application server to the sso server.
    Are there any additional configurations for SSO logoff.Any help is appreciated.
    Thanks

    Hi
    The WF should also trigger if i add the Partner function in UI.If i change any Attribute the WF triggers but i dont want to change the attribute when i add the partner function.
    If i have only one event for WF that is Partner Change the WF will not trigger it for the 1st time when i save the UI. But next i come to the same saved doc and add a partner function then the Wf triggers.
    So this means that Partner change is active.
    the issue here is i need to trigger the WF on , the 1st time i save the UI, for which i wil be using Attribute Change and next time when i come back to saved doc the and add only the partner function and no changes are made to attributes the WF should again trigger.
    Thanks
    Tarmeem

  • IPhone 4 Voice Memos not working/saving

    Hi there,
    I'm having trouble with my voice memos too. Up until yesterday they were working fine and now, even though the record button works, the stop button does not and I can only pause them. Worse again is that the button to go into the menu to view all voice memos is not working so I can't play them from my iPhone and nothing new is saving to my iTunes. Please help!

    I've always had the "Include Voice Memos" option selected. I think that only pertains to syncing voice memos from iTunes to the iPhone after it has been copied to iTunes. It has to be the new OS/iTunes not communicating that new memos have been recorded. For some reason they won't sync when I want them to, and then a few syncs later they magically appear.
    By the way, I'm VERY comfortable with the iTunes and iPhone systems. I've been using iTunes for 5 years, and I've been recording class lectures with the iPhone voice memo app (and another app) for a couple years. It's not an error of not seeing that the memos were added; they don't exist in my library or music folders.
    JUST OUT OF CURIOSITY, POST WHICH FIRMWARE YOU ARE RUNNING EXACTLY!!!
    I'm on an iPhone 4, running firmware 4.0.1

Maybe you are looking for