Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Page 6 of 6 FirstFirst ... 4 5 6
Results 76 to 85 of 85
  1. #76
    Join Date
    Jul 2009
    Posts
    122
    GTK Objects

    Timeline control with movement&effects control

  2. #77
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    Quote Originally Posted by boku View Post
    I would like to see a date conversion. I.e Today to Julian or Julian to today. Dunno if that's possible? I certainly don't have the maths head for it
    Plugin-Smugin...

    Code:
    function Gregorian2Julian(Year, Month, Day)
    	local UT=0
    	local Y=Year
    	local D=Day
    	local M=Month
    	JD=367*Y-Math.Floor(7*(Y+Math.Floor((M+9)/12))/4)-Math.Floor(3*(Math.Floor((Y+(M-9)/7)/100)+1)/4)+Math.Floor(275*M/9)+D+1721028.5+UT/24
    	return JD
    end
    
    function DatePlus(Year, Month, Day, nDiff)
    	local UT=0
    	local Y=Year
    	local D=Day
    	local M=Month
    	nDiff = String.ToNumber(nDiff)
    	local JD=367*Y-Math.Floor(7*(Y+Math.Floor((M+9)/12))/4)-Math.Floor(3*(Math.Floor((Y+(M-9)/7)/100)+1)/4)+Math.Floor(275*M/9)+D+nDiff+1721028.5+UT/24
    	
    	local rDate = Julian2Gregorian(JD)
    	rYear = String.Left(rDate,4)
    	rDate = String.Mid(rDate, 6, -1)
    	rMonth = String.Left(rDate, String.Find(rDate, "-") - 1)
    	rDay = String.Mid(rDate, String.Find(rDate, "-") + 1, -1)
    	if String.Length(rDay) < 2 then
    		rDay = "0"..rDay
    	end
    	if String.Length(rMonth) < 2 then
    		rMonth = "0"..rMonth
    	end
    	return rYear.."-"..rMonth.."-"..rDay
    end
    
    function Julian2Gregorian(jd)
    	intgr = Math.Floor(jd)
    	frac = jd - intgr
    	gregjd = 2299161
    
    	if(intgr >= gregjd) then
      		tmp = Math.Floor(((intgr - 1867216) - 0.25) / 36524.25)
      		j1 = intgr + 1 + tmp - Math.Floor(0.25*tmp)
    	else
      		j1 = intgr
    	end
    
    	--correction for half day offset
    	dayfrac = frac + 0.5
    	if(dayfrac >= 1.0) then
      		dayfrac = dayfrac - 1
      		j1 = j1 + 1
    	end
    
    	j2 = j1 + 1524
    	j3 = Math.Floor(6680.0 + ((j2 - 2439870) - 122.1)/365.25)
    	j4 = Math.Floor(j3*365.25)
    	j5 = Math.Floor((j2 - j4)/30.6001)
    
    	d = Math.Floor(j2 - j4 - Math.Floor(j5*30.6001))
    	m = Math.Floor(j5 - 1)
    	if(m > 12) then
      		m = m -12
    	end
    	y = Math.Floor(j3 - 4715)
    	if(m > 2) then
      		y = y -1
    	end
    	if(y <= 0) then
      		y = y - 1
    	end
    
    	if(y < 0) then
      		y = -y
    	end
    	return y .. "-" .. m .. "-" .. d
    end
    Last edited by Worm; 09-10-2009 at 10:54 AM.

  3. #78
    Join Date
    Jun 2007
    Location
    Delphi II
    Posts
    1,534
    I'm currently working on a plugin for that date thing, but there's a lot to it. I have so far, implemented both major calendar systems (Julian and Julian/Gregorian modified) and allowed for precise dates (date and time) conversions. It will be coming out in a couple of weeks.
    Action Plugins
    AllOn | Box | Class | Code | Cursor | DXML | Error | Frames | GlobalPaths | Group | INIPlus |KeyBind | KeyLock | MathEx | Menu | Name | Project | Resize | StatusBar
    Download

  4. #79
    Join Date
    Mar 2009
    Location
    -31.9554,115.85859
    Posts
    282
    Quote Originally Posted by Centauri Soldier View Post
    I'm currently working on a plugin for that date thing, but there's a lot to it. I have so far, implemented both major calendar systems (Julian and Julian/Gregorian modified) and allowed for precise dates (date and time) conversions. It will be coming out in a couple of weeks.
    Sorry been away (renovating house, still not finished (soon though hopefully))

    This sounds very kl Centauri, I look forward to it ... also in regards too

    Quote Originally Posted by Centauri Soldier View Post
    Using the Julian calendar or the Gregorian calendar or both?
    All currently available?

  5. #80
    Join Date
    Dec 2009
    Posts
    1
    plz this plugin : real player (.rm)
    if it's possibl.. Thnx

  6. #81
    Join Date
    Feb 2006
    Location
    Japan
    Posts
    81
    Quote Originally Posted by reteset View Post
    i have a not finished plugin for BASS but i could not touch it for past 2 monts
    Particularly I think the Bass library is the most complete in relation to multimedia. I use AIMP2 as default audio player and for me this is one of the most complete for Windows. AIMP2 use the Bass libraries.

    I think a plugin based on these libraries would be excellent.

  7. #82
    Join Date
    Dec 2004
    Posts
    2
    A power-battery timer plugin

  8. #83
    Join Date
    Jun 2007
    Location
    Delphi II
    Posts
    1,534
    A scrolling windowed object that can hold (and scroll) other AMS objects or just some kind of system that will allow AMS application windows to scroll.
    Action Plugins
    AllOn | Box | Class | Code | Cursor | DXML | Error | Frames | GlobalPaths | Group | INIPlus |KeyBind | KeyLock | MathEx | Menu | Name | Project | Resize | StatusBar
    Download

  9. #84
    Join Date
    May 2006
    Posts
    5,380
    the ScrollBar plugin is all you need

    even the windows scrollbar takes a huge amount of work to get going, you don't just place a scrollbar and windows does the rest, you need to code the behaviour of everything on the window to react to the 'WM_HSCROLL' and 'WM_VSCROLL' notification that the scroll bar sends when its moved

    a container object would be more useful, that way you could put your objects inside it and just scroll the container

    a container is a underestimated object, i never saw the point of it until i started making my own objects, now its the backend to ALL my object projects in AMS and PB

    a full on scroll area would be nice yea, but a container would open up so many more possibility's
    Open your eyes to Narcissism, Don't let her destroy your life!!

  10. #85
    Join Date
    Jun 2007
    Location
    Delphi II
    Posts
    1,534
    Yes, that's what I'm getting at. I'm just saying if a container isn't possible then a scrollable app window would be good...container first though.
    Action Plugins
    AllOn | Box | Class | Code | Cursor | DXML | Error | Frames | GlobalPaths | Group | INIPlus |KeyBind | KeyLock | MathEx | Menu | Name | Project | Resize | StatusBar
    Download

  11. #86
    Join Date
    May 2006
    Posts
    5,380
    just some expanded 'Page' functions would do, like Page.GetHWND and Page.Get/SetOffset/Size etc

    with the above functions i know i could get a scrolling page in no time, each page is a window itself and all the pages are embedded into the main window, just give us access to the child pages and we could work our own systems
    Open your eyes to Narcissism, Don't let her destroy your life!!

  12. #87
    Join Date
    Jul 2010
    Posts
    61
    this plug-in for AMS 8
    http://www.indigorose.com/forums/thr...-Action-Plugin
    is there project action plug-in for AMS 7 ?

  13. #88
    Join Date
    Apr 2011
    Posts
    1
    hi.
    i want plugin that takes picture or records videos from web cam.for all windows.
    THX.

+ Reply to Thread
Page 6 of 6 FirstFirst ... 4 5 6

Similar Threads

  1. AMS Runtime CD Burning now available!
    By Protocol in forum AutoPlay Media Studio 7.5
    Replies: 17
    Last Post: 12-24-2007, 01:47 PM
  2. .swf in Web Object - can't jump to AMS page
    By DrCode in forum AutoPlay Media Studio 6.0
    Replies: 19
    Last Post: 11-29-2006, 03:45 AM
  3. AMS Object Plugin's Tooltip display 'fix'
    By SUF6NEWBIE in forum AutoPlay Media Studio 5.0
    Replies: 1
    Last Post: 02-07-2005, 07:55 AM
  4. AMS 5 Pro - Plugins...
    By Intrigued in forum AutoPlay Media Studio 5.0
    Replies: 6
    Last Post: 09-17-2004, 06:13 PM
  5. Pop-up window in AMS 5
    By Lee_Benson in forum AutoPlay Media Studio 5.0
    Replies: 9
    Last Post: 12-25-2003, 06:43 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts