Search found 638 matches

by sharc
Sat Dec 16, 2017 6:28 am
Forum: Scope and XITE Development
Topic: Async alternative to the feedback module?
Replies: 4
Views: 5918

Re: Async alternative to the feedback module?

The 'async to async' atom also works for creating async/math/logic loops. It also allows for samplerate compensation on frequency and time control signals.
by sharc
Wed Dec 13, 2017 6:57 am
Forum: Scope and XITE Development
Topic: Array string extraction / String Switch
Replies: 21
Views: 15015

Re: Array string extraction / String Switch

yes i know you can do that and have been trying but this module i'm using gives me incompatible pads message When you check the attributes do the pad types match - ie both string array?. The arrays normally resize to match when connected but this may not work with some modules, so it's better to re...
by sharc
Tue Dec 12, 2017 11:20 am
Forum: Scope and XITE Development
Topic: Array string extraction / String Switch
Replies: 21
Views: 15015

Re: Array string extraction / String Switch

You can copy the contents of an array from one module to another by connecting the array pads.

Here's an example of switching between two external string arrays via a button. You'll need to move the slider to see the result.
Array Switch Example.zip
(13.2 KiB) Downloaded 426 times
by sharc
Mon Dec 11, 2017 8:10 am
Forum: Scope and XITE Development
Topic: Array string extraction / String Switch
Replies: 21
Views: 15015

Re: Array string extraction / String Switch

Here's a Hex Array module I built a while back for using with the TableText fader in circuit view. I've created pads for the arrays in case you want to connect other arrays.
Hex Array.zip
(3.51 KiB) Downloaded 392 times
If you want to switch between string arrays you can either use presets or a Routing Recorder.mdl
by sharc
Mon Dec 11, 2017 7:47 am
Forum: Scope and XITE Development
Topic: Array string extraction / String Switch
Replies: 21
Views: 15015

Re: Array string extraction / String Switch

With the Script Adder module you might want to set 'Type' to 'String', delete the panel and save a new String Adder module...
String Adder.zip
(2.94 KiB) Downloaded 409 times
by sharc
Mon Dec 11, 2017 7:07 am
Forum: Scope and XITE Development
Topic: Array string extraction / String Switch
Replies: 21
Views: 15015

Re: Array string extraction / String Switch

1 - The TableTextFader.mdl from the SDK Circuit Design\Circuit Controls folder will work

2 - The Script Adder.mdl from the SDK Circuit Design\Logical\Math Operators folder does what it says on the tin
by sharc
Tue Sep 20, 2016 5:03 am
Forum: Scope and XITE Development
Topic: Need guide to go from standard module to modular
Replies: 27
Views: 17824

Re: Need guide to go from standard module to modular

Any surface GO will work on the modular module surface. You can even do pages.

It's likely you'll encounter problems with anything (combolists for example) which goes outwith the boundaries of the module. Also take care not to cover up the pads with surface groups.
by sharc
Mon Sep 19, 2016 9:59 am
Forum: Scope and XITE Development
Topic: Need guide to go from standard module to modular
Replies: 27
Views: 17824

Re: Need guide to go from standard module to modular

I've put the first part of a tutorial together. Hope it helps - http://www.bcmodular.co.uk/forum/viewtopic.php?f=35&t=349 ...the thing I'm looking for (modular modules surface pads) still remains to be a mystery. After exporting Pads from the circuit inside your modular module make sure you're i...
by sharc
Thu Sep 15, 2016 1:46 pm
Forum: Scope and XITE Development
Topic: Need guide to go from standard module to modular
Replies: 27
Views: 17824

Re: Need guide to go from standard module to modular

The quick answer to this one if you don't care about the right-click poly/single mode switching functionality is to modify a modular 1 module - http://www.modularsynth.co.uk/modular1.shtml

Otherwise... :wink:
by sharc
Tue Sep 06, 2016 3:22 pm
Forum: Scope and XITE Development
Topic: Any way to save presets in modular 2
Replies: 27
Views: 17999

Re: Any way to save presets in modular 2

Set Persistent to true (1) in the ModuleLoader PadList to avoid the non-persistent errors
by sharc
Tue Sep 06, 2016 12:37 pm
Forum: Scope and XITE Development
Topic: Any way to save presets in modular 2
Replies: 27
Views: 17999

Re: Any way to save presets in modular 2

