Loading....
Recent Article links:

Forum

You must be logged in to post Login

Search Forums:


 






facebook-like functionality

No Tags
UserPost

February 16, 2010


cris

I am looking for a facebook-like functionality to tag photos to use in a project at work.

I wanted to know how easy it is to use. Do you use it like a WebControl in Visual Studio?

Also I wanted to ask about the licenses. The development packs are life time too? And what difference they have against the single site license.

February 16, 2010


admin

I am looking for a facebook-like functionality to tag photos to use in a project at work.

I wanted to know how easy it is to use. Do you use it like a WebControl in Visual Studio? 

It's coming with examples and API description for the integration with your system plus you will receive our support. The software is really simple to use it does not required any control panel. I just do not know what you would need it for.

Also I wanted to ask about the licenses. The development packs are life time too? And what difference they have against the single site license.

The development packs are life time and applicable for "general" TagHim license only.


How much costs the Ultimate license and what does it include?

The Ultimate license cost +70USD to General Licence, you can upgrade from General license to Ultimate any time.
 

Feel free to ask any question

February 16, 2010


cris

What we need is this:
  • Creat tags over photos that can be moved or have their size changed.
  • I have to store certain information in the tags, can I modify the tag table?
  • When doing a tag beign able to select users from the database and search time by typing words.

February 16, 2010


admin

basic functionality is shown here http://taghim.com/taghim-demo/

 

  • Creat tags over photos that can be moved or have their size changed.
 create tags on photos by selecting an object, typing or searching entering a user name. The user list will be taken from your user database you can add also manually usernames in to list. Email notification is also available for tagged person. http://taghim.com/taghim-demo/…..sers-like/

 

is only available for Ultimate version.

  • I have to store certain information in the tags, can I modify the tag table?
what exactly you want to modify in tag table?
  • When doing a tag beign able to select users from the database and search time by typing words.

This is included in TagHim functionality.

February 16, 2010


cris

what exactly you want to modify in tag table?
- I think that I will use more identifiers for the image (such as the section where the image belongs).
- Another thing about the tag table: the Name and email fields are taken from the person tagged and the id_Account is from the user who did the tag, or am I wrong?

February 16, 2010


admin

Post edited 11:51 am – February 16, 2010 by admin


what exactly you want to modify in tag table?
- I think that I will use more identifiers for the image (such as the section where the image belongs).

you can add as you wish to tag table
right now it looks like that


[ID] [int] IDENTITY(1,1) NOT NULL,
[ImageId] [int] NOT NULL,
[x0] [int] NOT NULL,
[y0] [int] NOT NULL,

[x1] [int] NOT NULL,
[y1] [int] NOT NULL,
[Name] [nvarchar](255) NOT NULL,
[Description] [nvarchar](max) NULL,
[color] [varchar](20) NULL,
[id_account] [int] NULL,

[email] [varchar](255) NULL,
 CONSTRAINT [PK_tag] PRIMARY KEY CLUSTERED

- Another thing about the tag table: the Name and email fields are taken from the person tagged and the id_Account is from the user who did the tag, or am I wrong?

well there are two possibility

  1. Name and Email is taken from your user database
  2. Name and email can enter manually user who is tagging photos (in case if there is no user in DB exists)

February 16, 2010


cris

Another question: Can I modify it or is a precompiled dll?

February 16, 2010


admin

The TagHim is not recompiled dll, it does use javascript not activx. You can modify PHP/ASP code it's open but javascript part is not possible to modify.

Basically the functionality you ask in previous email are totally supported by the script.

February 16, 2010


cris

So, to use it you add javascript files to your application and I feed the javascript object with the users in the database and it does the searching and tagging functions itself without adding .Net code?

February 16, 2010


admin

So, to use it you add javascript files to your application and I feed the javascript object with the users in the database and it does the searching and tagging functions itself without adding .Net code?

Exactly you are right.

So ASP .net is passing user information, also tag position information to javascript. Also .net part is receiving results of tagging.. so you can manipulate it as you wish. ASP .net part is open to changes.

No Tags