HitTestObject with a movieCLip child

Hey all
I've been banging my head around this since yesterday and I can't really understand what's the problem...
1. I have created on stage three movieclip from the library called Eve, Sta, and Act... If Eve or Act touch Sta they each snap ina specific position relatively to Sta...
2. Let's say that Eve touches Sta and it snaps in place... They will now move as one. This is made possible because I placed them inside an empty MovieCLip on stage called Container... Up to here the code works fine; they snap and move around like they should
3. I want now to snap Act to Sta too, meaning (I guess) that if Act touches the child of Container, called Sta or the child in position 0 (Sta is always in position 0 inside Container), it should snap into position relatively to Container's child Sta....
the snapping code works like this
function snap(e:MouseEvent):void
          var container:MovieClip = new MovieClip();
          container.name = "ao";
          if (e.target.name == "eve" && DisplayObjectContainer(e.target).hitTestObject(this.getChildByName("sta")))
                    DisplayObjectContainer(e.target).x = DisplayObjectContainer(this.getChildByName("sta")).x - 78;
                    DisplayObjectContainer(e.target).y = DisplayObjectContainer(this.getChildByName("sta")).y;
                    container.addChild(DisplayObjectContainer(this.getChildByName("sta")));
                    container.addChild(DisplayObjectContainer(this.getChildByName("eve")));
          if (e.target.name == "act" && DisplayObjectContainer(e.target).hitTestObject(this.getChildByName("sta")))
                    DisplayObjectContainer(e.target).x = DisplayObjectContainer(this.getChildByName("sta")).x;
                    DisplayObjectContainer(e.target).y = DisplayObjectContainer(this.getChildByName("sta")).y + 75;
                    container.addChild(DisplayObjectContainer(this.getChildByName("sta")));
                    container.addChild(DisplayObjectContainer(this.getChildByName("act")));
          else if (e.target.hitTestObject(container.getChildByName("sta")))
                    trace("ok");
          container.addEventListener(MouseEvent.MOUSE_DOWN, drag);
          container.addEventListener(MouseEvent.MOUSE_UP, noDrag);
          container.buttonMode = true;
//feedback
          trace(container.x);          // returns 0
          trace(container.y);         //  returns 0
          trace(container.getChildAt(0)); //returns the name of the obj from the library
          trace(container.getChildByName("sta")); //returns the name of the obj from the library
          addChild(container);
To finish, the problem I'm having is that if I snap something to Sta, any other attempt to attach another mc will fail, so the snapping works fine for the forst time, but not for any other attempt...

Just on a cursory review of the code, the problem (with the error) likely lies in testing...
     this.getChildByName("sta")
As soon as you place the sta object inside the container it is no longer a direct child of 'this', but is instead a child of 'container'
There are likely a few ways to deal with this. One would be to always have sta inside the container right from the start, and then hit test against  container.getChildByName("sta").  Another way could be to not use the getChildByName approach and instead store references to the actual objects, and then just hit test the objects.

