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

    • My Photos app is version 2026.11050.1001.0 and it remembers the window size and position. My Snipping Tool is version 11.2602.49.0 and it can capture the taskbar.
    • MusicBee 3.6.9668 by Razvan Serea MusicBee is an application geared toward managing extensive music collections, easy to use and with a comprehensive feature set. It makes it easy to organize, find, and play music files on your computer, on portable devices, and on the Web. It provides playback of a wide range of audio formats, smart playlists with the ability to discover and play new music from the web, advanced tag editing with automated artwork and tag look up, folder monitoring, automated file re-organization, portable device synchronization, and secure CD ripping with AccurateRip verification. MusicBee features: Supported formats: MP3, AAC, M4A, MPC, OGG, FLAC, APE, TAK, WV, WMA and WAV. Audio CDs: Audio CD playback and ripping (with CD-Text capabilities) is supported. CD tracks can be ripped (in fast or secure mode) as individual files or as a single album with embedded cuesheet. Conversion: Conversion from and to all supported formats as metadata are preserved. Synchronization of tags only (in case that the output file already exists) instead of reencoding is possible. ReplayGain support: both playback and calculation. File Organization: Organization and renaming of music files into folders and files based on tag values such as artist, album, name, track number, etc. that can be specified. MusicBee can do this automatically for all files in a music library or the user can choose the files or folders themselves. Web Browsing: Browsing of the web using Mozilla's XULRunner environment. Scrobbling: Tracks played from MusicBee can optionally be scrobbled to Last.fm. Customizable user interface layout. Customizable keyboard shortcuts. MiniLyrics support Download: MusicBee 3.6.9668 | MusicBee Portable | ~9.0 MB (Freeware) Download: Windows Store Edition View: MusicBee Home page | Release Notes | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • On xiaomi hyperos there's also an option to disable google assistant. I've got everything disabled. Only thing I do have installed is a web wrapped for duck.ai which claims to let you use various AIs anonymously
    • I need to understand the rationale of not shipping all of these K2 improvements in a single update/release. It's giving "we will fix Windows 11 but no commitments". It seems to me that they just announce these improvements just to appease the community.
    • The term "RTM" is long gone starting with Windows 10. Every current release is a GA build. This is the result of MS making Windows as a Service (WaaS).
  • Recent Achievements

    • 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
    • Dedicated
      Almohandis earned a badge
      Dedicated
    • Dedicated
      JuvenileDelinquent earned a badge
      Dedicated
  • Popular Contributors

    1. 1
      +primortal
      520
    2. 2
      +Edouard
      185
    3. 3
      PsYcHoKiLLa
      87
    4. 4
      Michael Scrip
      81
    5. 5
      Steven P.
      73
  • Tell a friend

    Love Neowin? Tell a friend!