Recommended Posts

Thin? I won't cuz it's not Slate or Luna tone.

For Choice....

A: Which one you're using it

B: Which one you posted

do whatever you want Windows X... I recommend that you release something definitive if you wanna be the 1st that makes the 1st version of this theme because there are good looking slate themes now out there... ;)

:D i do too love think taskbars.

but what are talk about "Choice B: Make Toolbar background suited with Caption Bar but cost with all inactive images in caption and frameborder. Frameborder won't change when inactive and captionbar is almost same to active mode because I have to make bottom looks like toolbar background."

you mean make it look like this

post-34-1067355429.jpg

:huh: well is windows X planning to make slate have a headder like that for files like my music and my videos, ect. that would really make my day, and make it my #1 theme of all time. he's done it befor but last time he just made it say "Longhorn". just wondering if he will do it again, but 100times better, like my screenny

im kinda mad at a few of you....

first you ask him to release a beta of this theme...and he reluctantly agrees

then you help him out in the things you dont like....

BUT WHAT P***ES ME OFF IS THIS

you want the BEST longhorn Slate theme he can possibly make YET you want another theme with a thin taskbar

so which is it? i mean yes hes a good themer but it seems that you are making so much work for him that 1. its going to take even longer for him to release it and 2. you keep adding features to add

i understand that he "took on" the duty to do this theme but cut the man some slack....seriously

and something else that kind of made me mad was the post about "THINK ABOUT THE PEOPLE" ....well all i can say is how have you helped him out besides rushing him to release it?

im sorry if this feels like a rant but i know how long Windows-X has been working on his Longhorn Transformation Pack 4.0 (over a month now) and he is just trying to make it perfect for everyone as best he can, but complaining is not the way to go.

So thankful CiN|FuL :) I'm so sad and hopeless to do this becasue it waste my life time, school, my bed time (I slept for 2 hrs in a week till now) and nothing positive thing I have got.

I will do everything you want me to do if I get paid for it. I told you that I won't make taskbar in thin because I can't merge theme up more than 10 in one. But now I changed to put seperate theme in pack so I made thin version too in Slate.