Image2.png I'm a little step farther now: I can read/write array elements from/to file, but I haven't find a way to iterate the index in the ArrayIterator. I can do this manually and get the actual data, but I want to use something, which does this for each index (incl. read/write). Any ideas, how ...
by sharc
Sat Sep 03, 2016 4:10 am
Forum: Scope and XITE Development
Topic: Any way to save presets in modular 2
Replies: 27
Views: 17999

Re: Any way to save presets in modular 2

After dragging IniStringInterface.pep out of the ModuleLoader rename it to IniStringInterface and save it as a .mdl. You can now load this module and set the path field for the location of your text file. Check out the cset.ini in notepad to see the format of Section and Key entries or simply enter ...
by sharc
Fri Sep 02, 2016 5:07 am
Forum: Scope and XITE Development
Topic: Any way to save presets in modular 2
Replies: 27
Views: 17999

Re: Any way to save presets in modular 2

Enter the filename (including extension) of the pep script into the modules array of the ModuleLoader ...It's best in this instance to have the array size set to 1. Set 'load' to 0 in the ModuleLoader Pad List. This will load the module and if you re-select the ModuleLoader the Pad List will update ...
by sharc
Thu Sep 01, 2016 10:21 am
Forum: Scope and XITE Development
Topic: Any way to save presets in modular 2
Replies: 27
Views: 17999

Re: Any way to save presets in modular 2

You need to take them out of the ModuleLoader - After loading one of the scripts fold the ModuleLoader. In the Project Explorer if you now look into the folded ModuleLoader you'll see the script. If you right-click on it you'll get read & write options. If you assign GOs and attributes to it and...
by sharc
Wed Aug 31, 2016 11:38 am
Forum: Scope and XITE Development
Topic: Any way to save presets in modular 2
Replies: 27
Views: 17999

Re: Any way to save presets in modular 2

You can load them in the SDK via ModuleLoader.mdl ...From there you can make them circuit or surface components by adding GOs and attributes in the GOs window. Unfortunately there isn't any .nfo files for these scripts so the functionality is limited to reading strings and integers upon module load ...
by sharc
Tue Aug 30, 2016 5:44 am
Forum: Scope and XITE Development
Topic: Any way to save presets in modular 2
Replies: 27
Views: 17999

Re: Any way to save presets in modular 2

DragonSF wrote:Can someone please direct me to a sample or some doc, to show how to create a module, which can write and read data from a file?
IniIntInterface / IniStringInterface can do what you ask
by sharc
Mon Nov 30, 2015 2:02 pm
Forum: General Scope Discussion
Topic: List your favorite Scope synths and effects!
Replies: 24
Views: 4961

Re: List your favorite Scope synths and effects!

Mr Arkadin wrote:For phase I like Sharc+Shroomz PHASE 18. Free too.
Not one of mine. Although it sounds so good I wish it was :o

This was a collaboration between my brother (Shroomz) and Warp69. I did help out with LED display graphic on the GUI, but that's as far as my contribution to this device went.
by sharc
Tue Nov 10, 2015 2:29 pm
Forum: XITE
Topic: Question about using Xite-1 as a synth module in 96 kHz
Replies: 52
Views: 12881

Re: Question about using Xite-1 as a synth module in 96 kHz

I don't even have access to the outside of the Pro Wave, so you can think yourself lucky! :lol:

Most controls on protected devices can have their value pads stored and connected elsewhere within SDK - scOpeSynC for instance. The combo box isn't one them.
by sharc
Tue Nov 10, 2015 2:03 pm
Forum: XITE
Topic: Question about using Xite-1 as a synth module in 96 kHz
Replies: 52
Views: 12881

Re: Question about using Xite-1 as a synth module in 96 kHz

tlaskows wrote:it seems that you cannot assign a MIDI controller to a combo box. :(
You can't assign a MIDI CC directly to a combo box AFAIK, but you can connect it's selValue pad to a CC assignable control.

This of course doesn't help much in the case of a protected device like the Pro Wave...
by sharc
Mon Nov 09, 2015 12:13 pm
Forum: Announcements
Topic: ScopeSync public launch!
Replies: 122
Views: 32059

Re: ScopeSync public launch!

JoPo wrote:I'd like to ask to ScopeSync team if it would be possible to make a ScopeSync vst instrument device ?
I'm not sure if this is what you're looking for - https://github.com/bcmodular/scopesync/ ... _1_0_2.dll