Recommended Posts

Originally posted by @ce

Im not too sure if this was asked ananswered yet but since I dont feel like reading all the pages I will ask anyways.

Winamp Skin? or suggestions for a skin that will match?

well id suggest some of the 'BLackcomb' or 'Longhorn' skins, as its the same type of blue methinks as most of them...

hi the new active desktop is really nice :)

good work

ok 2 things eheh :

i have the .html file as my wallpaper, but the links arent working...

also there is a very slight mismatch of the 'up' and 'over' states of the My Documents button in the flash....

apart from that its lookin brilliant! :)

have u any idea why my links arent working?

For some reason my copy of the theme seems to still have some of the bugs it had before.. BTW.. as I said last night the links are off slightly from the desktop background... Plus the links do not work all the time( not sure why) and when they do work it loads it as the background...

The theme has alot of improvements! I like it alot... Some how I think the problems are the result of my windows xp or an older version of styles xp which version are you using?

Suggestion: the roll over on the start menu overlaps the yellow.. it kinda makes it look like a mistake.. Can It be fixed?

And on the left side tool bar in a folder where it tells u the specs.. May I suggest changing the colour? it kinda blends with the bar...

Thats it for now.

Thx,

Thantos

Ok I've adjusted the desktop to my size (1024 x 768) and with alot of work i have adjusted the size of the flash bar and moved it so that is it is synchronized with the background.. however now when I try to test the buttons it says something cannot locate pls check the link... Wht I would like to know is how can I edit the links on the swf file??

BTW I have Swish 2.0 and Macromedia Flash MX 6.0

Any help would be appreciated :)

OSiris needs to post the .fla then we can edit the link can you send me the 1024x768 file I can't see the text when it is at 1280 x1024. THere is a program that decodes swf file but i can't remember what it is called.

P.S. this is my favorite style and i love it woo hoo

lol damn you noticed the my documents thing lol.

Okay now as for the flash, just import the .swf file, with swish just goto import and your all set.

Now, I need to talk to K420 he sounds like hes onto somethign with those linlks.

Originally posted by k420

ok so for the links to be fixed on flash the on release get url command in flash must be pointed to C:WINDOWSexplorer.exe for eample.