Similar Messages

  • How to replace a movieclip with another movieclip

    How to replace a movieclip with another movieclip
    Hi,
    I am having a swf called tchild.swf... in this i got a
    movclip 'child1'. i am loading this tchild.swf into another swf
    tparent.swf within 'mcloader' movie clip.. i got another movclip
    called 'picture1'
    i am loading tchild.swf into mcloader movclip.. and i want to
    load 'child1' moviclip into picture1..
    how to replace a picture1 movieclip with child1 mc..
    PS: i dont want to load picture1 from library.. its on the
    stage.

    AWT or Swing?

  • ASO MDX IsLevel weirds result when a parent with only a child

    Hi,
    I am using the function IsLevel but I find funny results when I apply it with a parent member with only a child.
    The result of the function is the level of the child
    I am doing it in Essbase 11.1.2.2
    Has anyone had the same issue?

    Hi Tim,
    It is true, it is an implied share issue.
    With the parent as never share works.
    I don't remember that it happens with BSO, not with the attributes of the members (level, generation, UDA).

  • Entity Framework : A short way to copy one object with it's child to a new object ?

    Hello !
    I'm using entity framework 6.
    Sometimes I need to copy an existing object with all its childs to a new object and to save to database.
    I'm using a standart way by creating a new object , copy one by one it's properties from existing object ( except the ID ) , after I create new object for every child and copy one by one each properties except the ID and Parent id......
    But of course this is a hard way to do especially when the object have a lot's of properties.
    I want to know is there any short way  ( built in) to do this ?
    Thank you !

    Actually , I'm using this extension :
    Imports System.ComponentModel
    Imports System.Collections
    Imports System.Data.Entity.Core.Objects.DataClasses
    Imports System.Runtime.Serialization
    Imports System.IO
    Imports System.Reflection
    Module Extensions
    <System.Runtime.CompilerServices.Extension> _
    Public Function Clone(Of T As EntityObject)(source As T) As T
    Dim ser = New DataContractSerializer(GetType(T))
    Using stream = New MemoryStream()
    ser.WriteObject(stream, source)
    stream.Seek(0, SeekOrigin.Begin)
    Return CType(ser.ReadObject(stream), T)
    End Using
    End Function
    <System.Runtime.CompilerServices.Extension> _
    Public Function ClearEntityReference(source As EntityObject, bCheckHierarchy As Boolean) As EntityObject
    Return source.ClearEntityObject(bCheckHierarchy)
    End Function
    <System.Runtime.CompilerServices.Extension> _
    Private Function ClearEntityObject(Of T As Class)(source As T, bCheckHierarchy As Boolean) As T
    If source Is Nothing Then
    Throw New Exception("Null Object cannot be cloned")
    End If
    Dim tObj As Type = source.[GetType]()
    If tObj.GetProperty("EntityKey") IsNot Nothing Then
    tObj.GetProperty("EntityKey").SetValue(source, Nothing, Nothing)
    End If
    If Not bCheckHierarchy Then
    Return CType(source, T)
    End If
    Dim PropertyList As List(Of PropertyInfo) = (From a In source.[GetType]().GetProperties() Where a.PropertyType.Name.Equals("ENTITYCOLLECTION`1", StringComparison.OrdinalIgnoreCase) Select a).ToList()
    For Each prop As PropertyInfo In PropertyList
    Dim keys As IEnumerable = CType(tObj.GetProperty(prop.Name).GetValue(source, Nothing), IEnumerable)
    For Each key As Object In keys
    Dim childProp = (From a In key.[GetType]().GetProperties() Where a.PropertyType.Name.Equals("EntityReference`1", StringComparison.OrdinalIgnoreCase) Select a).SingleOrDefault()
    childProp.GetValue(key, Nothing).ClearEntityObject(False)
    key.ClearEntityObject(True)
    Next
    Next
    Return CType(source, T)
    End Function
    End Module
    But the problem is that when I try to use like this :
    Dim litm, newitm as MyObject
    For Each litm In itemlist
    newitm = litm.Clone()
    newitm.ClearEntityReference(True)
    context.MyObjects.Add(newitm)
    Next
    context.SaveChanges()
    I get an error :
    Public member 'Clone' on type 'MyObject' not found.

  • [svn:osmf:] 14765: Put gate around autoRewind code, to prevent possibility of an infinite loop ( which could happen if you create a SerialElement with the last child a DurationElement of duration zero ).

    Revision: 14765
    Revision: 14765
    Author:   [email protected]
    Date:     2010-03-15 13:48:04 -0700 (Mon, 15 Mar 2010)
    Log Message:
    Put gate around autoRewind code, to prevent possibility of an infinite loop (which could happen if you create a SerialElement with the last child a DurationElement of duration zero).
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/media/MediaPlayer.as

    Step by step, how did you arrive at seeing this agreement?

  • Hittest only working with 1 added child

    Ive got this piece of script where i place objects on the stage, to hittest eachother.
    Ive got two seperate addchilds: one child must hittest another child
    But for some reason it will only hittest with one object from the 2nd addchild :/
    this is the addchild for the hittesting objects:
    all variables are defined properly
    for(var ringteller=0; ringteller<2; ringteller++) {
    for(var teller1=1; teller1<17; teller1++) {
        //var ringsegment_mc:Ring_1=new Ring_1();
        var ClassReference:Class = getDefinitionByName("Ring_"+teller1) as Class;
        var ringsegment_mc:MovieClip=new ClassReference();
        ringsegment_mc.addEventListener(Event.ENTER_FRAME,vernietig);
        addChild(ringsegment_mc);
    for(var teller2=0; teller2<2; teller2++) {
        var hitte_mc:Hitte=new Hitte();
        Hittes.push(hitte_mc);
        hitte_mc.mousedown=0;
        hitte_mc.addEventListener(Event.ENTER_FRAME, floaten);
        hitte_mc.addEventListener(MouseEvent.MOUSE_DOWN, slepenStart);
        hitte_mc.addEventListener(MouseEvent.MOUSE_UP, slepenStop);
        addChild(hitte_mc);
    and this is the code for the slepenStart and vernietig:
    function vernietig(evt:Event) {
        for(var teller3:int=1;teller3<Hittes.length;teller3++){
            if (evt.currentTarget.hitTestObject(Hittes[teller3]) ) {
                   evt.currentTarget.alpha+= -0.1;
                if (evt.currentTarget.alpha<=0.05) {
                    evt.currentTarget.x=evt.currentTarget.y=-200;
                    this["segmentenkapot"+evt.currentTarget.kerngroep]+=1;
            if (this["segmentenkapot"+evt.currentTarget.kerngroep] == 16) {
                trace("ring kapot");
    function slepenStart (evt:MouseEvent):void {
        evt.currentTarget.startDrag();
        evt.currentTarget.snelheidx=evt.currentTarget.snelheidy=0;
        evt.currentTarget.mousedown=1;
    function slepenStop (evt:MouseEvent):void {
        evt.currentTarget.stopDrag();
        evt.currentTarget.snelheidx=4; evt.currentTarget.snelheidy=2;
        evt.currentTarget.mousedown=0;
    so: only one instance of the hitte_mc will hittest with the instances of Ring_
    what did i miss to fix this :/

    i replaced
    teller3:int=1;
    with
    teller3:int=0;
    which seems to have done it ^^
    that is what you meant, right?
    btw: the for loop was only checking for one, instead of the whole array ^^

  • Problem with Master and Child table

    Hi,
    Working in jdev 11.1.1.2.0. I have one strange issue. i have master and child tables, the model is working fine with the view link. but when drag drop the same into my jsff. when i query the result 1st time 2 tables are refershing properly and data is coming. but the when i trying to select another row in the 1st table my 2nd table(child table) is not refreshing.
    i put partial trigger of the 2nd table as 1st table id.
    can any one help wht is issue here.
    Edited by: user5802014 on Jul 15, 2010 3:44 PM

    Check this post might help you
    http://baigsorcl.blogspot.com/2010/03/creating-master-detail-form-in-adf.html

  • How to update a list in parent view with data from child view/window ?

    I have a view named AccountListView that displays some buttons and a list of accounts.Its viewmodel is called AccountListViewModel and has a collection : ObservableCollection<AccountViewModel>. What I'd like to acomplish: whenever I press the Add/Edit
    Button from the AccountListView to open a new window/usercontrol, i.e. AccountView and bind it to an instance of AccountViewModel that will have some fields to fill in and a Submit and Cancel buttons. How can I update the ObservableCollection<AccountViewModel>
    from  inside the child view, so when I click on the Submit button from AccountViewModel it will return an AccountViewModel object with the data I filled in and add it to the observablecollection. Would notifications from prism be the right way ? Should
    I include code from the AccountListViewModel and AccountViewModel ?

    The way to communicate between view models in Prism is to use the EventAggregator. You raise an event from view model A and subscribe and handle this event in view model B. I have written a blog post about it which should be helpful here:
    http://blog.magnusmontin.net/2014/02/28/using-the-event-aggregator-pattern-to-communicate-between-view-models/.
    In your case you could define an event that carries an AccountViewModel object and pass this one from view model A to view model B:
    public class AccountViewModelEvent : CompositePresentationEvent<AccountViewModel>
    Please refer to the blog post for more information and a complete code example.
    Hope that helps.
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question. Please don't ask several questions in the same thread.

  • Issue with Master and child relationship,viewlink

    Hi Frnds,
    In one of our custom pages we have Master child relationship between Invoice lines and their distributions.
    Things work absolutely fine when total no of distributions(say 10) are equal to max no of distributions that can be shown on 1st page(i.e equal to advancetable property value 'Records displayed'..say set as 10)
    What happens is when in advance table I click on next button to navigate to next set of records and then edit some field that have any event..ppr or lov my control by default gets transferred to very first set of records.
    !!!!!!!!!!!!!! Also this happens only when no of invoice lines are more than 1.
    I not sure whether the issue is with VL,VO,AO or the advance table property.
    One simple solution that I have tried is...getting back the focus to the row that is updated but it causes some other problem.
    Any pointers will be very helpful
    Thanks in advance.

    Hi any help???

  • Session expiration issue with parent and child window

    Hi,
    We have two applications (App1 - Implemented using JSF, Spring and Hibernate and App2 -Implemented using Spring MVC, Spring JDBC).
    I have implemented 'Test Access Content' functionality in App1.
    First admin user (Role- Manager) needs to login to App1
    As part of 'Test Access Content' functionality, he enters URL with encrypted key and click 'Test Access' button.
    It opens new window (implemented using java script - window.open) and hits spring controller of App2.
    In spring controller of App2, I am decrypting the key to get user details. After that i am setting user details in session, constructing final URL to display actual content.
    Problem is parent window maintains session till child window renders response. Once child window renders response, parent window loosing session.
    So, if i click any button in parent window after child window renders response, it displays login page as there is no session for parent window.
    Please note that App1 and App2 are sharing same domain. only context paths are different for both apps (app1 and app2).
    Any suggestions on this issue are much appreciated. Please let us know if you have any questions.

    Hi,
    When you open a child window from parent window then you can access child data in the parent window through javascript.
    We have a main web page. There are quite many links on it from which >user can open new web pages but the data is saved when the submit >button on the main page is clicked. Also data that user entered on the >other sub pages is not displayed in the main window.
    1 is this a case of parent and child window.case 1 When you are submitting the main page you need to run javascript function and get data from child windows and save that to database or session. next time when you are displaying the main window you need to query session or database to display the child window data in the main window.
    Case 2> closing child window and you need data in the parent. This can be done in two ways.
    1> When you are closing the child window populate some variables of the main window using javasript.
    2> Save the values in the database or session and refresh the main window and extract data from database or session
    Where should the data be saved that user enetered on the sub pages as the data is not shown in the main page - should it be stored in the session?It is design decision. You can store data in either session or database when you are closing the child window. But ifyou are saving the data on the main page then you can populate main page with child windows data using javascript. Save the data t database when main window data is saved. Depends on business requirements.
    In short if you are saving child windows data in session or database then you need to refresh main screen to pull that data otherwise populate main screen using javascript.
    I hope i answered your questions :) best of luck

  • Aggregation with a parent child hierarchy

    Hi
    I have 2 tables, hierarchy and data
    hierarchy has 2 columns parent and child
    data contains values for the lowest rungs of the hierarchy described.
    What i'd like to do is, using the hierarchy described, sum the lowest rung values up to their parent values and so on.
    Quick example:
    Hierarchy
    child parent
    1 null
    2 1
    3 1
    4 2
    5 2
    Data
    hiearchyid value
    3 10
    4 20
    5 30
    output required
    1 60
    2 50
    3 10
    4 20
    5 30
    The last 3 rows are just the 2nd table so i can just union those in but how would i work out the first two values using sql... have tried combinations of connect by, analytics (partition by etc) and rollup but to no avail...
    Any help would be appreciated..
    Cheers
    Alex

    @Aketi
    It is One way that We derive
    "sys_connect_by_path(RowIDToChar(RowID),'.') as
    RowIDList"
    Then
    We use Left Join Using
    "instr(RowIDList,RowIDToChar(RowID))".sorry, didn't catch what you mean.
    my site :-)
    http://oraclesqlpuzzle.hp.infoseek.co.jp/4-13.html
    pity, I don't know Japanese :(
    @Rob
    your query is good and simple :) probably it's the best alternative for the OP.
    But it won't work with not a plain hierarchy, e.g.:
          1
        2   3
          4
        5   6
    SQL> create table hierarchy (child,parent)
      2     as
      3     select 1, null from dual union all
      4     select 2, 1 from dual union all
      5     select 3, 1 from dual union all
      6     select 4, 3 from dual union all
      7     select 4, 2 from dual union all
      8     select 5, 4 from dual union all
      9     select 6, 4 from dual
    10  /
    Table created
    SQL>
    SQL> create table data (hierarchyid,value)
      2    as
      3    select 5, 10 from dual union all
      4    select 6, 25 from dual
      5  /
    Table created
    SQL>
    SQL> select h.child
      2           , sum(connect_by_root d.value)
      3        from hierarchy h
      4           , data d
      5       where h.child = d.hierarchyid (+)
      6     connect by prior h.parent = h.child
      7       group by h.child
      8       order by h.child
      9  /
         CHILD SUM(CONNECT_BY_ROOTD.VALUE)
             1                          70
             2                          35
             3                          35
             4                          70
             5                          10
             6                          25
    6 rows selected
    SQL>

  • Using the Ntdsutil utility to remove the only (tombstoned) DC along with an orphaned child domain

    Hello experts,
    before working on a server consolidation project for a new customer the situation was:
    Headquarter (I will not mention file and application servers)
    ==================================================
    - One physical server running Windows Server 2003 R2 Standard Edition acting as a Domain Controller and Global
    Catalog, holding the Five FSMO roles and running Microsoft Exchange Server 2003.
    ==================================================
    Branch office (connected to the corporate office by using a persistent site-to-site VPN)
    ==================================================
    - One physical server running Windows Server 2003 R2 Standard Edition acting as a file server and a Domain Controller
    in a child domain. Before we started work on the server consolidation project, this Domain controller at the remote site already was tombstoned.
    ==================================================
    After working on the server consolidation project the situation is:
    Headquarter
    ==================================================
    - We have added a new VM running Windows Server 2003 R2 Standard Edition acting as a Domain Controller.
    - We have added a new VM running Windows Server 2008 R2 Standard Edition running Exchange 2007 Service Pack 3
    and successfully migrated Exchange 2003 to 2007. We are ready to remove Exchange 2003 from the old physical server running Windows Server 2003 R2 Standard Edition.
    ==================================================
    Branch office
    ==================================================
    - We have added a new VM running Windows Server 2003 R2 and promoted it to be a new Domain Controller in a new
    forest.
    - We have turned off the tombstoned Domain Controller after migrating the applications and users to the new domain.
    We haven't tried to demote it gracefully because it is totally screwed up
    ==================================================
    In order to decommission the two remaining physical servers (the one acting as a Domain Controller and Global
    Catalog, holding the Five FSMO roles and running Microsoft Exchange Server 2003 in the Headquarter and the tombstoned Domain Controller in the Branch office) our plan is to:
    ==================================================
    1. Use the Ntdsutil.exe utility to manually remove the tombstoned Domain Controller in the Branch office.
    2. After manually removing the tombstoned Domain Controller in the Branch office (step above), use the Ntdsutil.exe utility
    to manually remove the orphaned child domain from Active Directory.
    3. Transfer the role of the global catalog and all FSMO roles to the new VM we have added in the Headquarter (It is already
    acting as a Domain Controller).
    4. Remove Exchange 2003 from and gracefully demote the old physical server running in the Headquarter. ==================================================
    Does our plan above make sense to you ? Can someone please explain or provide instructions for step 1 & 2 above ?
    I would be very grateful if someone could kindly share some thoughts.
    Any help/information will be greatly appreciated.
    Regards,
    Massimiliano

    To remove an orphaned child domain: http://support.microsoft.com/en-us/kb/230306
    To do a metadata cleanup: https://technet.microsoft.com/en-us/library/cc816907%28v=ws.10%29.aspx
    Your plan is okay. Just make sure that your DCs are in healthy state and AD replication is fine using
    dcdiag and repadmin commands before proceeding with demoting. Also, take system state backups before proceeding.
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile
    Hello Ahmed,
    thank you for your reply to my question.
    I have analyzed the replication status for all domain controllers in the Active Directory forest using the Active
    Directory Replication Status Tool (ADREPLSTATUS). All DCs are in healthy state and AD replication is fine.
    The only replication errors shown in the Active Directory Replication Status Tool are those involving the tombstoned
    Domain Controller in the Branch office, so I think it should be safe to go ahead.
    It is my understanding that before removing the orphaned child domain I should remove the tombstoned Domain Controller
    in the Branch office. Can I refer to the instructions on the following webpage:
    ==================================================
    http://www.petri.com/delete_failed_dcs_from_ad.htm ==================================================
    Thank you,
    Massimiliano

  • Level/Generation of members with only one child

    Hello!I have a little problem with generations and levels in an outline like this: Dimension Member1 Member1a Member1b Member2 Member2a Member3 Member3a Member3b"Member2" has only the child "Member2a". All other members in generation 2 have more than one member. The function @CURGEN(Dimension) shows for all these members the value 2, but for the member "Member2" it shows generation 3 and level 0. In my opinion "Member2" is generation 2 and level 1.Who is wrong? Essbase? Thanks for your support!Andreas

    This is the classic 'implied share' gotcha. When a member has only one child, Essbase by default sets up the child as a shared member to the parent. I believe this was an attempt to save space etc. but it causes problems in @ functions and partitions (and maybe elsewhere!). You need to tag the parent (level 1) member as 'never share'. This should solve it.

  • Need help with duplicating Movieclips!!!

    Hi! I have a movie where I want to call in a movieclip from
    the library (circleMC) and duplicate it 20 times horizontally and
    15 times vertically and offsetting the new duplicates by 20 pixels
    in both directions to fill the stage.
    Also it would be neat if I could set a slight time delay
    between the duplications.
    So far I have the following script but this doesn't
    duplicates the clip in the y direction:
    count = 1;
    while (count<20) {
    _root.circleMc.duplicateMovieClip("circleDup"+count, count);
    setProperty("circleDup"+count, _x, count*20);
    count++;
    Can somebody help with this issue? thank you in advance for
    any help, Attila

    Hi,
    you could use something like this:
    var count:Number = 1;
    function duplicate(){
    _root.attachMovie("circleMC","mc"+count,count,{_x:count%20*20,_y:count%15*20});
    count++;
    if (count == 20) clearInterval(intervalID);
    var intervalID:Number = setInterval(duplicate,100);
    The library symbol must have the linkage ID 'circleMC'
    (rightclick on the MC in the library > linkage > export for
    AS). The attachMovie method can have an initObject parameter where
    you can set the _x and _y properties. The MC gets attached with
    those properties. To have it delayed, put it all in a setInterval.
    hth,
    blemmo

  • METAREAD filter with dimension with only one child

    Hello !
    We have a big problem with our security
    Our dimension :
    =Dim1
    =>Child1
    =>Child2
    => Child2.1
    => Child2.1.1
    => INFO - member level 0
    =>Child3
    We have need to give to all the dim "no_access" except to Child2.1.1
    We use meta_read on '@IDESCENDANTS("Child2.1")
    The result give "#no_access" to all the dimension because "Child2" have only child
    with a retreive we have :
    =Dim1 #no_access
    =>Child2 #no_access
    => Child2.1 #no_access
    => Child2.1.1 #no_access
    => INFO - member level 0 #no_access
    A solution ?
    Thanks a lot !!
    Regards

    Maybe it is an implied share issue which would depend on the property settings on the members, have you tried setting the property of the members to "Never Share".
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for

  • Internal Order Settlement Reversal Prior Year KO88

    Hi, I am on ECC 6.   We have been asked if it is possible to reverse prior year settlements for internal orders in the current year and period.                                                                The current year  reversals are not the iss

  • Suggested improvements

    Installation 1. Remove the PKGADD dependancy. Pkgadd requires root access to a machine, iPS is likely to be installed by developers, not sysadmins. 2. Install Java in the same directory tree as iPS. too many applications use /usr/java and expect diff

  • RESBD-STOCK_D - Change this field with FM or Bapi...

    Hello. does anybody know in which table I can find the field SOBKZ_D?? In the CO02 transaction, in the Components screen, appears the field "Special stock indicator for dialog display" (RESBD-SOBKZ_D). I need to change the value of this field by code

  • Bind a Sequence

    Is it posible to bind a Sequence? I've a menu in which i change a Sequence of own object (Card) called cards and I've a List which shows the names of the objects. But how can I bind the changes I made with the menu with the list. MenuItem {          

  • SOLVED - Problem with setup online accounts

    Good day, I'm trying to setup gtalk on empathy, but I have a problem with adding me to online accounts. I just can't click to add account. It's inactive. Screenshot. Do you have some advice for me? Thank you! Last edited by E_user (2012-07-16 09:42:2