Longhorn Transformation Pack 4.0 almost ready except sidebar. If I can make one more task for it (there's google, filemirrors, news links and slideshow). ONLY ONE MORE BASED ON HTML, JAVA SCRIPT OR FLASH!

Longhorn Transformation Pack 4.0 almost ready except sidebar. If I can make one more task for it (there's google, filemirrors, news links and slideshow). ONLY ONE MORE BASED ON HTML, JAVA SCRIPT OR FLASH!

if anyone has any ideas on what to add please say something....he wants this perfect and until he thinks of another task for the sidebar he isnt going to release it

this is all thats left for him to do....ive tried to get him to release as is but i understand why he wont :)

anyway i couldnt think of s-hit to add... maybe one of you can :yes:

That'd be great, maybe you can use the code from sideshow

<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<TITLE>Forecast</TITLE>

<script LANGUAGE="VBScript">
Dim sTooltipHTML
Dim imageSet
imageSet=0
sTooltipHTML = ""



'/***********************************************************/
'/* Ticket authored by Jurai
'/***********************************************************/


'/***********************************************************/
'/* Change the string in the functio below to modify the URL
'/* that IE browses to when the ticket is double-clicked.
'/***********************************************************/
Public Function DoubleClickURL()
	DoubleClickURL = "http://www.weather.com/weather/local/11790"
End Function

'/***********************************************************/
'/* Change the number below to modify the width of the tooltip
'/***********************************************************/
Public Function TooltipWidth()
	TooltipWidth = 440
End Function

'/***********************************************************/
'/* Change the number below to modify the height of the tooltip
'/***********************************************************/
Public Function TooltipHeight()
	TooltipHeight = 600
End Function


'/***********************************************************/
'/* Change the number below to modify how long the ticket waits
'/* before refreshing its data.
'/***********************************************************/
Public Function ReloadInterval()
	ReloadInterval = 30	' in minutes
End Function


'/* ----------------------------------------------------------


'/***********************************************************/
'/* Following two functions are where the text scraping happens.
'/***********************************************************/
Public Sub StartThumbnailHTMLRetreive(attempt)
	dim ret
	if(attempt=1) then
  ret = g_ticketObj.DoVerb("HTTPPageRetrieveAsync","http://www.weather.com/weather/print/11790","ThumbnailHTMLRetreiveComplete1")
	else
  ret = g_ticketObj.DoVerb("HTTPPageRetrieveAsync","http://www.weather.com/weather/print/11790","ThumbnailHTMLRetreiveComplete2")
	end if
End Sub



Public Sub ThumbnailHTMLRetreiveComplete1(pPage)
	dim copyOfPage
	copyOfPage=pPage

	iStartPos = InStr(1, pPage, "<BR>")
	if(iStartPos <= 0) then
  StartThumbnailHTMLRetreive(2)
	else
  TooltipHTMLRetrieveFinish copyOfPage,iStartPos
  ThumbnailHTMLRetrieveFinish pPage,iStartPos
	end if	
End Sub



Public Sub ThumbnailHTMLRetreiveComplete2(pPage)
	dim copyOfPage
	copyOfPage=pPage

	iStartPos = InStr(1, pPage, "<BR>")
	if(iStartPos <= 0) then
  sTooltipHTML = "<FONT face=Arial size=1>Error</FONT>"
  theBody.innerHTML = "<FONT face=Arial size=1>Error</FONT>"
  exit sub
	end if

	TooltipHTMLRetrieveFinish copyOfPage,iStartPos
	ThumbnailHTMLRetrieveFinish pPage,iStartPos
End Sub



'/***********************************************************/
'/* Scrapes the page to get the thumbnail data.
'/*
'/* Strategy here is to grab the page we want to scrape as
'/* one long string.  We then use basic string manipulation
'/* functions to search the string for the one number we want to
'/* extract.
'/***********************************************************/
Public Sub ThumbnailHTMLRetrieveFinish(pPage,iStartPos)
	iStartPos = iStartPos + 10

	iEndPos = InStr(iStartPos, pPage, """")
	if(iEndPos <= 0) then
  theBody.innerHTML = "<FONT face=Arial size=1>Error</FONT>"
  exit sub
	end if

	sStage = Mid(pPage, iStartPos, iEndPos - iStartPos)
	if ( Left(sStage, 5) <> "http:" ) then
  sStage = sStage
	end if
	sStage = "<IMG SRC=""http://image.weather.com/web/common/wxicons/31/30.gif"" width=""20"" height=""20""><font size=1>Forecast"

	theBody.innerHTML = sStage

	imageSet = 1
	Headlines.width = document.body.offsetWidth
	Headlines.height = document.body.offsetHeight * 0.9
End Sub



'/***********************************************************/
'/* Scrapes the page to get the tooltip data.
'/*
'/* Strategy here is to grab the page we want to scrape as
'/* one long string.  We then use basic string manipulation
'/* functions to search the string for the data we want to
'/* extract.  To make for a prettier tooltip, instead of
'/* extracting individual numbers, we just extract an entire
'/* table.
'/*
'/* Note that since this code takes a while to execute, instead
'/* of calling it every time the user wants to see the tooltip,
'/* we keep the tooltip HTML in a global variable and update it
'/* when we update the thumbnail.
'/***********************************************************/
Public Sub TooltipHTMLRetrieveFinish(pPage,iInStartPos)
	Dim iEndPos
	Dim iStartPos
	Dim sStage
	Dim pPageCopy
	Dim iLocPos
	Dim regularReplace

	iStartPos=iInStartPos
	pPageCopy=Cstr (pPage)

	iEndPos = InStr(1, pPageCopy, "<!-- insert 300 x 250 ad -->")
	if(iEndPos <= 0) then
  iEndPos = InStr(1, pPageCopy, "<!-- insert 300 x 250 ad -->")
	end if

	if(iEndPos <= 0) then
     iEndPos = InStr(1, pPageCopy, "</A>")
  if(iEndPos <= 0) then
 	 sTooltipHTML = "<FONT face=Arial size=1>Error</FONT>"
 	 exit sub
  end if

  iStartPos = InStr(1, pPageCopy, "<A HREF")
  iEndPos = iEndPos + 4
	else
  iEndPos = iEndPos + 6
	end if

	sStage = Mid(pPageCopy, iStartPos, iEndPos - iStartPos)


	regularReplace = 1
	iLocPos = InStr(1, pPageCopy, "SRC=""/")
	if(iLocPos <= 0) then
  iLocPos = InStr(1, pPageCopy, "SRC=""http:")
  if(iLocPos <= 0) then
 	 sStage = Replace(sStage, "SRC=""", "SRC=""http://www.msnbc.com/news/")
 	 regularReplace = 0
  end if
	end if

	if(regularReplace = 1) then
  sStage = Replace(sStage, "SRC=""/", "SRC=""http://www.msnbc.com/news/")
  sStage = Replace(sStage, "src=""/", "src=""http://www.msnbc.com/news/")
	end if


	sStage = Replace(sStage, "HREF=""", " target=""Weather"" HREF=""http://www.weather.com")
	sStage = Replace(sStage, "href=""", " target=""Weather"" href=""http://www.weather.com")

	sTooltipHTML = ""
	sTooltipHTML = sTooltipHTML & "<IMG SRC=""http://image.weather.com/web/common/global/generic_header_banner.jpg"" border=0>"
	sTooltipHTML = sTooltipHTML & sStage

End Sub

</SCRIPT>


<script LANGUAGE="JavaScript">
/***********************************************************/
/***********************************************************/
/* Don't modify code below this comment        */
/* (More code you can modify comes after this block)       */
/***********************************************************/
/***********************************************************/
var g_ticketObj=null;

document.onmousedown = cancelmenu;
document.onmouseup = handleMouseUp;
document.onmousemove = handleMouseMove;
document.ondblclick = handleDoubleClk;

function cancelmenu(e)
{
try
  {
  theBody.setCapture(true);
  if(event.button==1)
    g_ticketObj.OnLButtonDown();
  else if(event.button==2)
    g_ticketObj.OnRButtonUp();
  }
catch(exception)
  {
  }
return 0;
}

function handleMouseUp(e)
{
try
  {
  theBody.releaseCapture();
  if(event.button==1)
    g_ticketObj.OnLButtonUp();
  else if(event.button==2)
    g_ticketObj.OnRButtonUp();
  }
catch(exception)
  {
  }
}

function handleMouseMove(e)
{
try
  {
  g_ticketObj.OnMouseMove();
  }
catch(exception)
  {
  }
}

function handleDoubleClk(e)
{
try
  {
  g_ticketObj.OnDoubleClk();
  }
catch(exception)
  {
  }
}

function TicketInitialize(ticketObj,washFile,washSolidColor,textSolidColor)
{
try
  {
  g_ticketObj=ticketObj;
  if(washFile.length > 1)
    theBody.background=washFile;
  else
    {
    theBody.background="";
    theBody.bgColor=washSolidColor;
    }
  theBody.text=textSolidColor;
  onResize();
  }
catch(exception)
  {
  }
}
/***********************************************************/
/***********************************************************/
/* Don't modify code above this comment, except to set color
/* specific color behavior in TicketInitialize
/***********************************************************/
/***********************************************************/
</SCRIPT>



<script LANGUAGE="VBScript">


'/***********************************************************/
'/* Purpose:
'/*	Following two functions control the size of the thumbnail
'/* if no constraints are in place.  These functions also control
'/* the proportions of the thumbnail when constraints are in place.
'/***********************************************************/
Public Function BestWidth()
	BestWidth = 20
End Function

Public Function BestHeight()
	BestHeight = 10
End Function

'/***********************************************************/
'/* Purpose:
'/*	This function gets called when the container background color
'/* or patter has changed.
'/***********************************************************/
Public Function ColorSchemeChanged(washFile,washSolidColor,textSolidColor)

	if(Len(washFile) > 1) then
   theBody.background=washFile
	else
   theBody.background=""
   theBody.bgColor=washSolidColor
	end if

	theBody.text=textSolidColor

End Function


'/***********************************************************/
'/* Purpose:
'/*	This function gets called to request the width of a ticket
'/* given its height
'/*
'/* Return Value:
'/*  Returns a string in the format "width" 
'/***********************************************************/
Public Function WidthFromHeight(height)

	width = height * (BestWidth / BestHeight)
	WidthFromHeight = CStr(width)

End Function


'/***********************************************************/
'/* Purpose:
'/*	This function gets called to request the width of a ticket
'/* given its height
'/*
'/* Return Value:
'/*  Returns a string in the format "width" 
'/***********************************************************/
Public Function HeightFromWidth(width)

	height = width * (BestHeight / BestWidth)
	HeightFromWidth = CStr(height)

End Function


'/***********************************************************/
'/* Purpose:
'/*	This function gets called to request the ticket's ideal
'/* sizing if hosted in a non-size restricted mode.
'/*
'/* Return Value:
'/*  Returns a string in the format "width,height" 
'/***********************************************************/
Public Function BestDimensions()

	Dim height, width

	height = BestHeight
	width = BestWidth

	BestDimensions = width & "," & height

End Function


'/***********************************************************/
'/* Purpose:
'/*	This function gets called to request the ticket's smallest
'/* sizing if hosted in a non-size restricted mode.
'/*
'/* Return Value:
'/*  Returns a string in the format "width,height" 
'/***********************************************************/
Public Function MinDimensions()
	width = 16
	MinDimensions = CStr(width & "," & HeightFromWidth(width))
End Function


'/***********************************************************/
'/* Purpose:
'/*	This function gets called before the Tooltip is 
'/* displayed in order to set its size.
'/*
'/* Return Value:
'/*  Returns a string in the format "width,height" 
'/***********************************************************/
Public Function GetTooltipDimensions()
	GetTooltipDimensions = CStr((TooltipWidth+6) & "," & (TooltipHeight+6))
End Function


'/***********************************************************/
'/* Purpose:
'/*	This function gets called before the Tooltip is 
'/* displayed to set its content.
'/*
'/* Return Value:
'/*  Returns the HTML the tooltip should display which will be
'/* placed into the <BODY> tag, sized to the above returned dimensions.
'/***********************************************************/
Public Function GetTooltipHTML()

	' note that we cache the tooltipHTML and refresh it when we refresh the thumbnail
	GetTooltipHTML = sTooltipHTML

End Function


'/***********************************************************/
'/* Purpose:
'/*	This function gets called when the ticket is requested to 
'/* display it's most detailed information, in response to a
'/* doubleclick or Open event.
'/***********************************************************/
Public Function ShowDetails()
	window.open DoubleClickURL
End Function


'/***********************************************************/
'/* Purpose:
'/*	This function gets called in order to populate the 
'/* context menu.
'/*
'/* Return Value: A string with the following format:
'/*    menu item text|command name,menu item text|command name, ...
'/*
'/*    "Menu item text" is the text as it should appear in the menu item.
'/*
'/*    "command name" is the string passed to MenuCommand when the item
'/*       is clicked.
'/***********************************************************/
Public Function GetContextMenuItems()
	GetContextMenuItems = "Open in browser...|OpenBrowser,Refresh|Refresh"
End Function


'/***********************************************************/
'/* Purpose:
'/*	This function gets called when one of the above supplied
'/* menu items get selected. 
'/*
'/* Parameters:
'/*	Command string of menu item selected.
'/***********************************************************/
Public Function MenuCommand(command)
	Select Case LCase(command)
  case "openbrowser"
 	 window.open("http://www.weather.com/")
  case "refresh"
 	 reLoader()
  case else
 	 window.alert("Not Implemented")
	End Select
End Function


'/***********************************************************/
'/* DO NOT REMOVE THIS FUNCTION
'/* Purpose:
'/*	This function gets called when the ticket has been resized
'/***********************************************************/
Public Function onResize()
' Every time something occurs that requires the thumbnail's size
' to change (sidebar is resized, tickets get added or removed), we
' have to reset the sizes of the images.  Note that this ticket is
' a little different because the thumbnail is actually composed
' of two images:  the header stipe, and the headlines block.
'
' Both images are the same width, but the HeaderStipe takes up
' 1/5 of the height while the Headlines take up the other 4/5.

	if (imageSet) then
  Headlines.width = document.body.offsetWidth
  Headlines.height = document.body.offsetHeight * 0.9
	end if
End Function


'/***********************************************************/
'/* Purpose:
'/*	This function gets called when the ticket is first loaded
'/***********************************************************/
Public Function onLoad()
	' Let the user know we're loading

	theBody.innerHTML = "<FONT face=Arial size=1>Loading...</FONT>"
	sTooltipHTML = "<FONT face=Arial size=1>Loading...</FONT>"

	' Call the function to load everything
	reLoader

	' Set a timer that will fire the reLoader function every X milliseconds
	setInterval "reLoader()",ReloadInterval* 3600000
End Function


'/***********************************************************/
'/* Purpose:
'/*	This function gets called when the ticket needs to refresh
'/* its data.
'/***********************************************************/
Public Function reLoader()
	' refresh the thumbnail and the tooltip
	StartThumbnailHTMLRetreive(1)
End Function

</SCRIPT>

</HEAD>


<BODY id=theBody leftMargin=0 rightMargin=0 topMargin=0 bottomMargin=0 scroll="no" onResize="onResize" onLoad="onLoad">
</BODY>


</HTML>

Windows X, I like your Slate theme, I am using it now. I really like it, I hope you keep it in msstyles format.

As I don't really want a transformation pack, the OSX one screwed up my system before. So please

keep it a mssytles verision. I like how it is now, a blue verions would be nice too. but it is up to you being

the artist.

[edit] The only request I would like to make is that bar that shows things loading, normally green in XP,

but you have it orange in Slate, could you make it blue, in the black slate? thanks.

Edited by Samoa

Here's 4 request from me for condition abour completing Longhorn. There're...

Request 1:

I want file moricons.dll or file which contains about window picture in LH4051

Request 2:

I want png screenshot for two arrows around tray in taskbar.

Request 3:

I want to you to see my attached picture and help me decide to add it or not.

Request 4:

I want you to help me think about one more Longhorn SideBar feature except (FileMirrors, Google, News Links and SlideShow)

If I can done these 4 conditions, you guys will have completed Slate theme.

post-34-1067365169.jpg

Edited by Windows X

WindowsX i have nothing but admiration and gratitude towards you man and the fine work you have done in this theme. I like it alot i am using it now and shall continue to use it.

I really believe WindowsX that you should stick to what was your original inspiration and remember you are making this theme the way you would like it and to be true to the original longhorn style.

I believe that others complaints and so on should be ignored and focus instead on those of us who really appreciate your work you have done here.

Thank you for being kind and releasing a preview of the theme. I like it alot.

Take Care and good luck

Makki

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Popular Now

  • Posts

    • All it does is use the CPU more efficiently during boot to speed up boot times. That's it. Yawn....
    • It's not a one or the other kind of thing. Software should run efficiently, and the operating system should appropriately manage the CPU clocks. You could have the best most optimized software on earth, and it will still run faster if the CPU does a better job of boosting as needed. All this is doing is pre-boosting the CPU based on user actions, instead of waiting for the normal detection mechanism to kick in. If the OS knows it is about to need more CPU, why shouldn't it use that knowledge? It's the same idea of downshifting before you try to pass someone, instead of just burying your foot into the peddle and waiting for the transmission to figure out what you want to do.
    • Audacity 3.7.8 by Razvan Serea Audacity is a free, open source digital audio editor and recording application. Edit your sounds using cut, copy, and paste features (with unlimited undo functionality), mix tracks, or apply effects to your recordings. The program also has a built-in amplitude-envelope editor, a customizable spectrogram mode, and a frequency-analysis window for audio-analysis applications. Built-in effects include bass boost, wah wah, and noise removal, and the program also supports VST plug-in effects. You can use Audacity to: Record live audio. Record computer playback on any Windows Vista or later machine. Convert tapes and records into digital recordings or CDs. Edit WAV, AIFF, FLAC, MP2, MP3 or Ogg Vorbis sound files. AC3, M4A/M4R (AAC), WMA and other formats supported using optional libraries. Cut, copy, splice or mix sounds together. Numerous effects including change the speed or pitch of a recording. Write your own plug-in effects with Nyquist. And more! See the complete list of features. Audacity 3.7.8 changelog: #10688 Fixed an exception thrown when pasting into a newly-created track (Thanks, David Bailes (@DavidBailes)!) #10870, #10884, #10775, #10629 Fixed tone generation, waveform-scale setting, SetClip Name parameter, and clip-boundary command names for scripting and macros (Thank you, David Bailes (@DavidBailes)!) #11106 Fixed the loading of presets for the Distortion effect (A million thanks, David Bailes (@DavidBailes)!) #10947 Fixed paste into an empty audio track not preserving the source sample rate (Thanks, Juan Gabriel Colonna (@juancolonna)!) #10776 Allowed AltGr modifier in label and clip name editing (Thanks, Davide Peressoni (@DPDmancul)!) #9938 Added options to choose where silence is truncated (start/middle/end) (Thanks, Noah Rosenfield (@nosenfield)!) #9935 Added Podcast 2.0 chapters JSON export for label tracks (Thanks, Noah Rosenfield (@nosenfield)!) #10103 Improve UI on HiDPI displays on Linux/wxGTK (Thanks, Ivan A. Melnikov (@iv-m)!) #10099 Fixed MixerBoard Mute and Solo button display (Thanks, Ivan A. Melnikov (@iv-m)!) #10681 Fixed multichannel FLAC import #10999 Fixed envelope being broken after joining clips Download: Audacity 64-bit | Standalone ~20.0 MB (Open Source) Download: Audacity 32-bit | Standalone Download: Audacity ARM64 | Standalone View: Audacity Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • There really isn't anything magical about the low latency profile, other OS's do this as well. All they're doing is using your CPUs boost clock options in a more smarter way.
    • So we shouldn't have the option because of people using their laptops on battery? OK? LOL
  • Recent Achievements

    • One Month Later
      Star Processing earned a badge
      One Month Later
    • Week One Done
      Star Processing earned a badge
      Week One Done
    • One Year In
      Star Processing earned a badge
      One Year In
    • Week One Done
      FBSPL earned a badge
      Week One Done
    • One Year In
      Jim Dugan earned a badge
      One Year In
  • Popular Contributors

    1. 1
      +primortal
      494
    2. 2
      PsYcHoKiLLa
      198
    3. 3
      +Edouard
      155
    4. 4
      Steven P.
      84
    5. 5
      ATLien_0
      69
  • Tell a friend

    Love Neowin? Tell a friend!