Yeah or C:WINDOWSSystem32rundll32.exe shell32.exe,* (where * is the rest of the command). However that is basing it on the user having that exact Windows directory. For instance mine is E:WINDOWS (don't ask, long story).

Osiris, this is what I posted earlier, and what k420 is referring to (I think lol).

Originally posted by jesterzwild

Took some searching but here are the shortcuts to get to My Computer and Control Panel. These are strictly the commands you would enter if you created a shortcut to these, but I assume you could use them still (not sure how you are doing this in Flash). You should be able to use the commands by themselves but if not try adding this prefix: "%windir%" or "%windir%System32".

My Computer:

Explorer ::{20D04FE0-3AEA-1069-A2D8-08002B30309D}

Network Neighborhood:

Explorer ::{208D2C60-3AEA-1069-A2D7-08002B30309D}

Recycle Bin:

Explorer ::{645FF040-5081-101B-9F08-00AA002F954E}

Control Panel:

Explorer ::{20D04FE0-3AEA-1069-A2D8-08002B30309D}::{21EC2020-3AEA-1069-A2DD-08002B30309D}

rundll32.exe shell32.dll,Control_RunDLL

Those numbers aren't links they are hexidecimal (or something like that) strings, you find them in the registry. I don't believe (but don't exlude it as a possibility) that those by themselves will link to the destination (my computer etc). the two possibilities I see are either to continue and explore to find a generic address to those locations or to use html (it can be easily edited) and use flash or something else for on mouse and click effects.

They are not links, but instead are the addresses of those folders. As far as I know they are accurate and I have gotten them to work in the Run dialog box and by using a Shortcut. However they will not work as links or as something typed into the Address field in Windows Explorer.

The problem with using them as links is that you are actually executing an .exe file (Explorer.exe and rundll32.exe with shell32.exe) instead of navigating to a destination folder.

I had used them in Visual Basic and C++ programming and offered them as a possible method if possible. Hmm... just had a thought, can you include something like VBScript into a Flash file? or does Flash have its own scripting language? or does it have one at all?

Originally posted by jesterzwild

They are not links, but instead are the addresses of those folders. As far as I know they are accurate and I have gotten them to work in the Run dialog box and by using a Shortcut. However they will not work as links or as something typed into the Address field in Windows Explorer.

The problem with using them as links is that you are actually executing an .exe file (Explorer.exe and rundll32.exe with shell32.exe) instead of navigating to a destination folder.

I had used them in Visual Basic and C++ programming and offered them as a possible method if possible. Hmm... just had a thought, can you include something like VBScript into a Flash file? or does Flash have its own scripting language? or does it have one at all?

Flash has its own scripting language.

Originally posted by codyg11

Flash has its own scripting language.

Hmm, I will have to find out if there is an equivalent command/procedure as there is in the languages I know to be able to do this.

The VB procedure would be as follows for the Control Panel:

Call Shell("rundll32.exe shell32.dll,Control_RunDLL", vbNormalFocus)

Does anyone know of something similiar in Flash? or is this impossible?

Update:

I think I may have found a solution. In Flash there is something called the fscommand. From what I've gathered the use goes as follows,

fscommand (filename)

So maybe something like (for the Control Panel) this would work,

fscommand (C:WINDOWSSystem32rundll32.exe shell32.dll,Control_RunDLL)

I am going to keep researching this, hopefully this will work and Osiris can get it working!

The script in Flash is called "ActionScript."

Yes, there is something similar to the call function in VB, but I am not sure if you call a file on the hard drive with it.

You have a "call" function in Flash MX. The syntax is as follows:

on (release) {

call();

}

You also have a "call function" where you can specify and object, function, and its parameters:

From the Reference in Flash MX

allows you to use parameter fields to call a user-defined function in normal mode in the Actions panel.

Unfortunately, I don't think that this scripting language will let you work with outside files. Please correct me if I am wrong.

Edit: This is the definition of the "fscommand" function, according to the ActionScript dictionary in Flash Help:

Action; allows the Flash movie to communicate with either the Flash Player, or the program hosting the Flash Player, such as a Web browser. You can also use the fscommand action to pass messages to Macromedia Director, or to Visual Basic, Visual C++, and other programs that can host ActiveX controls.

I think this would be the syntax:

on(release){

fscommand("command" , "parameters")

}

Check this tutorial out, http://www.actionscripts.org/tutorials/beg...les/index.shtml, I think it may help. The only bad part is that is uses two different procedures for 9x/ME and NT/2K/XP, and apparently uses the "DOS" or Command Prompt.

I think we may overwhelm Osiris with all this information lol :D

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

    • No registered users viewing this page.
  • Posts

    • Microsoft admits one of the most crucial Outlook features is currently broken by Sayan Sen Microsoft is making some decent progress when it comes to Windows 11. Recently we have confirmed reports of some rather useful improvements landing in the next version of the OS, 26H2, wherein GPU driver TDR crashes may finally be fixed, plus the company is also allowing users to disable web content on the Search. On the Outlook front though things have not been so rosy. Last month in May we reported several problems affecting basic functionalities on the app. These included a problem where documents would open blank or corrupt themselves. Following that, Quick Steps, a very useful feature, would no longer work correctly, and finally, Microsoft acknowledged a problem wherein images would fail to load up properly inside the email. Microsoft had resolved those bugs later and almost exactly a month after we reported on them, the company has now admitted a new similarly basic issue, this time on Macs. Users recently started noticing that Outlook would no longer display email threads properly as the original message itself was not displayed. An affected user Tsoumpas, C (ngmb) nicely described the problem in a forum post they made on Microsoft's site. They wrote: "Description of the issue: After updating Outlook for Mac [Version 16.110 (26061317)] on 18/6/2026, replying to any email no longer includes the original message in the reply window. Prior to the update, replies correctly contained the original email text below my response. Expected behavior: The original message should be included in the reply, as in previous Outlook versions and according to the configured reply settings. Actual behavior: The reply window contains only a blank composition area (or only my response), with none of the original email text included." Obviously this must be a highly frustrating for users as noted by several in that thread. The post, at the time of writing, has also been upvoted by more than 40 users indicating that is a fairly widespread bug. Thankfully Microsoft seems to have acknowledged the problem right around that time as it opened a new issue on its official website. In the support article, the company recommends switching to Outlook for Mac from the legacy app, where the problem appears to be happening.
    • PotPlayer 260622 by Razvan Serea PotPlayer is an extremely light-weight multimedia player for Windows. It feels like the KMPlayer, but is in active development. Supports almost every available video formats out there. PotPlayer contains internal codecs and there is no need to install codecs manually. Other key features include WebCam/Analog/Digital TV devices support, gapless video playback, DXVA, live broadcasting. Distinctive features of the player is a high quality playback, support for all modern video and audio formats and a built DXVA video codecs. A wide range of subtitles are supported and you are also able to capture audio, video, and screenshots. A comprehensive video and audio player, that also supports TV channels, subtitles and skins. Its been described on the Internet as The KMPlayer redux, and it pretty much is. Daum PotPlayer 260622 (1.7.22963) changelog: Removed Kakao TV Added pause function when navigating via the navigation bar Significantly improved internal stability Fixed an issue where colors appeared strange during RGB24 processing Improved playback for some HTTP streams Improved sync processing for the built-in audio renderer Fixed an issue where certain MP4 files behaved abnormally during playback Download: Daum PotPlayer (64-bit) | 54.7 MB (Freeware) Download: Daum PotPlayer (32-bit) | 61.1 MB View: Daum PotPlayer Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Tixati 3.44 is out.
    • Speccy 1.34.084 by Razvan Serea Speccy will give you detailed statistics on every piece of hardware in your computer. Including CPU, Motherboard, RAM, Graphics Cards, Hard Disks, Optical Drives, Audio support. Additionally Speccy adds the temperatures of your different components, so you can easily see if there's a problem! Processor brand and model Hard drive size and speed Amount of memory (RAM) Graphics card Operating system At first glance, Speccy may seem like an application for system administrators and power users. It certainly is, but Speccy can also help normal users, in everyday computing life. If you need to add more memory to your system, for example, you can check how many memory slots your computer has and what memory's already installed. Then you can go out and buy the right type of memory to add on or replace what you've already got. Download: Speccy 1.34.084 | 20.5 MB (Freeware) View: Speccy Website | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • ImgDrive 2.2.7 by Razvan Serea ImgDrive is a CD/DVD/BD emulator - a tool that allows you to mount optical disc images by simply clicking on them in Windows Explorer. If you have downloaded an ISO image and want to use it without burning it to a blank disc, ImgDrive is the easiest way to do it. ImgDrive features: One-click mounting of iso, cue, nrg, mds/mdf, ccd, isz images Runs on 32-bit and 64-bit Windows versions Mount ape, flac, m4a, wav, wavpack, tta file as AUDIO CD (16-bit/44.1kHz) Mount a folder as DVD/BD Mount images in command line Does not require rebooting after installation Support up to 7 virtual drives at the same time Support multi session disc image (ccd/mds/nrg) A special portable version is available Translated to more than 10 languages Support File Type: .ccd - CloneCD image files .cue - Cue sheets files of ape/flac/m4a/tta/wav/wv/bin .iso - Standard ISO image files .isz - Compressed ISO image files .nrg - Nero image files .mds - Media descriptor image files ImgDrive 2.2.7 changelog: Added command line parameter to set number of drives Added AACS-Auth support for HD DVD Bumped kernel driver version to 2.2.7 Download: ImgDrive 2.2.7 | 692 KB (Freeware, paid upgrade available) Download: ImgDrive Portable 535 KB View: ImgDrive Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • Dedicated
      tuben earned a badge
      Dedicated
    • Week One Done
      mnsgroup earned a badge
      Week One Done
    • Conversation Starter
      sumytbe earned a badge
      Conversation Starter
    • One Year In
      B4dM1k3 earned a badge
      One Year In
    • One Year In
      DarkWun earned a badge
      One Year In
  • Popular Contributors

    1. 1
      +primortal
      522
    2. 2
      +Edouard
      199
    3. 3
      PsYcHoKiLLa
      94
    4. 4
      Michael Scrip
      82
    5. 5
      neufuse
      69
  • Tell a friend

    Love Neowin? Tell a friend!