squiggly_p4, problem with Spark container

Hello

Environment: Flex SDK 4.5 Hero, Win7 64-bit, Flash Builder 4

Code snippet

< s:Panel >

< mx:TextArea id = "myTextArea" width = "300" height = "200" / >

< / s:Panel >

< s:TitleWindow >

< mx:TextArea id = "myTextArea" width = "300" height = "200" / >

< / s:TitleWindow >

Result:

There is no suggestion for thos Halo TextArea if it belongs to the container of the spark.

Capture.PNG

Capture2.PNG

Maybe: ContextMenu is uninitialized or not properly initialized.

Thank you

Jing

It is a known problem with the panels of the spark. Please refer to http://forums.adobe.com/thread/706416?tstart=0

Thank you

Ravi

Tags: Adobe

Similar Questions

  • Problem with where / contains

    I'm trying to generate a list of virtual machines based on the computers of the AD.  The first example works very well and I suppose because $group is a string.  The second in which $group generated by a query AD does not work.  How to convert $group in this case to work with - contains or is at - it another way to structure that?

    $group = "SQL02","SQL04"
    get-vm | where {$group -contains $_.name}
    
    
    $group = Get-ADComputer -Filter 'Name -like "SQL"' | select-object -property name
    get-vm | where {$group -contains $_.name}
    



    Dave

    VMware communities user moderator

    Now available - vSphere Quick Start Guide

    You have a system or a PCI with VMDirectPath?  Submit your specifications to Officieux VMDirectPath HCL.

    The Select-Object cmdlet does not return a string but an object. You can check by channeling the output to the Get-Member cmdlet.

    Get-ADComputer -Filter 'Name -like "SQL"' | select-object -property name | Get-Member
    

    With the - contains operator you then compare a string against a collection of objects.

    That won't work.

    You could do

    $group = Get-ADComputer -Filter 'Name -like "SQL"' | %{$_.Name}
    get-vm | where {$group -contains $_.name}
    

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • Problems with values () .contains () and containsValue() to NamedCache

    Hi all

    We will store the objects in a distributed cache (version 3.3) using objects versionnables for optimistic locking. Objects stored in the cache are anti-theft with POF. However, it seems that for values () .contains () and containsValue(), equals() is never called on these objects. The problem we have is that to implement versionnables, we use a field long version, but I deliberately don't compare this field in equals(). However, this means that if I have an object, insert it into the cache and immediately call containsValue() return false(). As far as I know use of the debugger, it seems calling equals() directly on the binary object stored in the cache, which is almost never what you want.

    Y at - it a good solution for this?

    See you soon,.
    Colin

    I would like to raise objection: that's almost ALWAYS what you want because otherwise, data must be deserialized each time put or get important takes place resulting in a drop in performance!

    From my experience, it's ok to compare the form serialized about 99.5% of the time. In the rare cases were you really want to do something special in the equals method, it is of course a royal pain in the XXX that it is made this way...

    Otherwise, you're right - this is how it works!

    Best regards
    Magnus

  • Problem with spark scroll off the screen list

    I'm working on a mobile application using Flex 4.5.1.

    I have a detail view that vgroup that contains some labels, followed of a list control. The number of labels and the number of items in the list both vary according to the selected element before entering this point of view.

    So my list in some cases control extends beyond the bottom of the screen. I want labels at the top to stay visible all the time and just the list in the lower roller to be able to see and select all items.

    What I get is a list at the bottom that I can scroll, but as soon as I let go of it returns to the top so that I'm never able to choose something that requires scrolling to get to.

    I have the basic layout implemented in mxml with a vgroup that contains an another vgroup followed by the list. In actionscript, I'm adding items to the dataprovider for the list and labels for the inner vgroup.

    < s:VGroup id = "outerGroup".

    Width = "100%" height = "100%".

    Enabled = "false".

    Visible = "false" >

    < s:VGroup id = "labelGroup.

    paddingTop = "10" paddingBottom = "10" paddingLeft = "5" = "5" paddingRight

    Width="100%"/ >

    < s:List id = "actionsList.

    Width = '100% '.

    alternatingItemColors = "[#ffffff, #ebebeb].

    dataProvider = "{action}".

    change = "actionsList_changeHandler (actionsList.SelectedItem)" >

    < s:itemRenderer >

    < fx:Component >

    < s:IconItemRenderer label = "label".

    messageField = 'message '.

    Decorator = "{Data.Icon}" / >

    < / fx:Component >

    < / s:itemRenderer >

    < / s:List >

    < / s:VGroup >

    Any help is appreciated.

    What do you do when you select an item? Do you find that you are unable to scroll? Also, I noticed that your list has no height. I would probably stick height = "100%" on the subject and see what happens.

  • Problem with spark list and XML dataProvider

    I am VERY new to Flex so I'm probably doing something wrong, but I hope it means this will get a quick response.

    I use a list of spark related to a data provider. On the actions of the user, the list will be filtered. The problem I encounter is that when the xml result is one, she will eventually launch an error:

    Has no type constraint: cannot convert mx.utils::ObjectProxy to mx.collections.IList.

    Here is the code to reproduce the problem...

    Main.MXML

    <?xml version="1.0" encoding="utf-8"?>
    <s:Application
     xmlns:fx="http://ns.adobe.com/mxml/2009" 
     xmlns:s="library://ns.adobe.com/flex/spark" 
     xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
     <fx:Script>
     <![CDATA[
      
     protected function singleItemButton_clickHandler(event:MouseEvent):void
     {    
      ItemService.send();    
     }
     protected function mutliItemButton_clickHandler(event:MouseEvent):void
     {
      var dataObject:Object = new Object();
      dataObject.multi = "yes";
      ItemService.send( dataObject );
     }
     ]]>
     </fx:Script>
    
     <fx:Declarations>
      <s:HTTPService    
       id="ItemService" 
       url="http://myserver/xml/itemXML.cfm" />   
     </fx:Declarations>
    
     <s:List id="theList" 
      x="60" y="29" width="200" height="251" 
      dataProvider="{ItemService.lastResult.items.item}" labelField="name"/>
    
     <s:Button x="77" y="287" label="Single Item" click="singleItemButton_clickHandler(event)"/>
     <s:Button x="172" y="287" label="Multi-Item" click="mutliItemButton_clickHandler(event)"/>
    
    </s:Application>
    

    itemXML.cfm

    <cfsetting showDebugOutput="No">
    <cfxml variable="result">
     <items>
            <item>
                <name>Item One</name>
            </item>
      <cfif isDefined('url.multi') AND '#url.multi#' EQ 'yes'>
                <cfoutput>
                <item>
                    <name>Item Two</name>
                </item>
              </cfoutput>
            </cfif>
       </items>
    </cfxml>
    <cfoutput>#result#</cfoutput>
    

    http://blogs.Adobe.com/aharui/2007/03/arraycollection_arrays_and_ser.html

  • Problem with cluster containing different objects!

    Hello to all 2!

    Here's what I'm trying to do:

    -J' have a group of 3 elements: 2 Boolean and 1 controls arrow.

    -I want to display all the objects in the cluster and disappear in sequential order: Boolean - invisible; arrow - invisible, Boolean - visible; arrow-visible, invisible 2 - Boolean and so on.

    I have attached a vi in which I tried to address this issue, but without success.

    Any ideas?

    Thank you very much!

    Andrew.

    Andrew,

    Make the arrow a Boolean control with an image of an arrow.  Then, all the controls are Boolean values, and visibility can be controlled by a simple loop.

    Lynn

  • Problem with form container tut. 2.1

    Here is my code:
    < mx:Form = "439" x = "10".
    width = "318" height = "349".
    borderStyle = "solid" borderColor = "#d4d4d4."
    dropShadowEnabled = 'true' dropShadowColor = "#b3b3b3."
    shadowDirection = 'right' shadowDistance = "10" >

    < mx:FormHeading label = "Contact Information" / >
    < mx:FormItem label = "full name:" >
    < mx:TextInput id = "name" / >
    < / mx:FormItem >
    < mx:FormItem id = "address:" >
    < mx:TextInput id = "address" / >
    < / mx:FormItem >
    < mx:FormItem id = "City:" >
    < mx:TextInput id = "City" / >
    < / mx:FormItem >
    < mx:FormItem id = "State:" >
    < mx:TextInput id = "State" / >
    < / mx:FormItem >
    < mx:FormItem id = "ZIP Code:" >
    < mx:TextInput id = 'postal code' / >
    < / mx:FormItem >
    < mx:FormItem id = "phone:" >
    < mx:TextInput id = "phone" / >
    < / mx:FormItem >
    < mx:FormHeading label = "Room Information" / >
    < mx:FormItem label = 'Date needed' >
    < mx:DateField id = "dateNeeded" / >
    < / mx:FormItem >
    < mx:FormItem >
    < mx:Button label = "Submit" id = "Button" / >
    < / mx:FormItem >
    < / mx:Form >

    But the FullName text entry. Am I blind? I don't see my error...

    Looks like the problem is that you are missing the attribute 'label' for the FormItems following the element name. You have 'ID' instead of the label.

  • Anyone having problems with the last Flash?

    Update of Flash and Java yesterday, and since then had problems with plugin container closure etc.

    Slowly began to disable add-on first and then this morning off Flash since Chrome was having a similar problem.

    No more problems and helped all add them we...

    Thoughts anyone?

    http://support.Mozilla.org/en-us/KB/reset-Firefox-easily-fix-most-problems

    Reset worked for me

  • Problems with multimedia content containing extracts

    I use HR 10 of Tech Comm Suite 4.0 on a windows system 7 64. I generate a WebHelp output and the consultation on 10 FireFox and IE 8 browsers.

    I have a clip that contains a paragraph followed of a SWF interactivity. Now I have all the problems by creating this extract and re-use of the same project. However, I export this code snippet, only the HTS file is imported and not the SWF. (I'm emphasizing this because, when we export a clip that has a picture, file HTS and the image is exported.)

    For this reason, when I import this code snippet into a new project and publish it, only the content of the paragraph appears and not interactivity.

    It is not possible to import clips with multimedia content or I do something wrong?

    Note: I am facing a similar problem with drop-down text excerpts that contain the multimedia content.

    Anthony

    I filed a bug report. Here is the solution proposed by Adobe.

    «To bring multimedia content so that the snippet code, edit the snippet once in the editor of HR and save it before you import extracted.»

  • Activation problem with hard disk containing Vista deleted from a computer dead and installed in a work computer.

    Problem: HP laptop with Vista installed suffers an untimely death. The installed hard drive with Vista is still OK. Hard disk has been removed from the HP laptop and then installed in an old Dell laptop. Windows Vista is complaining that Vista is not valid and must be activated. I get the activation from valid product key and the activation utility responds with an error 0xC004E003 code and will not activate. Microsoft does not support chat or e-mail for Vista and I can not even a phone number to talk to a human being. I think I should be able to remove Vista from a computer and run it on another without Microsoft having a problem with it. What should I do for this? Any help will be appreciated. Thank you.

    Property to true. An OEM Vista license does "die with the computer. Conditions of licence for the version of Windows 8 have changed compared to the terms for the most comparable Windows 7 or Vista or XP. In my opinion, the terms are now even more restrictive, more or less.

    Good luck exploring alternatives to the BONE. Some Linux distributions are well worth a visit. Ubuntu, Suse and Mint are quite simple to install on a wide range of material. I'm not familiar with the Apple/Mac or Android offers, but many speak well of them.

    Calculation of the happy.

    Tom Ferguson

  • Quality problem with Illustrator files containing transparencies

    Im having a problem with some of my Illustrator files (related in Indesign). They look flawless in illustrator, however when I place images in indesign I find that their resolution is subpar. The performance of display is to display the highest quality and only the parts of the image seem to be affected. More than a few of the trasparencies seem to have this problem. I removed the transparency in the image below, and the image seems to work correctly when relinked. You can see below, I used a transparent circle to call an area, but he has a messed up way wiith the quality of illustration (although in some of the region). The problem is causeing some of my lines to become pixalated and not even in the area below the transparentcy. Any advice you could give me would be great its been giving me a headache.

    Screen Shot 2013-06-11 at 4.57.48 PM.png

    Save as PDF in Illustrator using the PDF/X-4 settings and place the resulting in InDesign PDF file. See if it improves your results!

    -Dov

  • What is the problem with my iMac mid-2011

    Hello

    Need help find out what is the problem with my iMac to mid-2011.

    Yesterday during a reboot it just never came to life.

    On turning the power on, I get the RINGTONE to start and that's it. The screen is totally black. Nothing behind tried with a torch.

    VRAM rearmament so far I tried repeatedly, unplug and plug, all kinds of combinations of keys in the carillon and nothing.

    Connected to an external monitor and shows nothing of too - no signal.

    Any way that I can know what is wrong with it before sending it to the service tech? I suspect bad graphics card but how do you ensure?

    From what you describe, it looks like a hardware issue that Apple will only be able to resolve, but not to despair immediately.

    Read it please get help with graphics issues on external displays connected to your Mac - Apple Support.

    I know that the title and subject are not suitable to your concern, but buried in this document is the following passage that contains three links describing the steps to follow.

    If you can not change the resolution of your screen because you see no image, restart your Mac in safe mode to reset the default display resolution.

    If booting safe mode doesn't resolve the problem, reset your Mac NVRAM and SMC to reset the video ports on your Mac to their default values.

    That first, then write again for additional suggestions if you are still having problems.

  • Problem with IMovie and Quick time

    Hey everybody,

    I am faced with an unexpected problem with Quicktime and I Movie, and I was wondering if someone had already known that:

    I want to create a film based on shots from my personal camera. I started to work with IMovie to create a sequence of opening and added his musical band. I exported the scenes in Quick Time format without any problem. However, when I merge the exported sequence of I film with shots of my video camera, the soundtrack is completely eliminated.

    I checked on the Internet and saw that there might be a problem of "Codecs". To avoid this, I exported the sequence IMovie with Codecs of same as one of my video camera files.

    Now, if I compare the files exported from I Movie and those of my video camera, they have identical characteristics. However, the soundtrack will always disappear when I merge them.

    Could someone please help me solve this problem?

    Thank you very much in advance.

    Concerning

    Could someone please help me solve this problem?

    Not only based on what you already said.

    I want to create a film based on shots from my personal camera. I started to work with IMovie to create a sequence of opening and added his musical band. I exported the scenes in Quick Time format without any problem. However, when I merge the exported sequence of I film with shots of my video camera, the soundtrack is completely eliminated.

    How would you"merge" files? (I.e. a "QuickTime" format is any form of data compatible with the platform of supply and the specific structure of QT incorporated into real employment that is stored in a container of MOV file on any of up to 99 tracks possible). Also, what app do you use for reading the file 'merged '? (For example, some media players ignore secondary audio tracks as a result of some methods of 'fusion' of files so it is important to know how the files are "merged," whether or not the audio data are "scattered" several tracks, and/or if the Media Player supports playback of multiple, sequential audio popular.)

    I checked on the Internet and saw that there might be a problem of "Codecs". To avoid this, I exported the sequence IMovie with Codecs of same as one of my video camera files.

    The specific codecs and settings using the specific version of iMovie? (The current Mac OS X operating systems have two X QT and 'classic' Qt integrated structure so it is important to know what structure is used here and how).

    Now, if I compare the files exported from I Movie and those of my video camera, they have identical characteristics. However, the soundtrack will always disappear when I merge them.

    As a general rule, you should review the file "merged" to determine why it does not play back correctly rather than comparing the characteristics of the source being merged files. The main problem here seems to be in your project workflow. That is, you seem to be when you perform an operation in two steps rather than edit several iMove multimedia files and then export the combined results in a video the video and audio tracks have been flattened and exported in standard compression formats with unified settings, features and the.

  • Hello I have problem with my site, and mozilla. Google chrome, safari, explorer, opera work ok. Mozilla Heve problem with images?

    Hello I have problem with my site, and mozilla. Google chrome, safari, explorer, opera work ok. I have Sobipro for both the company and the logos and images without work!
    When I try to open the url is this:http://www.athens-dayandnight.gr/images/sobipro/entries/288/587_img.jpg

    whith mozilla is the following: /images/sobipro/entries\288\587_img.jpg when ichange it------with this / work.

    any idea?

    Thank you

    Hello, the URLS that contain-in their path are not valid. Firefox is less tolerant to errors in this respect than other browsers.
    Correct the path to http://www.athens-dayandnight.gr/images/sobipro/entries/288/587_img.jpg in the source code of this site or if you don't control the contact of the site their webadmin to do...

  • Firefox freezes - icon flashing task bar - seems the problems with flash - reinstalled both

    Using firefox 31.0 and uses the latest version of flash

    Often when visiting places such as youtube - firefox hangs with the firefox icon will blink in the taskbar - I have no open windows and it's a newish windows machine 7 - have reinstalled the two fire Fox and flash and still have the issue.

    Help / advice would be much appreciated

    Hello

    Some problems with Flash video playback can be resolved by disabling hardware acceleration in Flash Player settings. (See this article for more information on using the Flash plugin in Firefox).

    To turn off hardware acceleration in Flash Player:

    1. Go to the Adobe Flash Player help page.
    2. Right-click on the Flash Player logo on this page.
    3. Click settings on the shortcut menu. The Adobe Flash Player settings screen opens.
    4. Click the icon in the lower left of the Adobe Flash Player settings window to open the display panel.

    5. Remove the enable hardware accelerationcheck box.
    6. Click close to close the Adobe Flash Player settings window.
    7. Restart Firefox.

    This Flash Player help - display settings page contains more information about the Flash Player hardware acceleration, if you are interested.

    Does this solve the problem? Let us know.

Maybe you are looking for